?? feature.c
字號:
// Copyright (c) David Vescovi. All rights reserved.
// Part of Project DrumStix
// Windows Embedded Developers Interest Group (WE-DIG) community project.
// http://www.we-dig.org
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
//
// File: feature.c
//
//------------------------------------------------------------------------------
#include <windows.h>
#include <winnt.h>
#include <oal.h>
//------------------------------------------------------------------------------
//
// Function: OALIsProcessorFeaturePresent
//
// Called to determine the processor's supported feature set.
//
BOOL OALIsProcessorFeaturePresent(DWORD feature)
{
BOOL rc;
switch (feature)
{
case PF_ARM_INTEL_XSCALE:
rc = TRUE;
break;
default:
rc = FALSE;
}
return rc;
}
//------------------------------------------------------------------------------
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -