]> saetta.ns0.it Git - solipa/organigramma/commitdiff
Aggiunta la funziona get_module_handle.
authorAndrea Zagli <azagli@libero.it>
Sun, 27 Dec 2015 12:39:05 +0000 (13:39 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 27 Dec 2015 12:39:05 +0000 (13:39 +0100)
.gitignore
libreria/Makefile.am
src/Makefile.am
src/commons.c [new file with mode: 0644]
src/commons.h

index 1f99f59e26f23c6efad121fa1d0176277c28d300..d40c7cf127a4f4ac2013a515031c2e296e011664 100644 (file)
@@ -29,3 +29,4 @@ stamp-h1
 *exe
 make_installer.sh
 resources.rc
+compile
index 98856b2c25920cdc9ef196e9d6d5d720b7adf822..8ccdba65074364209aabc2763c7aec7b44ba14fd 100644 (file)
@@ -17,6 +17,7 @@ endif
 lib_LTLIBRARIES = liborganigramma.la
 
 liborganigramma_la_SOURCES = \
+                ../src/commons.c \
                 ../src/marshal.c \
                 ../src/nodi.c \
                 ../src/nodo.c \
index 95a1226cc7ce292994c665cdbede9659bc1e3710..9d60c4be712d42d03a9f6afa85917c6ed4268cdd 100644 (file)
@@ -28,6 +28,7 @@ marshal.h: organigramma_marshal.list $(GLIB_GENMARSHAL)
        $(GLIB_GENMARSHAL) organigramma_marshal.list --header --prefix=_organigramma_marshal > $@
 
 organigramma_SOURCES = \
+                commons.c \
                 commons.h \
                 main.c \
                 marshal.c \
diff --git a/src/commons.c b/src/commons.c
new file mode 100644 (file)
index 0000000..c25c29f
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+ * 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
index da2f9a02b1632d7a75e676c170e261078074b10d..1221a2230949e19e27a2cee6ff314e02ab30a588 100644 (file)
 #ifndef __ORGANIGRAMMA_COMMONS_H__
 #define __ORGANIGRAMMA_COMMONS_H__
 
+#ifdef G_OS_WIN32
+#include <windows.h>
+#endif
+
 #include <libpq-fe.h>
 
 #include <gtk/gtk.h>
@@ -56,4 +60,10 @@ typedef struct
                TerritorioCommons *territorio_commons;
        } OrganigrammaCommons;
 
+
+#ifdef G_OS_WIN32
+gpointer organigramma_get_module_handle (void);
+#endif
+
+
 #endif /* __ORGANIGRAMMA_COMMONS_H__ */