Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
801 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1997, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // iasdebug.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // This file defines various debug macros.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 10/22/1997 Original version.
  16. // 05/21/1999 Stub out old style trace.
  17. //
  18. ///////////////////////////////////////////////////////////////////////////////
  19. #ifndef IASDEBUG_H
  20. #define IASDEBUG_H
  21. __inline int PreAsyncTrace( LPARAM lParam, LPCSTR szFormat, ... )
  22. { return 1; }
  23. #define ErrorTrace 1 ? (void)0 : PreAsyncTrace
  24. #define DebugTrace 1 ? (void)0 : PreAsyncTrace
  25. #define DECLARE_TRACELIFE(Name)
  26. #define DEFINE_TRACELIFE(Name)
  27. #define TRACE_FUNCTION(Name)
  28. #endif // IASDEBUG_H