Rearange menu of mpegplayer. Add new menu with "settings" and "quit", and remove...
[kugel-rb.git] / apps / plugins / zxbox / snapshot.h
blobe5b6dbfd04b4372bffb848ba3a0f79b790313c96
1 /*
2 * Copyright (C) 1996-1998 Szeredi Miklos
3 * Email: mszeredi@inf.bme.hu
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version. See the file COPYING.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #ifndef SNAPSHOT_H
22 #define SNAPSHOT_H
24 #define SN_SNA 0
25 #define SN_Z80 1
27 extern void save_snapshot_file(char *snsh_name);
28 extern void load_snapshot_file_type(char *snsh_name, int type);
29 extern void snsh_z80_load_intern(unsigned char *p, unsigned len);
31 extern void save_snapshot(void);
32 extern void load_snapshot(void);
34 extern void save_quick_snapshot(void);
35 extern void load_quick_snapshot(void);
37 #endif /* SNAPSHOT_H */