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   vmcfgmem.cpp - T3 VM Configuration - in-memory (non-swapping) memory manager
15 Function
16 
17 Notes
18 
19 Modified
20   10/08/99 MJRoberts  - Creation
21 */
22 
23 #include "vminit.h"
24 #include "vmglob.h"
25 
26 /*
27  *   initialize
28  */
vm_initialize(struct vm_globals ** vmg,class CVmHostIfc * hostifc,class CVmMainClientIfc * clientifc,const char * charset)29 void vm_initialize(struct vm_globals **vmg, class CVmHostIfc *hostifc,
30                    class CVmMainClientIfc *clientifc,
31                    const char *charset)
32 {
33     vm_init_in_mem(vmg, hostifc, clientifc, charset);
34 }
35 
36