mirror of
https://github.com/reactos/reactos.git
synced 2025-06-22 22:50:16 +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" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
_CRTIMP void __cdecl _assert(const char *_Message,const char *_File,unsigned _Line);
|
_CRTIMP
|
||||||
_CRTIMP void __cdecl _wassert(const wchar_t *_Message,const wchar_t *_File,unsigned _Line);
|
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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue