]> git.proxmox.com Git - qemu.git/blobdiff - os-win32.c
vnc: rename vnc-encoding-* vnc-enc-*
[qemu.git] / os-win32.c
index 17585385c33bcd82ba601d26378c44b95c0d7e75..d98fd77c12b04107383e10a33d73ef10897402bc 100644 (file)
@@ -31,6 +31,7 @@
 #include <sys/time.h>
 #include "config-host.h"
 #include "sysemu.h"
+#include "qemu-options.h"
 
 /***********************************************************/
 /* Polling handling */
@@ -204,3 +205,17 @@ 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;
+}
+
+void os_pidfile_error(void)
+{
+    fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
+}