ReactOS 0.4.16-dev-1097-g530d26a
search_s.h
Go to the documentation of this file.
1
7#ifndef _INC_SEARCH_S
8#define _INC_SEARCH_S
9
10#include <search.h>
11
12#if defined(MINGW_HAS_SECURE_API)
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
20 void *
23 _In_ const void *_Key,
24 _In_reads_bytes_((*_NumOfElements) * _SizeOfElements) const void *_Base,
25 _Inout_ unsigned int *_NumOfElements,
26 _In_ size_t _SizeOfElements,
27 _In_ int(__cdecl *_PtFuncCompare)(void *, const void *, const void *),
28 void *_Context);
29
32 void *
35 _In_ const void *_Key,
36 _Inout_updates_bytes_((*_NumOfElements) * _SizeOfElements) void *_Base,
37 _Inout_ unsigned int *_NumOfElements,
38 _In_ size_t _SizeOfElements,
39 _In_ int(__cdecl *_PtFuncCompare)(void *, const void *, const void *),
40 void *_Context);
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif
47
48#endif /* _INC_SEARCH_S */
#define __cdecl
Definition: accygwin.h:79
_Check_return_ _ACRTIMP void *__cdecl _lfind_s(_In_ void const *_Key, _In_reads_bytes_((*_NumOfElements) *_SizeOfElements) void const *_Base, _Inout_ unsigned int *_NumOfElements, _In_ size_t _SizeOfElements, _In_ _CoreCrtSecureSearchSortCompareFunction _CompareFunction, _In_ void *_Context)
_Check_return_ _ACRTIMP void *__cdecl _lsearch_s(_In_ void const *_Key, _Inout_updates_bytes_((*_NumOfElements) *_SizeOfElements) void *_Base, _Inout_ unsigned int *_NumOfElements, _In_ size_t _SizeOfElements, _In_ _CoreCrtSecureSearchSortCompareFunction _CompareFunction, _In_ void *_Context)
_Check_return_ _In_z_ wchar_t const _Inout_opt_ _Deref_prepost_opt_z_ wchar_t ** _Context
_Check_return_ _Ret_maybenull_ _In_ size_t _SizeOfElements
Definition: malloc.h:76
#define _In_reads_bytes_(s)
Definition: no_sal2.h:170
#define _Inout_
Definition: no_sal2.h:162
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158
#define _Inout_updates_bytes_(s)
Definition: no_sal2.h:184
_In_ int _Base
Definition: time.h:330
#define _CRTIMP
Definition: vcruntime.h:54