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.

23 lines
475 B

  1. /****************************************************************************
  2. *
  3. * Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved
  4. *
  5. *
  6. *
  7. *
  8. *
  9. *
  10. *
  11. ****************************************************************************/
  12. #ifndef __TRACE_H__
  13. #define __TRACE_H__
  14. #ifdef _DEBUG
  15. void __cdecl Trace(LPSTR lprgchFormat, ...);
  16. #else
  17. inline void __cdecl Trace(LPSTR /*lprgchFormat*/, ...) {}
  18. #endif //_DEBUG
  19. #endif //__TRACE_H__