--- /dev/null
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <gtk/gtk.h>
+
+#ifdef G_OS_WIN32
+#include <windows.h>
+#endif
+
+#ifdef G_OS_WIN32
+static HMODULE hmodule;
+
+BOOL WINAPI
+DllMain (HINSTANCE hinstDLL,
+ DWORD fdwReason,
+ LPVOID lpvReserved)
+{
+ switch (fdwReason)
+ {
+ case DLL_PROCESS_ATTACH:
+ hmodule = hinstDLL;
+ break;
+ }
+
+ return TRUE;
+}
+
+
+gpointer
+organigramma_get_module_handle ()
+{
+ return (gpointer)hmodule;
+}
+#endif
#ifndef __ORGANIGRAMMA_COMMONS_H__
#define __ORGANIGRAMMA_COMMONS_H__
+#ifdef G_OS_WIN32
+#include <windows.h>
+#endif
+
#include <libpq-fe.h>
#include <gtk/gtk.h>
TerritorioCommons *territorio_commons;
} OrganigrammaCommons;
+
+#ifdef G_OS_WIN32
+gpointer organigramma_get_module_handle (void);
+#endif
+
+
#endif /* __ORGANIGRAMMA_COMMONS_H__ */