Changeset 244 for cpp/common/framsg.h


Ignore:
Timestamp:
05/31/14 21:31:01 (10 years ago)
Author:
Maciej Komosinski
Message:

Printing multi-line messages splits the message into separate lines and adds "..." prefix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/framsg.h

    r197 r244  
    1313void FMprintf_va(const char *o,const char *m,int w,const char *bl,va_list va); //a different name than FMprintf - otherwise the compiler could confuse the "string" parameter with va_list and could call the wrong function
    1414void printFM(const char *bl,...); //a shorthand for printf (a different name again to avoid the risk of confusion with the two functions above. This would be unlikely but possible when the argument types would match)
    15 void FramMessage(const char *o,const char *m,const char *bl,int w);
     15void FramMessage(const char *o,const char *m,const char *txt,int w);
     16
     17void _FramMessageSingleLine(const char *o,const char *m,const char *txt,int w); //don't call this directly - it is used internally
    1618
    1719#define FMLV_DEBUG -1
Note: See TracChangeset for help on using the changeset viewer.