windows-nt/Source/XPSP1/NT/multimedia/media/dplay/serial/dllmain.c

26 lines
535 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05: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 */