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