diff options
Diffstat (limited to 'os-win32.c')
-rw-r--r-- | os-win32.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/os-win32.c b/os-win32.c index 17585385c3..aefc535ed0 100644 --- a/os-win32.c +++ b/os-win32.c @@ -31,6 +31,7 @@ #include <sys/time.h> #include "config-host.h" #include "sysemu.h" +#include "qemu-options.h" /***********************************************************/ /* Polling handling */ @@ -204,3 +205,12 @@ char *os_find_datadir(const char *argv0) } return NULL; } + +/* + * Parse OS specific command line options. + * return 0 if option handled, -1 otherwise + */ +void os_parse_cmd_args(int index, const char *optarg) +{ + return; +} |