mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:52:57 +00:00
[CRT]
* Annotate search_s.h. svn path=/trunk/; revision=59821
This commit is contained in:
parent
abce7035cb
commit
cb3adb53f5
1 changed files with 26 additions and 3 deletions
|
@ -3,6 +3,7 @@
|
||||||
* This file is part of the w64 mingw-runtime package.
|
* This file is part of the w64 mingw-runtime package.
|
||||||
* No warranty is given; refer to the file DISCLAIMER within this package.
|
* No warranty is given; refer to the file DISCLAIMER within this package.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _INC_SEARCH_S
|
#ifndef _INC_SEARCH_S
|
||||||
#define _INC_SEARCH_S
|
#define _INC_SEARCH_S
|
||||||
|
|
||||||
|
@ -14,12 +15,34 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
_CRTIMP void *__cdecl _lfind_s(const void *_Key,const void *_Base,unsigned int *_NumOfElements,size_t _SizeOfElements,int (__cdecl *_PtFuncCompare)(void *,const void *,const void *),void *_Context);
|
_Check_return_
|
||||||
_CRTIMP void *__cdecl _lsearch_s(const void *_Key,void *_Base,unsigned int *_NumOfElements,size_t _SizeOfElements,int (__cdecl *_PtFuncCompare)(void *,const void *,const void *),void *_Context);
|
_CRTIMP
|
||||||
|
void *
|
||||||
|
__cdecl
|
||||||
|
_lfind_s(
|
||||||
|
_In_ const void *_Key,
|
||||||
|
_In_reads_bytes_((*_NumOfElements) * _SizeOfElements) const void *_Base,
|
||||||
|
_Inout_ unsigned int *_NumOfElements,
|
||||||
|
_In_ size_t _SizeOfElements,
|
||||||
|
_In_ int(__cdecl *_PtFuncCompare)(void *, const void *, const void *),
|
||||||
|
void *_Context);
|
||||||
|
|
||||||
|
_Check_return_
|
||||||
|
_CRTIMP
|
||||||
|
void *
|
||||||
|
__cdecl
|
||||||
|
_lsearch_s(
|
||||||
|
_In_ const void *_Key,
|
||||||
|
_Inout_updates_bytes_((*_NumOfElements) * _SizeOfElements) void *_Base,
|
||||||
|
_Inout_ unsigned int *_NumOfElements,
|
||||||
|
_In_ size_t _SizeOfElements,
|
||||||
|
_In_ int(__cdecl *_PtFuncCompare)(void *, const void *, const void *),
|
||||||
|
void *_Context);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
#endif /* _INC_SEARCH_S */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue