diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-01-17 21:37:32 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-01-17 21:37:32 +0000 |
commit | 69dbd6eb03a0abe5d0f889c670a467e74e256ef7 (patch) | |
tree | 42e19cb11c2963abe86650d005a1fc4ffd561a4b /gwin32.h | |
parent | ff51072d5054060dd1b4550b6fe56f4a2cbfc9bf (diff) |
Add doc comments. (g_win32_get_package_installation_directory): Add one
2001-01-17 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_getlocale, g_win32_error_message): Add doc
comments.
(g_win32_get_package_installation_directory): Add one parameter,
the name of a DLL in the package. Add possibility to use that to
deduce the installation directory if not entered into the
Registry. Make the return value dynamically allocated.
(g_win32_get_package_installation_subdirectory): New convenience
function.
* gutils.c (GLIB_LOCALE_DIR)
* gwin32.h: Adapt accordingly.
* testglib.c (main): Adapt tests accordingly.
Diffstat (limited to 'gwin32.h')
-rw-r--r-- | gwin32.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -110,7 +110,12 @@ gchar * g_win32_getlocale (void); */ gchar * g_win32_error_message (gint error); -gchar * g_win32_get_package_installation_directory (gchar *package); +gchar * g_win32_get_package_installation_directory (gchar *package, + gchar *dll_name); + +gchar * g_win32_get_package_installation_subdirectory (gchar *package, + gchar *dll_name, + gchar *subdir); G_END_DECLS |