aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/expr.h
diff options
context:
space:
mode:
authorStrangerke2012-06-07 21:14:59 +0200
committerStrangerke2012-06-07 21:14:59 +0200
commitcd15e483ed64274049142a2e6838962d794c3ff5 (patch)
tree33a1487e084aa4066a648fe46d599dc95d458f7c /engines/tony/mpal/expr.h
parenta7a619e1b41b771726b6fb611ddb640e38a78185 (diff)
downloadscummvm-rg350-cd15e483ed64274049142a2e6838962d794c3ff5.tar.gz
scummvm-rg350-cd15e483ed64274049142a2e6838962d794c3ff5.tar.bz2
scummvm-rg350-cd15e483ed64274049142a2e6838962d794c3ff5.zip
TONY: Some more renaming
Diffstat (limited to 'engines/tony/mpal/expr.h')
-rw-r--r--engines/tony/mpal/expr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tony/mpal/expr.h b/engines/tony/mpal/expr.h
index 17e9c1264b..7d33e5c8ca 100644
--- a/engines/tony/mpal/expr.h
+++ b/engines/tony/mpal/expr.h
@@ -45,7 +45,7 @@ namespace MPAL {
* will point to the area of memory containing the parsed expression
* @returns Pointer to the buffer immediately after the expression, or NULL if error.
*/
-const byte *ParseExpression(const byte *lpBuf, HGLOBAL *h);
+const byte *parseExpression(const byte *lpBuf, HGLOBAL *h);
/**
* Calculate the value of a mathamatical expression
@@ -53,7 +53,7 @@ const byte *ParseExpression(const byte *lpBuf, HGLOBAL *h);
* @param h Handle to the expression
* @returns Numeric value
*/
-int EvaluateExpression(HGLOBAL h);
+int evaluateExpression(HGLOBAL h);
/**
* Compare two mathematical expressions together
@@ -61,7 +61,7 @@ int EvaluateExpression(HGLOBAL h);
* @param h1 Expression to be compared
* @param h2 Expression to be compared
*/
-bool CompareExpressions(HGLOBAL h1, HGLOBAL h2);
+bool compareExpressions(HGLOBAL h1, HGLOBAL h2);
} // end of namespace MPAL