comparison util.h @ 1842:49f65d240299 mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Sun, 14 Apr 2019 23:38:02 -0700
parents 52a47611a273
children a4cae960fd08
comparison
equal deleted inserted replaced
1787:0c6d07f91346 1842:49f65d240299
82 void fatal_error(char *format, ...); 82 void fatal_error(char *format, ...);
83 //Prints an information message to stdout and to a message box if not in headless mode and not attached to a console 83 //Prints an information message to stdout and to a message box if not in headless mode and not attached to a console
84 void info_message(char *format, ...); 84 void info_message(char *format, ...);
85 //Prints an information message to stderr and to a message box if not in headless mode and not attached to a console 85 //Prints an information message to stderr and to a message box if not in headless mode and not attached to a console
86 void warning(char *format, ...); 86 void warning(char *format, ...);
87 //Prints a debug message to stdout
88 void debug_message(char *format, ...);
89 //Disables output of info and debug messages to stdout
90 void disable_stdout_messages(void);
87 91
88 #endif //UTIL_H_ 92 #endif //UTIL_H_