aboutsummaryrefslogtreecommitdiff
path: root/tools/create_hugo/create_hugo.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-08-27 22:13:30 +0000
committerJohannes Schickel2010-08-27 22:13:30 +0000
commit065087220319096fd7a527218270544cf701975d (patch)
treeb67035fbebf3072ea92e3378a6d7d34e68d13fb6 /tools/create_hugo/create_hugo.h
parentc4db714e3569f0b0dc77a834ea885450192249af (diff)
downloadscummvm-rg350-065087220319096fd7a527218270544cf701975d.tar.gz
scummvm-rg350-065087220319096fd7a527218270544cf701975d.tar.bz2
scummvm-rg350-065087220319096fd7a527218270544cf701975d.zip
HUGO: Silence some const cast warnings in create_hugo.
svn-id: r52415
Diffstat (limited to 'tools/create_hugo/create_hugo.h')
-rwxr-xr-xtools/create_hugo/create_hugo.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/create_hugo/create_hugo.h b/tools/create_hugo/create_hugo.h
index 47f50c96f5..8a8a5a9e27 100755
--- a/tools/create_hugo/create_hugo.h
+++ b/tools/create_hugo/create_hugo.h
@@ -542,14 +542,14 @@ union act {
typedef void *actListPtr; // Ptr to a list of actions
typedef actListPtr *actList; // A list of actions
-void writeTextArray(FILE *outFile, char *textData[], int nbrText);
-void writeUint16Array(FILE *outFile, uint16 *uint16Array[], int nbrElem);
-void writeHotspot(FILE *outFile, hotspot_t hotspots[], int nbrElem);
-void writeUseArray(FILE *outFile, uses_t uses[], int nbrElem);
-void writeBackgroundArray(FILE *outFile, background_t background[], int nbrElem);
-void writeCmdArray(FILE *outFile, cmd *cmdList[], int nbrElem);
-void writeScreenActs(FILE *outFile, uint16 *screenActs[], int nbrElem);
-void writeObjectArray(FILE *outFile, object_t objects[], int nbrElem);
-void writeActListArray(FILE *outFile, actList actListArr[], int nbrElem);
+void writeTextArray(FILE *outFile, const char *textData[], int nbrText);
+void writeUint16Array(FILE *outFile, const uint16 *uint16Array[], int nbrElem);
+void writeHotspot(FILE *outFile, const hotspot_t hotspots[], int nbrElem);
+void writeUseArray(FILE *outFile, const uses_t uses[], int nbrElem);
+void writeBackgroundArray(FILE *outFile, const background_t background[], int nbrElem);
+void writeCmdArray(FILE *outFile, const cmd *cmdList[], int nbrElem);
+void writeScreenActs(FILE *outFile, const uint16 *screenActs[], int nbrElem);
+void writeObjectArray(FILE *outFile, const object_t objects[], int nbrElem);
+void writeActListArray(FILE *outFile, const actList actListArr[], int nbrElem);
#endif // CREATE_HUGO_H