NT4/private/ntos/dd/qic117/0x15a20.c
2020-09-30 17:12:29 +02:00

81 lines
1.7 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*****************************************************************************
*
* COPYRIGHT 1993 - COLORADO MEMORY SYSTEMS, INC.
* ALL RIGHTS RESERVED.
*
******************************************************************************
*
* FILE: \SE\DRIVER\Q117KDI\NT\SRC\0X15A20.C
*
* FUNCTION: kdi_CheckedDump
*
* PURPOSE:
*
* HISTORY:
* $Log: J:\se.vcs\driver\q117kdi\nt\src\0x15a20.c $
*
* Rev 1.3 04 Feb 1994 15:08:12 KURTGODW
* Fixed DBG
*
* Rev 1.2 19 Jan 1994 11:40:36 KEVINKES
* Changed format_str to a dSBytePtr.
*
* Rev 1.1 18 Jan 1994 16:24:22 KEVINKES
* Updated the debug code and fixed compile errors.
*
* Rev 1.0 09 Dec 1993 13:35:08 KEVINKES
* Initial Revision.
*
*****************************************************************************/
#define FCT_ID 0x15A20
#include "include\public\adi_api.h"
#include "include\public\frb_api.h"
#include "include\private\kdi_pub.h"
#include "include\private\cqd_pub.h"
#include "q117cd\include\cqd_defs.h"
#include "q117cd\include\cqd_strc.h"
#include "q117cd\include\cqd_hdr.h"
#if DBG
unsigned long kdi_debug_level = 0;
#endif
/*endinclude*/
#if DBG
dVoid kdi_CheckedDump
(
/* INPUT PARAMETERS: */
dUDWord debug_level,
dSBytePtr format_str,
dUDWord argument
/* UPDATE PARAMETERS: */
/* OUTPUT PARAMETERS: */
)
/* COMMENTS: *****************************************************************
*
* DEFINITIONS: *************************************************************/
{
/* DATA: ********************************************************************/
/* CODE: ********************************************************************/
if ((kdi_debug_level & debug_level) != 0) {
DbgPrint(format_str, argument);
}
return;
}
#endif