summaryrefslogblamecommitdiffstats
path: root/private/ole32/olethunk/debnot/dprintf.h
blob: 7cf0affff6d27819ac0cd605535ab314392d2352 (plain) (tree)
































                                                                              
//+---------------------------------------------------------------------------
//  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

#ifndef WIN32
int _cdecl w4dprintf(const char __far *format, ...);
int _cdecl w4vdprintf(const char __far *format, va_list arglist);
#else
int _cdecl w4dprintf(const char *format, ...);
int _cdecl w4vdprintf(const char *format, va_list arglist);
#endif

#ifdef __cplusplus
}
#endif