⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tmcrt.h

📁 wince host 和 target PCI驱动程序
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -