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.

35 lines
517 B

  1. /*++
  2. DEBUG.C
  3. interface to my regular debugging library.
  4. Created, 9/13/1997 by DavidCHR
  5. --*/
  6. #ifdef DEBUG_OPTIONS
  7. #include ".\private.h"
  8. VOID
  9. OptionDebugPrint( PCHAR fmt, ... ){
  10. va_list v;
  11. va_start( v, fmt );
  12. vdebug( OPTION_DEBUGGING_LEVEL, fmt, v );
  13. }
  14. VOID
  15. OptionHelpDebugPrint( PCHAR fmt, ... ){
  16. va_list v;
  17. va_start( v, fmt );
  18. vdebug( OPTION_HELP_DEBUGGING_LEVEL, fmt, v );
  19. }
  20. #endif //don't compile it in if the user doesn't specify.