blob: 2fd0285ea01b2cdc4a890ddc1661c206cbb09dad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* ScummVM - Scumm Interpreter
* Copyright (C) 2002-2004 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*
*/
#ifndef CHUNK_TYPE_H
#define CHUNK_TYPE_H
#include "common/scummsys.h"
#include "scumm/smush/chunk.h"
namespace Scumm {
static const Chunk::type TYPE_ANIM = 'ANIM';
static const Chunk::type TYPE_AHDR = 'AHDR';
static const Chunk::type TYPE_FRME = 'FRME';
static const Chunk::type TYPE_NPAL = 'NPAL';
static const Chunk::type TYPE_FOBJ = 'FOBJ';
static const Chunk::type TYPE_ZFOB = 'ZFOB';
static const Chunk::type TYPE_PSAD = 'PSAD';
static const Chunk::type TYPE_TRES = 'TRES';
static const Chunk::type TYPE_XPAL = 'XPAL';
static const Chunk::type TYPE_IACT = 'IACT';
static const Chunk::type TYPE_STOR = 'STOR';
static const Chunk::type TYPE_FTCH = 'FTCH';
static const Chunk::type TYPE_SKIP = 'SKIP';
static const Chunk::type TYPE_STRK = 'STRK';
static const Chunk::type TYPE_SMRK = 'SMRK';
static const Chunk::type TYPE_SHDR = 'SHDR';
static const Chunk::type TYPE_SDAT = 'SDAT';
static const Chunk::type TYPE_SAUD = 'SAUD';
static const Chunk::type TYPE_iMUS = 'iMUS';
static const Chunk::type TYPE_FRMT = 'FRMT';
static const Chunk::type TYPE_TEXT = 'TEXT';
static const Chunk::type TYPE_REGN = 'REGN';
static const Chunk::type TYPE_STOP = 'STOP';
static const Chunk::type TYPE_MAP_ = 'MAP ';
static const Chunk::type TYPE_DATA = 'DATA';
static const Chunk::type TYPE_ETRS = 'ETRS';
} // End of namespace Scumm
#endif
|