JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
more changes for windows
[vor.git] / args.c
diff --git a/args.c b/args.c
index a9ff69a..06efba3 100644 (file)
--- a/args.c
+++ b/args.c
@@ -12,6 +12,9 @@ int opt_fullscreen;
 int opt_music;
 int opt_sound;
 
 int opt_music;
 int opt_sound;
 
+
+#ifndef WIN32
+
 error_t parse_opt(int, char*, struct argp_state *);
 
 const char *argp_program_version = "Variations on Rockdodger " VERSION;
 error_t parse_opt(int, char*, struct argp_state *);
 
 const char *argp_program_version = "Variations on Rockdodger " VERSION;
@@ -33,6 +36,8 @@ static struct argp_option opts[] = {
 
 struct argp argp = { opts, &parse_opt, 0, doc };
 
 
 struct argp argp = { opts, &parse_opt, 0, doc };
 
+#endif // !WIN32
+
 void
 init_opts(void)
 {
 void
 init_opts(void)
 {
@@ -47,6 +52,8 @@ init_opts(void)
        opt_music = 0;
 }
 
        opt_music = 0;
 }
 
+#ifndef WIN32
+
 error_t
 parse_opt(int key, char *arg, struct argp_state *state)
 {
 error_t
 parse_opt(int key, char *arg, struct argp_state *state)
 {
@@ -83,3 +90,5 @@ parse_opt(int key, char *arg, struct argp_state *state)
        }
        return 0;
 }
        }
        return 0;
 }
+
+#endif // !WIN32