1 #ifndef	CLIB_LOG_PROTOS_H
    2 #define	CLIB_LOG_PROTOS_H
    3 
    4 #ifndef	EXEC_TYPES_H
    5 #  include <exec/types.h>
    6 #endif
    7 
    8 #ifndef UTILITY_TAGITEM_H
    9 #  include <utility/tagitem.h>
   10 #endif
   11 
   12 #ifndef LIBRARIES_LOG_H
   13 # include <libraries/log.h>
   14 #endif
   15 
   16 #include <stdarg.h>
   17 
   18 
   19 #ifdef __cplusplus
   20 extern "C" {
   21 #endif /* __cplusplus */
   22 
   23 void LogVPrintf(char *Category,char *Format, va_list args);
   24 void LogPrintf(char *Category,char *Format, ...);
   25 void LogShowWindow(void);
   26 void LogHideWindow(void);
   27 ULONG LogAddNotify(struct MsgPort *NotifyMsgPort);
   28 ULONG LogRemNotify(struct MsgPort *NotifyMsgPort);
   29 
   30 
   31 #ifdef __cplusplus
   32 }
   33 #endif /* __cplusplus */
   34 
   35 #endif /* CLIB_LOG_PROTOS_H */