NT4/private/ole32/common/outfuncs.h

26 lines
591 B
C
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
#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__