Author: akhaldi
Date: Mon Mar  4 21:24:47 2013
New Revision: 58426

URL: http://svn.reactos.org/svn/reactos?rev=58426&view=rev
Log:
[CRT]
* Annotate assert.h.

Modified:
    trunk/reactos/include/crt/assert.h

Modified: trunk/reactos/include/crt/assert.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/assert.h?rev=58426&r1=58425&r2=58426&view=diff
==============================================================================
--- trunk/reactos/include/crt/assert.h [iso-8859-1] (original)
+++ trunk/reactos/include/crt/assert.h [iso-8859-1] Mon Mar  4 21:24:47 2013
@@ -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
 }


Reply via email to