aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/general.h
diff options
context:
space:
mode:
authorStrangerke2011-07-25 17:50:58 +0200
committerStrangerke2011-07-25 17:50:58 +0200
commit2e5a041046f69378da87fb8cab805fdee31a01e2 (patch)
tree8b8585da8897dc7b251f92982e75764052ad361c /engines/cge/general.h
parentcf619196484d7edc11dc6908ab81ebafcb65405f (diff)
downloadscummvm-rg350-2e5a041046f69378da87fb8cab805fdee31a01e2.tar.gz
scummvm-rg350-2e5a041046f69378da87fb8cab805fdee31a01e2.tar.bz2
scummvm-rg350-2e5a041046f69378da87fb8cab805fdee31a01e2.zip
CGE: Remove EMM and EMS classes
Diffstat (limited to 'engines/cge/general.h')
-rw-r--r--engines/cge/general.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/engines/cge/general.h b/engines/cge/general.h
index 63d43c4403..e340c962bd 100644
--- a/engines/cge/general.h
+++ b/engines/cge/general.h
@@ -58,40 +58,6 @@ public:
~Engine_();
};
-
-class Ems;
-
-
-class Emm {
- friend class Ems;
- bool test();
-
- long _top;
- long _lim;
- Ems *_list;
- int _han;
- static void *_frame;
-public:
- Emm(long size);
- ~Emm();
- Ems *alloc(uint16 siz);
- void release();
-};
-
-
-class Ems {
- friend class Emm;
- Emm *_emm;
- long _ptr;
- uint16 _size;
- Ems *_next;
-public:
- Ems();
- void *operator & () const;
- uint16 size();
-};
-
-
template <class T>
void swap(T &A, T &B) {
T a = A;