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.
|
|
#ifndef __OUTFUNCS_H__
#define __OUTFUNCS_H__
// Array of callback functions which will be called to print buffer
#define BUFFER_MAX_FUNCTIONS 5
typedef VOID (*StringOutFunc) (const char *);
#if defined(__cplusplus)
extern "C" { #endif
void AddOutputFunction(StringOutFunc pfunc); void DelOutputFunction(StringOutFunc pfunc); void CallOutputFunctions(const char *buffer); void OutputLogFileA(const char *buf); void WriteToDebugScreen(BOOL flag); void WriteToLogFile(LPCTSTR lpfn); void OpenDebugSinks(); void CloseDebugSinks();
#if defined(__cplusplus)
} #endif
#endif // __OUTFUNCS_H__
|