Changeset 32498 in vbox for trunk/src/VBox/GuestHost/OpenGL/util/error.c
- Timestamp:
- Sep 15, 2010 7:45:59 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r32420 r32498 129 129 130 130 131 DECLEXPORT(void) crError( char *format, ... )131 DECLEXPORT(void) crError(const char *format, ... ) 132 132 { 133 133 va_list args; … … 218 218 } 219 219 220 DECLEXPORT(void) crWarning( char *format, ... )220 DECLEXPORT(void) crWarning(const char *format, ... ) 221 221 { 222 222 if (warnings_enabled) { … … 247 247 } 248 248 249 DECLEXPORT(void) crInfo( char *format, ... )249 DECLEXPORT(void) crInfo(const char *format, ... ) 250 250 { 251 251 va_list args; … … 270 270 } 271 271 272 DECLEXPORT(void) crDebug( char *format, ... )272 DECLEXPORT(void) crDebug(const char *format, ... ) 273 273 { 274 274 va_list args;
Note:
See TracChangeset
for help on using the changeset viewer.