remove trailing whitespace at end of lines
[reactos.git] / rosapps / mc / pc / trace_nt.h
index 1eda396..3a5ee05 100644 (file)
@@ -6,7 +6,7 @@
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  
+   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
 /* ------------------------------------------------------------------------------------------ *
 /************************/
 
 /* Macros
-   ------ 
+   ------
        win32Trace(x)     - Trace macro. Use double in parenthesis for x. Same args as printf.
-       win32ASSERT(x)    - assert macro, but will not abort program and output sent to trace routine.  
-       win32APICALL(x)  - Use to enclose a Win32 system call that should return TRUE. 
-       win32APICALL_HANDLE(h,api)  - Use to enclose a Win32 system call that should return a handle. 
+       win32ASSERT(x)    - assert macro, but will not abort program and output sent to trace routine.
+       win32APICALL(x)  - Use to enclose a Win32 system call that should return TRUE.
+       win32APICALL_HANDLE(h,api)  - Use to enclose a Win32 system call that should return a handle.
 */
 #define win32Trace(x)                          if (__win32_tracing_enabled)    _win32Trace x
 #define win32ASSERT(x)                         if (!(x))    _win32DebugAssertionFailed (#x, __LINE__, __FILE__)
@@ -52,7 +52,7 @@ void _win32TraceOff (void);
 #define TraceOff       _win32TraceOff
 
 /* Global variables  */
-extern int __win32_tracing_enabled;  
+extern int __win32_tracing_enabled;
 
 #else
 /************************/
@@ -60,8 +60,8 @@ extern int __win32_tracing_enabled;
 /************************/
 
 /* Wipe-out these macros */
-#define win32Trace(x)          
-#define win32ASSERT(x)         
+#define win32Trace(x)
+#define win32ASSERT(x)
 #define win32APICALL(x)                        x
 #define win32APICALL_HANDLE(h,api)     h=api;