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.
 
 
 
 
 
 

33 lines
836 B

//+---------------------------------------------------------------------------
// Copyright (C) 1991, Microsoft Corporation.
//
// File: dprintf.h
//
// Contents: Debugging output routine function prototypes
//
// Functions: w4printf
// w4vprintf
// w4dprintf
// w4vdprintf
//
// History: 18-Oct-91 vich Created
//
//----------------------------------------------------------------------------
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
int _cdecl w4printf(const char *format, ...);
int _cdecl w4vprintf(const char *format, va_list arglist);
#endif
int _cdecl w4dprintf(const char *format, ...);
int _cdecl w4vdprintf(const char *format, va_list arglist);
#ifdef __cplusplus
}
#endif