sample.c

来自「中国石油二期加油站IC系统后台通讯软件」· C语言 代码 · 共 44 行

C
44
字号

/* header include files -- defines (.h) */
#include "envopt.h"        /* environment options */
#include "envdep.h"        /* environment dependent */
#include "envind.h"        /* environment independent */

#include "gen.h"           /* general */
#include "cm5.h"           /* common functions */
#include "ssi.h"           /* system services */

/* header/extern include files (.x) */

#include "gen.x"           /* general */
#include "cm5.x"           /* common functions */
#include "ssi.x"           /* system services */
#include "cm_llist.h"
#include "cm_llist.x"

#include "rx.h"
#include "rx.x"


#ifdef W32_APP
int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
 	// TODO: Place code here.


	rxInit(hInstance, hPreInstance);


	return 0;
}
#else
int main(int argc, char * argv[])
{
	rxInit(NULLP, NULLP);
}
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?