[CRT]
authorAmine Khaldi <amine.khaldi@reactos.org>
Mon, 4 Mar 2013 21:24:47 +0000 (21:24 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Mon, 4 Mar 2013 21:24:47 +0000 (21:24 +0000)
* Annotate assert.h.

svn path=/trunk/; revision=58426

reactos/include/crt/assert.h

index 9107ee5..8f9fa21 100644 (file)
 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
 }