* Annotate assert.h.

svn path=/trunk/; revision=58426
This commit is contained in:
Amine Khaldi 2013-03-04 21:24:47 +00:00
parent b150ca1663
commit 66ec3cf59b

View file

@ -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
}