mirror of
https://github.com/reactos/reactos.git
synced 2025-05-09 03:37:08 +00:00
[CRT]
* Annotate assert.h. svn path=/trunk/; revision=58426
This commit is contained in:
parent
b150ca1663
commit
66ec3cf59b
1 changed files with 15 additions and 2 deletions
|
@ -20,8 +20,21 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
_CRTIMP void __cdecl _assert(const char *_Message,const char *_File,unsigned _Line);
|
||||
_CRTIMP void __cdecl _wassert(const wchar_t *_Message,const wchar_t *_File,unsigned _Line);
|
||||
_CRTIMP
|
||||
void
|
||||
__cdecl
|
||||
_assert(
|
||||
_In_z_ const char *_Message,
|
||||
_In_z_ const char *_File,
|
||||
_In_ unsigned _Line);
|
||||
|
||||
_CRTIMP
|
||||
void
|
||||
__cdecl
|
||||
_wassert(
|
||||
_In_z_ const wchar_t *_Message,
|
||||
_In_z_ const wchar_t *_File,
|
||||
_In_ unsigned _Line);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue