11 lines
268 B
C
11 lines
268 B
C
/* Microsoft Developer Support
|
|
Copyright (c) 1992, 1993 Microsoft Corporation */
|
|
|
|
/* This is the required stub entry point for the message-table DLL */
|
|
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hDLL, DWORD dwReason, LPVOID lpReserved)
|
|
{
|
|
return(TRUE);
|
|
}
|