wxwidgets.cfg: Added support for more interfaces
This commit is contained in:
parent
d9b610013e
commit
bd2c9c6133
|
@ -7983,6 +7983,26 @@
|
|||
<arg nr="3" direction="in" default="false"/>
|
||||
<arg nr="4" direction="in" default="wxNullBitmap"/>
|
||||
</function>
|
||||
<!-- wxWindow* wxFindWindowByLabel(const wxString & name, wxWindow * parent = NULL) -->
|
||||
<function name="wxFindWindowByLabel">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<returnValue type="wxWindow *"/>
|
||||
<arg nr="1" direction="in"/>
|
||||
<arg nr="2" direction="out" default="NULL"/>
|
||||
<warn severity="style">This function is deprecated, please use 'wxWindow::FindWindowByLabel()' instead.</warn>
|
||||
</function>
|
||||
<!-- wxWindow* wxFindWindowByName(const wxString & name, wxWindow * parent = NULL) -->
|
||||
<function name="wxFindWindowByName">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<returnValue type="wxWindow *"/>
|
||||
<arg nr="1" direction="in"/>
|
||||
<arg nr="2" direction="out" default="NULL"/>
|
||||
<warn severity="style">This function is deprecated, please use 'wxWindow::FindWindowByName()' instead.</warn>
|
||||
</function>
|
||||
<!-- char* wxGetTempFileName(const wxString & prefix, char * buf = NULL) -->
|
||||
<function name="wxGetTempFileName">
|
||||
<noreturn>false</noreturn>
|
||||
|
@ -8007,6 +8027,34 @@
|
|||
</arg>
|
||||
<warn severity="style">This function is deprecated, use 'wxGetUserId()' with no arguments instead.</warn>
|
||||
</function>
|
||||
<!-- bool wxGetEmailAddress(char * buf, int sz) -->
|
||||
<function name="wxGetEmailAddress">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<returnValue type="bool"/>
|
||||
<arg nr="1" direction="out">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<warn severity="style">This function is deprecated, use 'wxGetEmailAddress()' with no arguments instead.</warn>
|
||||
</function>
|
||||
<!-- bool wxGetHostName(char * buf, int sz) -->
|
||||
<function name="wxGetHostName">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<use-retval/>
|
||||
<returnValue type="bool"/>
|
||||
<arg nr="1" direction="out">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" direction="in">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<warn severity="style">This function is deprecated, use 'wxGetHostName()' with no arguments instead.</warn>
|
||||
</function>
|
||||
<!-- bool wxGetUserName(char * buf, int sz) -->
|
||||
<function name="wxGetUserName">
|
||||
<noreturn>false</noreturn>
|
||||
|
|
Loading…
Reference in New Issue