summaryrefslogtreecommitdiffstats
path: root/client/application.h
diff options
context:
space:
mode:
authorYaniv Kamay <ykamay@redhat.com>2010-01-09 23:06:00 +0200
committerYaniv Kamay <ykamay@redhat.com>2010-01-10 13:41:08 +0200
commit6d9026c4b4620b4f65d172522b7b3a7aed4a94df (patch)
tree0e007397939cf73d63334b373c10a8f74eb21dcd /client/application.h
parent0bd3b58bc916525f957994acda875f96c7a036dc (diff)
downloadspice-6d9026c4b4620b4f65d172522b7b3a7aed4a94df.tar.gz
spice-6d9026c4b4620b4f65d172522b7b3a7aed4a94df.tar.xz
spice-6d9026c4b4620b4f65d172522b7b3a7aed4a94df.zip
client: add Platform::term_printf
Platform::term_printf is a variant of printf that on windows dynamically opens console in order to have visible output during command line processing.
Diffstat (limited to 'client/application.h')
-rw-r--r--client/application.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/application.h b/client/application.h
index 3c0297ff..27701eb0 100644
--- a/client/application.h
+++ b/client/application.h
@@ -165,9 +165,10 @@ public:
static int main(int argc, char** argv, const char* version_str);
private:
- bool set_channels_security(CmdLineParser& parser, bool on, char *val);
- bool set_enable_channels(CmdLineParser& parser, bool enable, char *val);
- bool set_canvas_option(CmdLineParser& parser, char *val);
+ bool set_channels_security(CmdLineParser& parser, bool on, char *val, const char* arg0);
+ bool set_enable_channels(CmdLineParser& parser, bool enable, char *val, const char* arg0);
+ bool set_canvas_option(CmdLineParser& parser, char *val, const char* arg0);
+ void on_cmd_line_invalid_arg(const char* arg0, const char* what, const char* val);
bool process_cmd_line(int argc, char** argv);
void abort();
void init_scan_code(int index);