wxwidgets.cfg: Added support for more interfaces, found by daca@home

This commit is contained in:
orbitcowboy 2020-12-26 13:57:05 +01:00
parent 00071d09f6
commit dc0a7aab9f
1 changed files with 34 additions and 0 deletions

View File

@ -3388,6 +3388,24 @@
<define name="wxLIST_FORMAT_RIGHT" value="1"/>
<define name="wxLIST_FORMAT_CENTRE" value="2"/>
<define name="wxLIST_FORMAT_CENTER" value="3"/>
<define name="wxCMD_LINE_OPTION_MANDATORY" value="0x01"/>
<define name="wxCMD_LINE_PARAM_OPTIONAL" value="0x02"/>
<define name="wxCMD_LINE_PARAM_MULTIPLE" value="0x04"/>
<define name="wxCMD_LINE_OPTION_HELP" value="0x08"/>
<define name="wxCMD_LINE_NEEDS_SEPARATOR" value="0x10"/>
<define name="wxCMD_LINE_SWITCH_NEGATABLE" value="0x20"/>
<define name="wxCMD_LINE_VAL_STRING" value="0"/>
<define name="wxCMD_LINE_VAL_NUMBER" value="1"/>
<define name="wxCMD_LINE_VAL_DATE" value="2"/>
<define name="wxCMD_LINE_VAL_DOUBLE" value="3"/>
<define name="wxCMD_LINE_VAL_NONE" value="4"/>
<define name="wxCMD_LINE_SWITCH" value="0"/>
<define name="wxCMD_LINE_OPTION" value="1"/>
<define name="wxCMD_LINE_PARAM" value="2"/>
<define name="wxCMD_LINE_USAGE_TEXT" value="3"/>
<define name="wxCMD_LINE_NONE" value="4"/>
<define name="wxCMD_LINE_SPLIT_DOS" value="0"/>
<define name="wxCMD_LINE_SPLIT_UNIX" value="1"/>
<define name="wxFILTER_NONE" value="0"/>
<define name="wxFILTER_EMPTY" value="1"/>
<define name="wxFILTER_ASCII" value="2"/>
@ -15451,4 +15469,20 @@ wxItemKind kind = wxITEM_NORMAL) -->
<arg nr="6" direction="in" default="wxEmptyString"/>
<arg nr="7" direction="in" default="wxFONTENCODING_DEFAULT"/>
</function>
<!-- void wxCmdLineParser::AddSwitch(const wxString & name,
const wxString & lng = wxEmptyString,
const wxString & desc = wxEmptyString,
int flags = 0
)-->
<function name="wxCmdLineParser::AddSwitch">
<noreturn>false</noreturn>
<returnValue type="void"/>
<leak-ignore/>
<arg nr="1" direction="in"/>
<arg nr="2" direction="in" default="wxEmptyString"/>
<arg nr="3" direction="in" default="wxEmptyString"/>
<arg nr="4" direction="in" default="0">
<not-uninit/>
</arg>
</function>
</def>