?? error32.h
字號:
//***************************************************************************/
//*
//* Copyright (c) 1998-99 Intel Corporation.
//* All rights reserved.
//*
//***************************************************************************/
//////////////////////////////////////////////////////////////////////////////
// Module Name: SPAWN.h
// Abstract: Exteral/Internal header file for spawn32.dll
//
//////////////////////////////////////////////////////////////////////////////
#ifndef __ERROR32_H__
#define __ERROR32_H__
#define DBG_MSG_LEVEL_0 FALSE
#define DBG_MSG_LEVEL_1 TRUE
#define DBG_MSG_LEVEL_2 2
#define DBG_MSG_LEVEL_3 3
//////////////////////////////////////////////////////////////////////////////
// INCLUDES & DEFINES
//////////////////////////////////////////////////////////////////////////////
typedef enum _DEBUG_MSG_LEVEL {
DbgMsgLevel0 = DBG_MSG_LEVEL_0,
DbgMsgLevel1 = DBG_MSG_LEVEL_1, // Basic API Entrance msgs
DbgMsgLevel2 = DBG_MSG_LEVEL_2, // More msgs.
DbgMsgLevel3 = DBG_MSG_LEVEL_3, // Go nuts!
} DEBUG_MSG_LEVEL;
// Error Codes
#define ERROR_NONE 0x00000000
#define WARN_INTERNAL 0x00000001
#define ERROR_INTERNAL 0x10000002
#define ERROR_INPUTPARAM 0x10000003
#define ERROR_NOTIMPLEMENTED 0x10000004
#endif // __ERROR32_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -