coredll.h
来自「windows ce 3.00 嵌入式操作系统源代码」· C头文件 代码 · 共 45 行
H
45 行
// --------------------------------------------------------------------------
//
// Copyright (c) 1994-2000 Microsoft Corporation. All rights reserved.
//
// Module:
//
// coredll.h
//
// Purpose:
//
// Internal include file used by the core dll.
//
// --------------------------------------------------------------------------
#ifndef __COREDLL_H__
#define __COREDLL_H__
#ifdef DEBUG
#define DBGFIXHP DEBUGZONE(0)
#define DBGLMEM DEBUGZONE(1)
#define DBGMOV DEBUGZONE(2)
#define DBGSBLK DEBUGZONE(3)
#define DBGVIRTMEM DEBUGZONE(4)
#define DBGDEVICE DEBUGZONE(5)
#define DBGSTDIO DEBUGZONE(8)
#define DBGSTDIOHF DEBUGZONE(9)
#define DBGSHELL DEBUGZONE(10)
#define DBGIMM DEBUGZONE(11)
#endif
#ifdef __cplusplus
extern "C" {
#endif
BOOL WINAPI LMemInit(VOID);
extern HANDLE hInstCoreDll;
#ifdef __cplusplus
}
#endif
#endif /* __COREDLL_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?