wxwidgets.cfg: Added support for more interfaces.

This commit is contained in:
orbitcowboy 2019-12-20 11:49:58 +01:00
parent 0d05707f77
commit 4285e16fe6
1 changed files with 35 additions and 2 deletions

View File

@ -8268,8 +8268,22 @@
<returnValue type="bool"/>
<arg nr="1" direction="in"/>
</function>
<!-- bool wxListCtrl::SetColumnWidth( int col, int width ) -->
<!-- bool wxListView::SetColumnWidth( int col, int width ) -->
<!-- wxString wxListCtrl::GetItemText (long item, int col=0) const -->
<!-- wxString wxListView::GetItemText (long item, int col=0) const -->
<function name="wxListCtrl::GetItemText,wxListView::GetItemText">
<noreturn>false</noreturn>
<returnValue type="wxString"/>
<leak-ignore/>
<const/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
<arg nr="2" direction="in" default="0">
<not-uninit/>
</arg>
</function>
<!-- bool wxListCtrl::SetColumnWidth (int col, int width) -->
<!-- bool wxListView::SetColumnWidth (int col, int width) -->
<function name="wxListCtrl::SetColumnWidth,wxListView::SetColumnWidth">
<noreturn>false</noreturn>
<returnValue type="bool"/>
@ -8281,6 +8295,25 @@
<not-uninit/>
</arg>
</function>
<!-- long wxListCtrl::InsertColumn(long col, const wxListItem & info) -->
<!-- long wxListCtrl::InsertColumn(long col, const wxString & heading, int format = wxLIST_FORMAT_LEFT, int width = wxLIST_AUTOSIZE) -->
<!-- long wxListView::InsertColumn(long col, const wxListItem & info) -->
<!-- long wxListView::InsertColumn(long col, const wxString & heading, int format = wxLIST_FORMAT_LEFT, int width = wxLIST_AUTOSIZE) -->
<function name="wxListCtrl::InsertColumn,wxListView::InsertColumn">
<noreturn>false</noreturn>
<returnValue type="long"/>
<leak-ignore/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
<arg nr="2" direction="in"/>
<arg nr="3" direction="in" default="wxLIST_FORMAT_LEFT">
<not-uninit/>
</arg>
<arg nr="4" direction="in" default="wxLIST_AUTOSIZE">
<not-uninit/>
</arg>
</function>
<!-- wxLog * wxLog::SetActiveTarget( wxLog * logger ) -->
<!-- wxLog * wxLogGui::SetActiveTarget( wxLog * logger ) -->
<function name="wxLog::SetActiveTarget,wxLogGui::SetActiveTarget">