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.

50 lines
809 B

  1. /*++
  2. Copyright (c) 1996 - 1999 Microsoft Corporation
  3. Module Name:
  4. Unidebug.h
  5. Abstract:
  6. Unidrv specific Debugging header file.
  7. Environment:
  8. Windows NT Unidrv driver
  9. Revision History:
  10. 12/30/96 -ganeshp-
  11. Created
  12. dd-mm-yy -author-
  13. description
  14. --*/
  15. // Macroes for file lavel tracing. Define FILETRACE at the of the file
  16. // before including font.h.
  17. #if DBG
  18. #ifdef FILETRACE
  19. #define FVALUE( Val, format) DbgPrint("[UniDrv!FVALUE] Value of "#Val " is "#format "\n",Val );
  20. #define FTRACE( Val ) DbgPrint("[UniDrv!FTRACE] "#Val"\n");\
  21. #else //FILETRACE
  22. #define FVALUE( Val, format)
  23. #define FTRACE( Val )
  24. #endif //FILETRACE
  25. #else //DBG
  26. #define FVALUE( Val, format)
  27. #define FTRACE( Val )
  28. #endif //DBG