mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
81345fd691
next few weeks. I'm going through the DFLAT api doc and fixing the export names and then going to try to build a simple hello dflat application. svn path=/trunk/; revision=2844
25 lines
332 B
C
25 lines
332 B
C
/*
|
|
* ReactOS DFLAT32.DLL
|
|
*/
|
|
|
|
#include <windows.h>
|
|
BOOLEAN __stdcall DllMain(
|
|
PVOID hinstDll,
|
|
ULONG dwReason,
|
|
PVOID reserved)
|
|
{
|
|
switch (dwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
break;
|
|
case DLL_THREAD_ATTACH:
|
|
break;
|
|
case DLL_THREAD_DETACH:
|
|
break;
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
return (TRUE);
|
|
}
|
|
/* EOF */
|