aboutsummaryrefslogtreecommitdiff
path: root/engines/director/util.h
diff options
context:
space:
mode:
authorEugene Sandulenko2017-02-25 21:40:29 +0100
committerEugene Sandulenko2017-02-25 21:44:01 +0100
commit27a0f433338726dd486c5c8be0ad60ba587aeaa1 (patch)
tree17ebef213b16b1f15f71c7a195be15e59e8c2f43 /engines/director/util.h
parent16d21cd0ff7fa200664fb75b915da015cccc8a48 (diff)
downloadscummvm-rg350-27a0f433338726dd486c5c8be0ad60ba587aeaa1.tar.gz
scummvm-rg350-27a0f433338726dd486c5c8be0ad60ba587aeaa1.tar.bz2
scummvm-rg350-27a0f433338726dd486c5c8be0ad60ba587aeaa1.zip
DIRECTOR: Move utility functions to util.cpp
Diffstat (limited to 'engines/director/util.h')
-rw-r--r--engines/director/util.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/engines/director/util.h b/engines/director/util.h
new file mode 100644
index 0000000000..66f8074cfe
--- /dev/null
+++ b/engines/director/util.h
@@ -0,0 +1,39 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef DIRECTOR_UTIL_H
+#define DIRECTOR_UTIL_H
+
+namespace Common {
+class String;
+}
+
+namespace Director {
+
+int castNumToNum(const char *str);
+char *numToCastNum(int num);
+
+Common::String *toLowercaseMac(Common::String *s);
+
+} // End of namespace Director
+
+#endif