CRAW now runs on Windows 7 too - the problem was that Windows 7 has moved some functi...
[craw.git] / craw / arguments.hpp
blob155c7843dab1ee8c860a003bfc4886bb83d319e1
1 #pragma once
3 #include <string>
5 extern bool
6 console_output,
7 incremental_window_title,
8 verbose,
9 use_custom_keys,
10 prompt_mode,
11 patch_system_modules,
12 do_not_hide_window;
14 extern std::string
15 window_title,
16 classic_key,
17 expansion_key,
18 d2_arguments,
19 python_script,
20 hide_modules_file,
21 bncache_directory,
22 socks;
24 extern bool use_socks;
25 extern std::string socks_server;
26 extern ushort socks_port;
28 void process_command_line();