You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
809 B
31 lines
809 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// 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;
|
|
}
|