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

📄 dllentry.c

📁 rtai-3.1-test3的源代码(Real-Time Application Interface )
💻 C
字号:
/* *	dllEntry.c */#define WIN32_LEAN_AND_MEAN#include <windows.h>#undef WIN32_LEAN_AND_MEAN/* *---------------------------------------------------------------------- * * DllEntryPoint -- * *	This routine is called by Borland to invoke the *	initialization code for the library. * * Results: *	TRUE. * * Side effects: *	See DllMain. * *---------------------------------------------------------------------- */BOOL APIENTRYDllEntryPoint(    HINSTANCE hInst,		/* Library instance handle. */    DWORD reason,		/* Reason this function is being called. */    LPVOID reserved)		/* Not used. */{    return TRUE;}/* *---------------------------------------------------------------------- * * DllMain -- * *	This routine is called by the VC++ C run time library init *	code invoke the initialization code for the library. * * Results: *	TRUE. * * Side effects: *	None. * *---------------------------------------------------------------------- */BOOL APIENTRYDllMain(    HINSTANCE hInst,		/* Library instance handle. */    DWORD reason,		/* Reason this function is being called. */    LPVOID reserved)		/* Not used. */{    return TRUE;}

⌨️ 快捷键说明

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