tmcrt.h
来自「wince host 和 target PCI驱动程序」· C头文件 代码 · 共 40 行
H
40 行
#ifndef _tmcrt_h_
#define _tmcrt_h_
#include "tmtypes.h"
#define constCRunTimeFlagsIgnoreParams 0x0001
#define constCRunTimeFlagsAllocConsole 0x0002
#define constCRunTimeFlagsNoConsole 0x0004
#define constCRunTimeFlagsUseWindowSize 0x0008
#define constCRunTimeFlagsUseSynchObject 0x0010
#define constCRunTimeFlagsNonInteractive 0x0020
typedef struct tagCRunTimeParameterBlock
{
UInt32 OptionBitmap;
UInt32 StdInHandle;
UInt32 StdOutHandle;
UInt32 StdErrHandle;
UInt32 WindowSize;
UInt32 CRTThreadCount;
UInt32 SynchronizationObject;
UInt32 VirtualNodeNumber;
} CRunTimeParameterBlock;
UInt32 cruntimeCreate(
UInt32 DSPNumber,
UInt32 ArgumentCount,
UInt8* ArgumentVector[],
CRunTimeParameterBlock* Parameters,
UInt32* CRTHandlePointer );
UInt32 cruntimeDestroy (
UInt32 CRTHandle );
Bool cruntimeInit ( void );
void cruntimeExit ( void );
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?