NT4/private/windows/media/dplay/serial/dllmain.c
2020-09-30 17:12:29 +02:00

27 lines
535 B
C

/*==========================================================================
*
* 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 */