diff 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
line wrap: on
line diff
--- a/util.h	Thu Mar 14 23:40:50 2019 -0700
+++ b/util.h	Sun Apr 14 23:38:02 2019 -0700
@@ -84,5 +84,9 @@
 void info_message(char *format, ...);
 //Prints an information message to stderr and to a message box if not in headless mode and not attached to a console
 void warning(char *format, ...);
+//Prints a debug message to stdout
+void debug_message(char *format, ...);
+//Disables output of info and debug messages to stdout
+void disable_stdout_messages(void);
 
 #endif //UTIL_H_