home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
WindowsWare 2 the Maxx
/
winmaxx.zip
/
winmaxx
/
WIN_NT
/
EXCEPT.ZIP
/
THE_DLL.C
< prev
Wrap
Text File
|
1993-02-28
|
1KB
|
41 lines
/**************************************************************************\
*
* MODULE: THE_DLL.C
*
* PURPOSE: To provide the required (simple) entry point for a resource-
* only DLL.
*
* FUNCTIONS: DLLEntryPoint() - DLL entry point
*
* Microsoft Developer Support
* Copyright (c) 1992 Microsoft Corporation
*
\**************************************************************************/
#include <windows.h>
/**************************************************************************\
*
* FUNCTION: DLLEntryPoint
*
* INPUTS: hDLL - handle of DLL
* dwReason - indicates why DLL called
* lpReserved - reserved
*
* RETURNS: TRUE (always, in this example.)
*
* Note that the retuRn value is used only when
* dwReason = DLL_PROCESS_ATTACH.
*
* Normally the function would return TRUE if DLL initial-
* ization succeeded, or FALSE it it failed.
*
\**************************************************************************/
BOOL WINAPI DLLEntryPoint (HANDLE hDLL, DWORD dwReason, LPVOID lpReserved)
{
return TRUE;
}