📄 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 + -