aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/dcscript.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-09 01:23:20 +0200
committerEinar Johan Trøan Sømåen2012-07-09 01:23:20 +0200
commitc4fac37bd0035ac19ab0279941d4f1a2eb118409 (patch)
tree826a8cc40626c229c6358c8801eff8d34eefc944 /engines/wintermute/dcscript.h
parenta77ab4be6d35ac035540e94fddb3aac1ba63187d (diff)
downloadscummvm-rg350-c4fac37bd0035ac19ab0279941d4f1a2eb118409.tar.gz
scummvm-rg350-c4fac37bd0035ac19ab0279941d4f1a2eb118409.tar.bz2
scummvm-rg350-c4fac37bd0035ac19ab0279941d4f1a2eb118409.zip
WINTERMUTE: Start removing useless Windows-only code, and the compiler-references.
Diffstat (limited to 'engines/wintermute/dcscript.h')
-rw-r--r--engines/wintermute/dcscript.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/dcscript.h b/engines/wintermute/dcscript.h
index a4a608da46..7969e049b0 100644
--- a/engines/wintermute/dcscript.h
+++ b/engines/wintermute/dcscript.h
@@ -139,10 +139,10 @@ typedef enum {
// compiler interface
-typedef byte *(WINAPI DLL_LOAD_FILE)(void *Data, char *Filename, uint32 *Size);
-typedef void (WINAPI DLL_CLOSE_FILE)(void *Data, byte *Buffer);
-typedef void (WINAPI DLL_ADD_ERROR)(void *Data, int Line, char *Text);
-typedef void (WINAPI DLL_PARSE_ELEMENT)(void *Data, int Line, int Type, void *ElementData);
+typedef byte *(DLL_LOAD_FILE)(void *data, char *filename, uint32 *size);
+typedef void (DLL_CLOSE_FILE)(void *data, byte *buffer);
+typedef void (DLL_ADD_ERROR)(void *data, int line, char *text);
+typedef void (DLL_PARSE_ELEMENT)(void *data, int line, int type, void *elementData);
typedef struct {
DLL_LOAD_FILE *Dll_LoadFile;