📄 pgpsdklibdllmain.c
字号:
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
$Id: PGPsdkLibDLLMain.c,v 1.4 2002/08/06 20:11:19 dallen Exp $
____________________________________________________________________________*/
#include <windows.h>
#include "pgpConfig.h"
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "pgpErrors.h"
#include "pgpMem.h"
#include "pgpUtilitiesPriv.h"
/* In Windows, the DllMain function is called when a process or
thread attaches to, or detaches from, the DLL. */
BOOL WINAPI DllMain (HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved)
{
BOOL success = TRUE;
(void)hInst; /* Avoid warnings */
(void)lpReserved;
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
break;
case DLL_PROCESS_DETACH:
break;
}
return success;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -