wxwidgets.cfg: Added support for wxCONCAT(), wxSTRINGIZE_T() and wxSTRINGSIZE() macros.

This commit is contained in:
orbitcowboy 2019-05-02 11:30:30 +02:00
parent 091f4bcf8d
commit b81390c098
1 changed files with 28 additions and 0 deletions

View File

@ -4339,6 +4339,34 @@
<not-bool/>
</arg>
</function>
<!--#define wxSTRINGIZE_T(x) -->
<!--#define wxSTRINGIZE(x) -->
<!--These are defined as macros in wxWidgets. Non the less, this is configured as
as function to catch unused return values. -->
<function name="wxSTRINGIZE_T,wxSTRINGSIZE">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxString"/>
<use-retval/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
</function>
<!--#define wxCONCAT(x1,x2) -->
<!--This is defined as macro in wxWidgets. Non the less, this is configured as
as function to catch unused return values. -->
<function name="wxCONCAT">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="wxString"/>
<use-retval/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
</function>
<!-- http://docs.wxwidgets.org/trunk/classwx_string.html#ace32756bab999f8aae9be0cf981fc449 -->
<!-- bool wxString::IsEmpty() -->
<function name="wxString::IsEmpty">