windows.cfg: Improved configuration of _fseeki64()
This commit is contained in:
parent
a7b7b46d76
commit
2dea968ec5
|
@ -2718,6 +2718,8 @@ HFONT CreateFont(
|
||||||
</arg>
|
</arg>
|
||||||
<arg nr="3" direction="in">
|
<arg nr="3" direction="in">
|
||||||
<not-uninit/>
|
<not-uninit/>
|
||||||
|
<not-bool/>
|
||||||
|
<valid>0:2</valid>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
<!-- __int64 _ftelli64(FILE *stream);
|
<!-- __int64 _ftelli64(FILE *stream);
|
||||||
|
|
|
@ -8,12 +8,38 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <direct.h>
|
#include <direct.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
#include <mbstring.h>
|
#include <mbstring.h>
|
||||||
|
|
||||||
|
void invalidFunctionArg__fseeki64(FILE* stream, __int64 offset, int origin)
|
||||||
|
{
|
||||||
|
// cppcheck-suppress invalidFunctionArg
|
||||||
|
(void)_fseeki64(stream, offset, -1);
|
||||||
|
// cppcheck-suppress invalidFunctionArg
|
||||||
|
(void)_fseeki64(stream, offset, 3);
|
||||||
|
// cppcheck-suppress invalidFunctionArg
|
||||||
|
(void)_fseeki64(stream, offset, 42+SEEK_SET);
|
||||||
|
// cppcheck-suppress invalidFunctionArg
|
||||||
|
(void)_fseeki64(stream, offset, SEEK_SET+42);
|
||||||
|
// No warning is expected for
|
||||||
|
(void)_fseeki64(stream, offset, origin);
|
||||||
|
(void)_fseeki64(stream, offset, SEEK_SET);
|
||||||
|
(void)_fseeki64(stream, offset, SEEK_CUR);
|
||||||
|
(void)_fseeki64(stream, offset, SEEK_END);
|
||||||
|
}
|
||||||
|
|
||||||
|
void invalidFunctionArgBool__fseeki64(FILE* stream, __int64 offset, int origin)
|
||||||
|
{
|
||||||
|
// cppcheck-suppress invalidFunctionArgBool
|
||||||
|
(void)_fseeki64(stream, offset, true);
|
||||||
|
// cppcheck-suppress invalidFunctionArgBool
|
||||||
|
(void)_fseeki64(stream, offset, false);
|
||||||
|
}
|
||||||
|
|
||||||
unsigned char * overlappingWriteFunction__mbscat(unsigned char *src, unsigned char *dest)
|
unsigned char * overlappingWriteFunction__mbscat(unsigned char *src, unsigned char *dest)
|
||||||
{
|
{
|
||||||
// No warning shall be shown:
|
// No warning shall be shown:
|
||||||
|
|
Loading…
Reference in New Issue