comparison util.h @ 2041:638eb2d25696 mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Thu, 05 Aug 2021 09:29:33 -0700
parents 441d5d6cea2f
children 237068a25523
comparison
equal deleted inserted replaced
1984:0d5f88e53dca 2041:638eb2d25696
86 void warning(char *format, ...); 86 void warning(char *format, ...);
87 //Prints a debug message to stdout 87 //Prints a debug message to stdout
88 void debug_message(char *format, ...); 88 void debug_message(char *format, ...);
89 //Disables output of info and debug messages to stdout 89 //Disables output of info and debug messages to stdout
90 void disable_stdout_messages(void); 90 void disable_stdout_messages(void);
91 //Returns stdout disable status
92 uint8_t is_stdout_enabled(void);
91 //Deletes a file, returns true on success, false on failure 93 //Deletes a file, returns true on success, false on failure
92 uint8_t delete_file(char *path); 94 uint8_t delete_file(char *path);
93 //Initializes the socket library on platforms that need it 95 //Initializes the socket library on platforms that need it
94 void socket_init(void); 96 void socket_init(void);
95 //Sets a sockt to blocking or non-blocking mode 97 //Sets a sockt to blocking or non-blocking mode