aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/hugo/hugo_types.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-05-11 19:20:40 +1000
committerPaul Gilbert2019-05-12 10:19:48 +1000
commit6b6670caf9812a980a9aa4049bf6931aa943b79b (patch)
treecdd84119c95fcda75a385f8e3e14844392c58ca4 /engines/glk/hugo/hugo_types.h
parent98f6315366eafc0568d46ee4d9cba8d0d6495950 (diff)
downloadscummvm-rg350-6b6670caf9812a980a9aa4049bf6931aa943b79b.tar.gz
scummvm-rg350-6b6670caf9812a980a9aa4049bf6931aa943b79b.tar.bz2
scummvm-rg350-6b6670caf9812a980a9aa4049bf6931aa943b79b.zip
GLK: HUGO: Added hemedia & heres
Diffstat (limited to 'engines/glk/hugo/hugo_types.h')
-rw-r--r--engines/glk/hugo/hugo_types.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/engines/glk/hugo/hugo_types.h b/engines/glk/hugo/hugo_types.h
index fcdaa8ed27..a6d9658258 100644
--- a/engines/glk/hugo/hugo_types.h
+++ b/engines/glk/hugo/hugo_types.h
@@ -90,6 +90,19 @@ enum ERROR_TYPE {
DIVIDE_E ///< divide by zero
};
+enum RESOURCE_TYPE {
+ JPEG_R, ///< JPEG image
+ WAVE_R, ///< RIFF WAVE audio sample
+ MOD_R, ///< MOD music module
+ S3M_R, ///< S3M music module
+ XM_R, ///< XM music module
+ MIDI_R, ///< MIDI music
+ MP3_R, ///< MP3 audio layer
+ AVI_R, ///< Video for Windows
+ MPEG_R, ///< MPEG video
+ UNKNOWN_R
+};
+
/**
* A structure used for disambiguation in MatchObject()
*/