mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 00:15:59 +01:00
35 lines
1.8 KiB
C
35 lines
1.8 KiB
C
#include "global_fakes.h"
|
|
#include <string.h> // for memcpy
|
|
|
|
#ifndef TEST_WITH_CALLING_CONVENTIONS
|
|
DEFINE_FAKE_VOID_FUNC(voidfunc1, int);
|
|
DEFINE_FAKE_VOID_FUNC(voidfunc2, char, char);
|
|
DEFINE_FAKE_VOID_FUNC(voidfunc1outparam, char *);
|
|
|
|
DEFINE_FAKE_VALUE_FUNC(long, longfunc0);
|
|
DEFINE_FAKE_VALUE_FUNC(enum MYBOOL, enumfunc0);
|
|
DEFINE_FAKE_VALUE_FUNC(struct MyStruct, structfunc0);
|
|
DEFINE_FAKE_VOID_FUNC_VARARG(voidfunc3var, const char *, int, ...);
|
|
DEFINE_FAKE_VALUE_FUNC_VARARG(int, valuefunc3var, const char *, int, ...);
|
|
#ifndef __cplusplus
|
|
DEFINE_FAKE_VALUE_FUNC(int, strlcpy3, char* const, const char* const, const size_t);
|
|
#endif /* __cplusplus */
|
|
DEFINE_FAKE_VOID_FUNC(voidfunc20, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int);
|
|
DEFINE_FAKE_VALUE_FUNC(int, valuefunc20, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int);
|
|
#else
|
|
DEFINE_FAKE_VOID_FUNC(__cdecl, voidfunc1, int);
|
|
DEFINE_FAKE_VOID_FUNC(__cdecl, voidfunc2, char, char);
|
|
DEFINE_FAKE_VOID_FUNC(__cdecl, voidfunc1outparam, char *);
|
|
|
|
DEFINE_FAKE_VALUE_FUNC(long, __cdecl, longfunc0);
|
|
DEFINE_FAKE_VALUE_FUNC(enum MYBOOL, __cdecl, enumfunc0);
|
|
DEFINE_FAKE_VALUE_FUNC(struct MyStruct, __cdecl, structfunc0);
|
|
DEFINE_FAKE_VOID_FUNC_VARARG(__cdecl, voidfunc3var, const char *, int, ...);
|
|
DEFINE_FAKE_VALUE_FUNC_VARARG(int, __cdecl, valuefunc3var, const char *, int, ...);
|
|
#ifndef __cplusplus
|
|
DEFINE_FAKE_VALUE_FUNC(int, __cdecl, strlcpy3, char* const, const char* const, const size_t);
|
|
#endif /* __cplusplus */
|
|
DEFINE_FAKE_VOID_FUNC(__cdecl, voidfunc20, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int);
|
|
DEFINE_FAKE_VALUE_FUNC(int, __cdecl,valuefunc20, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int);
|
|
#endif
|