2000-02-17 20:38:31 +01:00
|
|
|
/* dll_main.cc: Provide the DllMain stub that the user can override.
|
|
|
|
|
2001-01-08 05:02:02 +01:00
|
|
|
Copyright 1998, 2000, 2001 Red Hat, Inc.
|
2000-02-17 20:38:31 +01:00
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#undef WIN32_LEAN_AND_MEAN
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason,
|
2001-11-05 07:09:15 +01:00
|
|
|
LPVOID reserved /* Not used. */);
|
2000-02-17 20:38:31 +01:00
|
|
|
|
|
|
|
BOOL APIENTRY
|
|
|
|
DllMain (
|
|
|
|
HINSTANCE hInst /* Library instance handle. */ ,
|
|
|
|
DWORD reason /* Reason this function is being called. */ ,
|
2001-01-08 05:02:02 +01:00
|
|
|
LPVOID reserved /* Not used. */)
|
2000-02-17 20:38:31 +01:00
|
|
|
{
|
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_THREAD_ATTACH:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_THREAD_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|