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

📄 pgpsdkuilibdllmain.c

📁 vc环境下的pgp源码
💻 C
字号:
/*____________________________________________________________________________
	Copyright (C) 1997 Network Associates Inc. and affiliated companies.
	All rights reserved.
	
	$Id: PGPsdkUILibDLLMain.c,v 1.6 1999/03/10 02:55:49 heller Exp $
____________________________________________________________________________*/

#include <windows.h>

#include "pgpErrors.h"
#include "pgpUtilities.h"
#include "PGPsdkUILibPriv.h"

static PGPBoolean	sInitializedLibrary = FALSE;

	BOOL APIENTRY
DllMain(
	HANDLE	hModule, 
	DWORD	ul_reason_for_call, 
	LPVOID	lpReserved)
{
	BOOL	success = TRUE;
	
	switch (ul_reason_for_call)
	{
		case DLL_PROCESS_ATTACH:
		{
			gPGPsdkUILibInst = hModule;
			
			if( IsntPGPError( PGPsdkUILibInit() ) )
			{
				sInitializedLibrary = TRUE;
			}
			else
			{
				success = FALSE;
			}

			break;
		}
		
		case DLL_PROCESS_DETACH:
		{
			if( sInitializedLibrary )
			{
				(void) PGPsdkUILibCleanup();
				sInitializedLibrary = FALSE;
			}

			break;
		}
    }

    return success;
}

⌨️ 快捷键说明

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