42 lines
		
	
	
		
			651 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			651 B
		
	
	
	
		
			C
		
	
	
	
	
	
//+--------------------------------------------------------------------------
 | 
						|
//
 | 
						|
// Copyright (c) 1997-1999 Microsoft Corporation
 | 
						|
//
 | 
						|
// File:        
 | 
						|
//
 | 
						|
// Contents:    
 | 
						|
//
 | 
						|
// History:     
 | 
						|
//
 | 
						|
//---------------------------------------------------------------------------
 | 
						|
#ifndef __DEBUG_OUTPUT__
 | 
						|
#define __DEBUG_OUTPUT__
 | 
						|
 | 
						|
#include <windows.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <tchar.h>
 | 
						|
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
void
 | 
						|
TLSDebugOutput(
 | 
						|
    HANDLE hConsole,
 | 
						|
    LPTSTR format, ...
 | 
						|
);
 | 
						|
 | 
						|
void
 | 
						|
DebugOutput(
 | 
						|
    HANDLE hConsole,
 | 
						|
    LPTSTR format,
 | 
						|
    va_list* vaList
 | 
						|
);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |