📄 dllentry.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 + -