aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/expr.h
diff options
context:
space:
mode:
authorStrangerke2012-09-01 00:25:35 +0200
committerStrangerke2012-09-01 00:25:35 +0200
commitf2df769aab10e719cc4fba6cb71e1500eb3acae4 (patch)
tree6e1d574e9fe484639612f350e47f125740fbaf80 /engines/tony/mpal/expr.h
parent7fbfbc8e6b57729e1a5008d256b28b0571f1c3b6 (diff)
downloadscummvm-rg350-f2df769aab10e719cc4fba6cb71e1500eb3acae4.tar.gz
scummvm-rg350-f2df769aab10e719cc4fba6cb71e1500eb3acae4.tar.bz2
scummvm-rg350-f2df769aab10e719cc4fba6cb71e1500eb3acae4.zip
TONY: More renaming
Diffstat (limited to 'engines/tony/mpal/expr.h')
-rw-r--r--engines/tony/mpal/expr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tony/mpal/expr.h b/engines/tony/mpal/expr.h
index f9c8a7c48f..9036099993 100644
--- a/engines/tony/mpal/expr.h
+++ b/engines/tony/mpal/expr.h
@@ -47,7 +47,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, MpalHandle *h);
/**
* Calculate the value of a mathamatical expression
@@ -55,7 +55,7 @@ const byte *parseExpression(const byte *lpBuf, HGLOBAL *h);
* @param h Handle to the expression
* @returns Numeric value
*/
-int evaluateExpression(HGLOBAL h);
+int evaluateExpression(MpalHandle h);
/**
* Compare two mathematical expressions together
@@ -63,14 +63,14 @@ int evaluateExpression(HGLOBAL h);
* @param h1 Expression to be compared
* @param h2 Expression to be compared
*/
-bool compareExpressions(HGLOBAL h1, HGLOBAL h2);
+bool compareExpressions(MpalHandle h1, MpalHandle h2);
/**
* Frees an expression that was previously parsed
*
* @param h Handle for the expression
*/
-void freeExpression(HGLOBAL h);
+void freeExpression(MpalHandle h);
} // end of namespace MPAL