include/logprint.h
changeset 79 05328c643696
equal deleted inserted replaced
78:1253cacc0f21 79:05328c643696
       
     1 #ifndef __LOGPRINT_H__
       
     2 #define __LOGPRINT_H__ 1
       
     3 
       
     4 // Flags for scr_LogPrint()
       
     5 #define LPRINT_NORMAL   1U  // Display in log window
       
     6 #define LPRINT_LOG      2U  // Log to file (if enabled)
       
     7 #define LPRINT_DEBUG    4U  // Debug message (log if enabled)
       
     8 #define LPRINT_NOTUTF8  8U  // Do not convert from UTF-8 to locale
       
     9 
       
    10 // For convenience...
       
    11 #define LPRINT_LOGNORM  (LPRINT_NORMAL|LPRINT_LOG)
       
    12 
       
    13 void scr_print_logwindow(const char *string);
       
    14 void scr_LogPrint(unsigned int flag, const char *fmt, ...);
       
    15 
       
    16 void scr_DoUpdate(void);
       
    17 
       
    18 #endif /* __LOGPRINT_H__ */
       
    19 
       
    20 /* vim: set expandtab cindent cinoptions=>2\:2(0:  For Vim users... */