mirror of
https://github.com/zeldaret/tp
synced 2026-06-09 12:46:13 -04:00
os: const-qualify string arguments (#111)
Avoids the need to cast away const from string literals.
This commit is contained in:
+7
-7
@@ -154,13 +154,13 @@ s32 OSGetResetCode(void);
|
||||
u32 OSGetSoundMode(void);
|
||||
void OSSetSoundMode(OSSoundMode mode);
|
||||
|
||||
void OSAttention(char* msg, ...);
|
||||
void OSPanic(char* file, s32 line, char* fmt, ...);
|
||||
void OSReport(char* fmt, ...);
|
||||
void OSReport_Error(char* fmt, ...);
|
||||
void OSReport_FatalError(char* fmt, ...);
|
||||
void OSReport_System(char* fmt, ...);
|
||||
void OSReport_Warning(char* fmt, ...);
|
||||
void OSAttention(const char* msg, ...);
|
||||
void OSPanic(const char* file, s32 line, const char* fmt, ...);
|
||||
void OSReport(const char* fmt, ...);
|
||||
void OSReport_Error(const char* fmt, ...);
|
||||
void OSReport_FatalError(const char* fmt, ...);
|
||||
void OSReport_System(const char* fmt, ...);
|
||||
void OSReport_Warning(const char* fmt, ...);
|
||||
void OSReportDisable(void);
|
||||
void OSReportEnable(void);
|
||||
void OSReportForceEnableOff(void);
|
||||
|
||||
Reference in New Issue
Block a user