diff options
author | Oystein Eftevaag | 2009-02-21 10:23:36 +0000 |
---|---|---|
committer | Oystein Eftevaag | 2009-02-21 10:23:36 +0000 |
commit | 25f7c371718f74eb26fed5bd66a803f220c89c3b (patch) | |
tree | e78250ba07d5d28ffecf1621421ab33061edf1e4 /engines/sci/include/sfx_player.h | |
parent | 44ea7966108cf56df4a4eb3fd0b2b7df31d937e1 (diff) | |
download | scummvm-rg350-25f7c371718f74eb26fed5bd66a803f220c89c3b.tar.gz scummvm-rg350-25f7c371718f74eb26fed5bd66a803f220c89c3b.tar.bz2 scummvm-rg350-25f7c371718f74eb26fed5bd66a803f220c89c3b.zip |
Wrapped the SCI engine in the Sci namespace.
svn-id: r38676
Diffstat (limited to 'engines/sci/include/sfx_player.h')
-rw-r--r-- | engines/sci/include/sfx_player.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/sci/include/sfx_player.h b/engines/sci/include/sfx_player.h index 526d8b46d6..a9b59582f8 100644 --- a/engines/sci/include/sfx_player.h +++ b/engines/sci/include/sfx_player.h @@ -25,12 +25,14 @@ /* song player structure */ +#ifndef _SFX_PLAYER_H +#define _SFX_PLAYER_H + #include "sci/include/sfx_engine.h" #include "sci/include/sfx_iterator.h" #include "sci/include/sciresource.h" -#ifndef _SFX_PLAYER_H -#define _SFX_PLAYER_H +namespace Sci { typedef void tell_synth_func(int buf_nr, byte *buf); @@ -162,4 +164,6 @@ sfx_iterator_combine(song_iterator_t *it1, song_iterator_t *it2); ** call should be used by song players, but not by the core sound system */ +} // End of namespace Sci + #endif /* !_SFX_PLAYER_H */ |