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.
26 lines
535 B
26 lines
535 B
/*==========================================================================
|
|
*
|
|
* Copyright (C) 1995 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* File: dllmain.c
|
|
* Content: DPLAY.DLL initialization
|
|
* History:
|
|
* Date By Reason
|
|
* ==== == ======
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "windows.h"
|
|
|
|
/*
|
|
* DllMain
|
|
*/
|
|
HINSTANCE hInst;
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hmod, DWORD dwReason, LPVOID lpvReserved)
|
|
{
|
|
hInst = hmod;
|
|
|
|
return TRUE;
|
|
} /* DllMain */
|
|
|