From 82bb0e638104c88b3d75ff31f07898e6e770a12c Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 27 Dec 2015 13:39:05 +0100 Subject: [PATCH] Aggiunta la funziona get_module_handle. --- .gitignore | 1 + libreria/Makefile.am | 1 + src/Makefile.am | 1 + src/commons.c | 54 ++++++++++++++++++++++++++++++++++++++++++++ src/commons.h | 10 ++++++++ 5 files changed, 67 insertions(+) create mode 100644 src/commons.c diff --git a/.gitignore b/.gitignore index 1f99f59..d40c7cf 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ stamp-h1 *exe make_installer.sh resources.rc +compile diff --git a/libreria/Makefile.am b/libreria/Makefile.am index 98856b2..8ccdba6 100644 --- a/libreria/Makefile.am +++ b/libreria/Makefile.am @@ -17,6 +17,7 @@ endif lib_LTLIBRARIES = liborganigramma.la liborganigramma_la_SOURCES = \ + ../src/commons.c \ ../src/marshal.c \ ../src/nodi.c \ ../src/nodo.c \ diff --git a/src/Makefile.am b/src/Makefile.am index 95a1226..9d60c4b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 index 0000000..c25c29f --- /dev/null +++ b/src/commons.c @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2015 Andrea Zagli + * + * 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 +#endif + +#include + +#ifdef G_OS_WIN32 +#include +#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 diff --git a/src/commons.h b/src/commons.h index da2f9a0..1221a22 100644 --- a/src/commons.h +++ b/src/commons.h @@ -23,6 +23,10 @@ #ifndef __ORGANIGRAMMA_COMMONS_H__ #define __ORGANIGRAMMA_COMMONS_H__ +#ifdef G_OS_WIN32 +#include +#endif + #include #include @@ -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__ */ -- 2.49.0