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