You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
664 B
30 lines
664 B
|
|
//++--------------------------------------------------------------
|
|
//
|
|
// Function: DllMain
|
|
//
|
|
// Synopsis: Disabling thread calls
|
|
//
|
|
// Arguments: [in] HINSTANCE - module handle
|
|
// [in] DWORD - reason for call
|
|
// reserved
|
|
//
|
|
// Returns: BOOL - sucess/failure
|
|
//
|
|
//
|
|
// History: TMarsh Created 11/07/2001
|
|
//
|
|
//----------------------------------------------------------------
|
|
|
|
#include "windows.h"
|
|
|
|
extern "C" BOOL WINAPI
|
|
DllMain(
|
|
HINSTANCE hInstance,
|
|
DWORD dwReason,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
return (TRUE);
|
|
} // end of DllMain method
|
|
|