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
35 lines
517 B
/*++
|
|
|
|
DEBUG.C
|
|
|
|
interface to my regular debugging library.
|
|
|
|
Created, 9/13/1997 by DavidCHR
|
|
|
|
--*/
|
|
|
|
#ifdef DEBUG_OPTIONS
|
|
|
|
#include ".\private.h"
|
|
|
|
VOID
|
|
OptionDebugPrint( PCHAR fmt, ... ){
|
|
|
|
va_list v;
|
|
va_start( v, fmt );
|
|
|
|
vdebug( OPTION_DEBUGGING_LEVEL, fmt, v );
|
|
|
|
}
|
|
|
|
VOID
|
|
OptionHelpDebugPrint( PCHAR fmt, ... ){
|
|
|
|
va_list v;
|
|
va_start( v, fmt );
|
|
|
|
vdebug( OPTION_HELP_DEBUGGING_LEVEL, fmt, v );
|
|
|
|
}
|
|
|
|
#endif //don't compile it in if the user doesn't specify.
|