fwp.h
字号:
/*++
Copyright (c) 1997 Microsoft Corporation
Module Name:
fwp.h
Abstract:
This module contains extensions to the firmware.h header file.
Author:
David M. Robinson (davidro) 29-Aug-1991
Revision History:
Jun Liu 8/6/96 Modified for Puzzle
--*/
#ifndef _FWP_H_
#define _FWP_H_
#include "alt_def.h"
// Determine if an argument is present by testing the value of the pointer
// to the argument value.
//
#define ARGUMENT_PRESENT(ArgumentPointer) (\
(CHAR *)(ArgumentPointer) != (CHAR *)(NULL) )
//
// Current version and revision numbers.
//
#define ARC_VERSION 1
#define ARC_REVISION 1
//
// Define special character values. TEMPTEMP These should go somewhere else.
//
#define ASCII_NUL 0x00
#define ASCII_BEL 0x07
#define ASCII_BS 0x08
#define ASCII_HT 0x09
#define ASCII_LF 0x0A
#define ASCII_VT 0x0B
#define ASCII_FF 0x0C
#define ASCII_CR 0x0D
#define ASCII_CSI 0x9B
#define ASCII_ESC 0x1B
#define ASCII_SYSRQ 0x80
typedef enum _GETSTRING_ACTION {
GetStringSuccess,
GetStringMaximum
} GETSTRING_ACTION, *PGETSTRING_ACTION;
GETSTRING_ACTION
FwGetString(
OUT PCHAR String,
IN ULONG StringLength,
IN PCHAR InitialString OPTIONAL
);
#endif // _FWP_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -