diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-10-08 12:48:46 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-08 06:26:03 -0700 |
commit | 218c0956e201524d5f91bebd3ee87930200a0974 (patch) | |
tree | bb21855225fc173c3d3fdf9a9da9adac8445829c /windows.c | |
parent | d0e9d1f383c64b83b9124f96d1ad67e994efe8f9 (diff) | |
download | subsurface-218c0956e201524d5f91bebd3ee87930200a0974.tar.gz |
main.cpp: remove usage of subsurface_command_line_*
subsurface_command_line_* are now redundant as Qt
should handle the command line argument parsing on Windows
for which these functions where mainly used and where NOP
for other OS.
main.cpp also receives a couple of small changes to use:
QCoreApplication::arguments()
to obtain the list of expanded arguments and parse those
instead.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'windows.c')
-rw-r--r-- | windows.c | 63 |
1 files changed, 0 insertions, 63 deletions
@@ -26,69 +26,6 @@ const char *system_default_filename(void) return buffer; } -/* barely documented API */ -extern int __wgetmainargs(int *, wchar_t ***, wchar_t ***, int, int *); - -/* expand-convert the UTF-16 argument list to a list of UTF-8 strings */ -void subsurface_command_line_init(int *argc, char ***argv) -{ - wchar_t **wargv, **wenviron, *p, path[MAX_PATH] = {0}; - char **argv_new; - char *s; - /* for si we assume that a struct address will equal the address - * of its first and only int member */ - int i, n, ret, si; - - /* change the current process path to the module path, so that we can - * access relative folders such as ./share and ./xslt */ - GetModuleFileNameW(NULL, path, MAX_PATH - 1); - p = wcsrchr(path, '\\'); - *(p + 1) = '\0'; - SetCurrentDirectoryW(path); - - /* memory leak tools may reports a potential issue here at a call - * to strcpy_s in msvcrt, wich should be a false positive. but even if there - * is some kind of a leak, it should be unique and have the same - * lifespan as the process heap. */ - ret = __wgetmainargs(&n, &wargv, &wenviron, TRUE, &si); - if (ret < 0) { - fprintf(stderr, "Cannot convert command line"); - return; - } - argv_new = malloc(sizeof(char *) * (n + 1)); - -#if MISSING_GLIB_FUNCTIONS - for (i = 0; i < n; ++i) { - s = g_utf16_to_utf8((gunichar2 *)wargv[i], -1, NULL, NULL, NULL); - if (!s) { - fprintf(stderr, "Cannot convert command line argument (%d) to UTF-8", (i + 1)); - s = "\0"; - } else if (!g_utf8_validate(s, -1, NULL)) { - fprintf(stderr,"Cannot validate command line argument '%s' (%d)", s, (i + 1)); - free(s); - s = "\0"; - } - argv_new[i] = s; - } -#endif - argv_new[n] = NULL; - - /* update the argument list and count */ - if (argv && argc) { - *argv = argv_new; - *argc = n; - } -} - -/* once done, free the argument list */ -void subsurface_command_line_exit(int *argc, char ***argv) -{ - int i; - for (i = 0; i < *argc; i++) - free((*argv)[i]); - free(*argv); -} - int enumerate_devices (device_callback_t callback, void *userdata) { // Open the registry key. |