aboutsummaryrefslogtreecommitdiff
path: root/saga/sys_interface.h
diff options
context:
space:
mode:
authorEugene Sandulenko2004-04-12 21:40:49 +0000
committerEugene Sandulenko2004-04-12 21:40:49 +0000
commitf3d340fb0ce72b9db59b8c701153bc82b595f75e (patch)
treebf250cf3a1e6aee35c7f40d766994b0c2c188e5c /saga/sys_interface.h
parent0a0a0c7b0609d8774cef849e7511e7b21d12c5db (diff)
downloadscummvm-rg350-f3d340fb0ce72b9db59b8c701153bc82b595f75e.tar.gz
scummvm-rg350-f3d340fb0ce72b9db59b8c701153bc82b595f75e.tar.bz2
scummvm-rg350-f3d340fb0ce72b9db59b8c701153bc82b595f75e.zip
WIP for SAGA engine.
o text formatting is not consistent with rules, just indent utility is too dumb for that o it does not use OSystem, i.e. it runs on direct SDL calls o it may not even compile on your box o if you enable it, expect zillions of warnings o no sound Now it runs ITE intro as reinherit did svn-id: r13564
Diffstat (limited to 'saga/sys_interface.h')
-rw-r--r--saga/sys_interface.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/saga/sys_interface.h b/saga/sys_interface.h
new file mode 100644
index 0000000000..51391ccbdd
--- /dev/null
+++ b/saga/sys_interface.h
@@ -0,0 +1,49 @@
+/****************************************************************************\
+ ____ ___ _ _ _
+| _ \ ___|_ _|_ __ | |__ ___ _ __(_) |_
+| |_) / _ \| || '_ \| '_ \ / _ \ '__| | __|
+| _ < __/| || | | | | | | __/ | | | |_
+|_| \_\___|___|_| |_|_| |_|\___|_| |_|\__|
+
+ ----------------------------------------------------------------------------
+ Project: ReInherit Engine
+ Version: .1a
+
+ The ReInherit Engine is (C)2000-2001 by Daniel Balsom
+ This code is subject to the terms and conditions of the General Public
+ License (GPL).
+
+ ----------------------------------------------------------------------------
+
+ File: sys_interface.h
+ Revision: $Revision$
+
+ Description:
+
+ (Linux) System-specific interface data
+
+ Notes:
+
+\****************************************************************************/
+#ifndef REINHERIT_SYSINTERFACE_H
+#define REINHERIT_SYSINTERFACE_H
+
+namespace Saga {
+
+#define BYTE unsigned char
+#define WORD unsigned short
+#define DWORD unsigned int
+
+#define R_CFGFILE_NAME ".reinheritrc"
+
+#define R_DIRECTORY_SEP '/'
+
+#define R_STDOUT stdout
+#define R_STDERR stderr
+
+#define R_printf fprintf
+#define R_vprintf vfprintf
+
+} // End of namespace Saga
+
+#endif /* REINHERIT_SYSTYPES_H */