X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fdbd123ef922b2ea0f8496dca32f220be579ac51..c11420034872e991007a53f351fc24e49cc0519e:/include/wx/cmdline.h?ds=inline 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. //