2025-04-27 07:49:33 -04:00

32 lines
809 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;
}