medit/moo/moo-dll.c

12 lines
281 B
C
Raw Normal View History

2009-11-14 11:57:35 -08:00
#include <glib.h>
#include <windows.h>
2009-11-24 20:57:57 -08:00
#include <mooutils/mooutils-macros.h>
2009-11-14 11:57:35 -08:00
HINSTANCE _moo_hinst_dll = NULL;
2009-11-22 19:14:01 -08:00
BOOL WINAPI DllMain (HINSTANCE hinstDLL, G_GNUC_UNUSED DWORD fdwReason, G_GNUC_UNUSED LPVOID lpvReserved)
2009-11-14 11:57:35 -08:00
{
_moo_hinst_dll = hinstDLL;
return TRUE;
}