medit/moo/moo-dll.c

12 lines
270 B
C
Raw Normal View History

2010-01-21 23:42:47 -08:00
#include <glib.h>
#include <windows.h>
#include <mooutils/mooutils-macros.h>
HINSTANCE _moo_hinst_dll = NULL;
BOOL WINAPI DllMain (HINSTANCE hinstDLL, G_GNUC_UNUSED DWORD fdwReason, G_GNUC_UNUSED LPVOID lpvReserved)
{
_moo_hinst_dll = hinstDLL;
return TRUE;
}