X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fdbd123ef922b2ea0f8496dca32f220be579ac51..00bb6d6f57537b68de41ddde01388aa55cb6379b:/include/wx/cmdline.h diff --git a/include/wx/cmdline.h b/include/wx/cmdline.h index c9dd72b9d2..88ce4e51d3 100644 --- a/include/wx/cmdline.h +++ b/include/wx/cmdline.h @@ -66,11 +66,15 @@ struct wxCmdLineEntryDesc wxCmdLineEntryType kind; const char *shortName; const char *longName; - wxString description; + const char *description; wxCmdLineParamType type; int flags; }; +// the list of wxCmdLineEntryDesc objects should be terminated with this one +#define wxCMD_LINE_DESC_END \ + { wxCMD_LINE_NONE, NULL, NULL, NULL, wxCMD_LINE_VAL_NONE, 0x0 } + // ---------------------------------------------------------------------------- // wxCmdLineParser is a class for parsing command line. //