1 #ifdef RCSID
2 static char RCSid[] =
3 "$Header$";
4 #endif
5 
6 /*
7  *   Copyright (c) 1999, 2002 Michael J. Roberts.  All Rights Reserved.
8  *
9  *   Please see the accompanying license file, LICENSE.TXT, for information
10  *   on using and copying this software.
11  */
12 /*
13 Name
14   vmcfgsw.cpp - T3 VM Configuration - Swapping memory manager
15 Function
16 
17 Notes
18 
19 Modified
20   10/08/99 MJRoberts  - Creation
21 */
22 
23 #error THIS FILE IS DEPRECATED - please replace vmcfgsw.cpp with \
24 vmcfgmem.cpp in your makefile or equivalent
25 
26 #include "vminit.h"
27 
28 /*
29  *   initialize
30  */
vm_initialize(struct vm_globals ** vmg,class CVmHostIfc * hostifc,class CVmMainClientIfc * clientifc,const char * charset)31 void vm_initialize(struct vm_globals **vmg, class CVmHostIfc *hostifc,
32                    class CVmMainClientIfc *clientifc,
33                    const char *charset)
34 {
35     vm_init_swap(vmg, 10, hostifc, clientifc, charset);
36 }
37 
38