add support to SDLBackend for rendering 24bit data
[openc2e.git] / caosVM_ser_stub.cpp
blob8a634e775c46604a5bc4c22b6d71df69244bdd7b
1 /*
2 * caosVM_ser_stub.cpp
3 * openc2e
5 * Created by Bryan Donlan on Sun 21 May 2006
6 * Copyright (c) 2006 Bryan Donlan. All rights reserved.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
20 #include "caosVM.h"
22 /**
23 * SERS MAPP (command) filename (string)
24 * %status maybe
26 * Saves the map to the specified file.
29 void caosVM::c_SERS_MAPP() {
30 VM_PARAM_STRING(filename)
31 STUB;
34 /**
35 * SERL MAPP (command) filename (string)
36 * %status maybe
38 * Loads the map from the specified file
40 * May explode if anything at all exists.
42 void caosVM::c_SERL_MAPP() {
43 VM_PARAM_STRING(filename)
44 STUB;
47 /**
48 * SERS SCRP (command) filename (string)
49 * %status maybe
51 * Saves the scriptorium to the specified file
53 void caosVM::c_SERS_SCRP() {
54 VM_PARAM_STRING(filename)
55 STUB;
58 /**
59 * SERL SCRP (command) filename (string)
60 * %status maybe
62 * Loads the scriptorium from the specified file
64 void caosVM::c_SERL_SCRP() {
65 VM_PARAM_STRING(filename)
66 STUB;