mirror of https://github.com/tongzx/nt5src
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.
21 lines
434 B
21 lines
434 B
// Copyright (c) 1996-1999 Microsoft Corporation
|
|
|
|
/*
|
|
*
|
|
* Minimal DllMain - to keep linker happy.
|
|
* DLL otherwise contains just resources.
|
|
*
|
|
*
|
|
* Note: set compiler/linker options to ignore
|
|
* default libraries, and set entry point symbol
|
|
* to DllMain.
|
|
*
|
|
*/
|
|
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain( HANDLE hInst,
|
|
ULONG ul_reason_for_call,
|
|
LPVOID lpReserved )
|
|
{
|
|
return TRUE;
|
|
}
|