windows-nt/Source/XPSP1/NT/ds/security/cryptoapi/mincrypt/dll/mincryptdll.cpp
2020-09-26 16:20:57 +08:00

32 lines
778 B
C++

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1996 - 1999
//
// File: mincryptdll.cpp
//
// Functions: DllMain
//
// History: 26-Jan-01 philh created
//
//--------------------------------------------------------------------------
#include "windows.h"
// unreferenced formal parameter
#pragma warning (disable: 4100)
//+-------------------------------------------------------------------------
// Dll initialization
//--------------------------------------------------------------------------
BOOL WINAPI DllMain(
HMODULE hInstDLL,
DWORD fdwReason,
LPVOID lpvReserved
)
{
return TRUE;
}