make some stuff private

svn-id: r8161
This commit is contained in:
Max Horn 2003-05-31 00:02:59 +00:00
parent 41ca372ef3
commit e2ffbc1f8f
2 changed files with 9 additions and 5 deletions

View File

@ -144,7 +144,7 @@ void bompApplyShadow1(const byte *shadowPalette, const byte *line_buffer, byte *
byte tmp = *line_buffer++;
if (tmp != transparency) {
if (tmp == 13) {
tmp = shadowPalette[*(dst)];
tmp = shadowPalette[*dst];
}
*dst = tmp;
}

View File

@ -54,23 +54,27 @@ private:
File _voiceFile;
File _musicFile;
void initializeImcTables();
int32 compDecode(byte *src, byte *dst);
int32 decompressCodec(int32 codec, byte *comp_input, byte *comp_output, int32 size);
int32 decompressVoiceSampleByIndex(int32 index, byte **comp_final);
int32 decompressMusicSampleByIndex(int32 index, int32 number, byte *comp_final);
int32 getNumberOfMusicSamplesByIndex(int32 index);
public:
Bundle();
~Bundle();
void initializeImcTables();
bool openVoiceFile(const char *filename, const char *directory);
bool openMusicFile(const char *filename, const char *directory);
void closeVoiceFile();
void closeMusicFile();
int32 decompressVoiceSampleByName(const char *name, byte **comp_final);
int32 decompressVoiceSampleByIndex(int32 index, byte **comp_final);
int32 decompressMusicSampleByName(const char *name, int32 number, byte *comp_final);
int32 decompressMusicSampleByIndex(int32 index, int32 number, byte *comp_final);
int32 getNumberOfMusicSamplesByIndex(int32 index);
int32 getNumberOfMusicSamplesByName(const char *name);
};