windows.cfg: Add SetFilePointer() function configuration (#1167)
This commit is contained in:
parent
26e22a9f5c
commit
9e623b15b1
|
@ -5175,6 +5175,28 @@ HFONT CreateFont(
|
||||||
<not-bool/>
|
<not-bool/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- DWORD WINAPI SetFilePointer(
|
||||||
|
_In_ HANDLE hFile,
|
||||||
|
_In_ LONG lDistanceToMove,
|
||||||
|
_Inout_opt_ PLONG lpDistanceToMoveHigh,
|
||||||
|
_In_ DWORD dwMoveMethod); -->
|
||||||
|
<function name="SetFilePointer">
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<returnValue type="DWORD"/>
|
||||||
|
<leak-ignore/>
|
||||||
|
<arg nr="1">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3">
|
||||||
|
<!-- nullptr is valid -->
|
||||||
|
</arg>
|
||||||
|
<arg nr="4">
|
||||||
|
<not-uninit/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- Intrinsic __noop https://docs.microsoft.com/en-us/cpp/intrinsics/noop -->
|
<!-- Intrinsic __noop https://docs.microsoft.com/en-us/cpp/intrinsics/noop -->
|
||||||
<function name="__noop">
|
<function name="__noop">
|
||||||
<noreturn>false</noreturn>
|
<noreturn>false</noreturn>
|
||||||
|
|
Loading…
Reference in New Issue