windows.cfg: Added support for SetupComm(). Reference https://docs.microsoft.com/en-us/windows/desktop/api/winbase/nf-winbase-setupcomm
This commit is contained in:
parent
8d7d93aea7
commit
dea07b2033
|
@ -3782,6 +3782,21 @@ HFONT CreateFont(
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- BOOL SetupComm( HANDLE hFile, DWORD dwInQueue, DWORD dwOutQueue );-->
|
||||||
|
<function name="SetupComm">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="BOOL"/>
|
||||||
|
<leak-ignore/>
|
||||||
|
<arg nr="1" direction="inout">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- unsigned char *_mbsrchr(const unsigned char *str, unsigned int c); // C only
|
<!-- unsigned char *_mbsrchr(const unsigned char *str, unsigned int c); // C only
|
||||||
unsigned char *_mbsrchr(unsigned char *str, unsigned int c); // C++ only
|
unsigned char *_mbsrchr(unsigned char *str, unsigned int c); // C++ only
|
||||||
const unsigned char *_mbsrchr(const unsigned char *str, unsigned int c); // C++ only-->
|
const unsigned char *_mbsrchr(const unsigned char *str, unsigned int c); // C++ only-->
|
||||||
|
|
Loading…
Reference in New Issue