error32.h

来自「vc写的SSE2优化离散余弦变换」· C头文件 代码 · 共 40 行

H
40
字号
//***************************************************************************/
//*
//*                  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 + =
减小字号Ctrl + -
显示快捷键?