NT4/private/windows/media/dplay/serial/dllmain.c

27 lines
535 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
/*==========================================================================
*
* 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 */