WindowsXP/com/ole32/common/outfuncs.h
2025-04-27 07:49:33 -04:00

26 lines
616 B
C

#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__