diff options
author | Martin Kiewitz | 2010-07-13 18:11:50 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-13 18:11:50 +0000 |
commit | 44626efdce1856a0986a223d0ef0e9dda209f180 (patch) | |
tree | dfa779ca85b6f31a8d498c85d9c57db71d03933a | |
parent | 8171093614c16db6284a53ce00700aeb115419b4 (diff) | |
download | scummvm-rg350-44626efdce1856a0986a223d0ef0e9dda209f180.tar.gz scummvm-rg350-44626efdce1856a0986a223d0ef0e9dda209f180.tar.bz2 scummvm-rg350-44626efdce1856a0986a223d0ef0e9dda209f180.zip |
SCI: removing old kernel signature stuff
svn-id: r50848
-rw-r--r-- | engines/sci/engine/kernel.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp index beb1d3ce35..296f7556e8 100644 --- a/engines/sci/engine/kernel.cpp +++ b/engines/sci/engine/kernel.cpp @@ -33,26 +33,6 @@ namespace Sci { -// Uncompiled kernel signatures are formed from a string of letters. -// each corresponding to a type of a parameter (see below). -// Use small letters to indicate end of sum type. -// Use capital letters for sum types, e.g. -// "LNoLr" for a function which takes two arguments: -// (1) list, node or object -// (2) list or ref -#define KSIG_SPEC_LIST 'l' -#define KSIG_SPEC_NODE 'n' -#define KSIG_SPEC_OBJECT 'o' -#define KSIG_SPEC_REF 'r' // Said Specs and strings -#define KSIG_SPEC_ARITHMETIC 'i' -#define KSIG_SPEC_NULL 'z' -#define KSIG_SPEC_ANY '.' -#define KSIG_SPEC_ELLIPSIS '*' // Arbitrarily more TYPED arguments - -#define KSIG_SPEC_SUM_DONE ('a' - 'A') - - - /** Default kernel name table. */ static const char *s_defaultKernelNames[] = { /*0x00*/ "Load", |