From: Andrea Zagli Date: Tue, 17 Feb 2015 14:35:04 +0000 (+0100) Subject: Migliore relocation. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=5bd800f3466b74a28c30fcd3e4b3de5378a6dfe4;p=solipa%2Flibsolipa Migliore relocation. --- diff --git a/.cproject b/.cproject index 8efd6bf..1fdb2ee 100644 --- a/.cproject +++ b/.cproject @@ -1,38 +1,43 @@ - - + + + + + + + - - - - - - - - - - - - - + - - + + + + + diff --git a/src/solipa.c b/src/solipa.c index 77d4183..cf82eb6 100644 --- a/src/solipa.c +++ b/src/solipa.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2011 Andrea Zagli + * Copyright (C) 2010-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 @@ -24,6 +24,10 @@ #include +#ifdef G_OS_WIN32 +#include +#endif + #include "solipa.h" #include "camelsession.h" #include "utils.h" @@ -79,6 +83,25 @@ solipa_init (Solipa *solipa) SolipaPrivate *priv = SOLIPA_GET_PRIVATE (solipa); } +#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; +} +#endif + /** * solipa_new: * @@ -112,7 +135,7 @@ Solipa gchar *moddir; gchar *p; - moddir = g_win32_get_package_installation_directory_of_module (NULL); + moddir = g_win32_get_package_installation_directory_of_module (hmodule); p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR)); if (p != NULL