aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/imuse_digi/dimuse_bndmgr.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2007-06-01 12:18:33 +0000
committerPaweł Kołodziejski2007-06-01 12:18:33 +0000
commit1a915d076c92e490844b99c4251deab881627591 (patch)
tree7dc1f4092b1d8e9db144ffe52c06f6466245376d /engines/scumm/imuse_digi/dimuse_bndmgr.h
parent75e3c7d4c5d062b54c6cd1de57684708a79eed9c (diff)
downloadscummvm-rg350-1a915d076c92e490844b99c4251deab881627591.tar.gz
scummvm-rg350-1a915d076c92e490844b99c4251deab881627591.tar.bz2
scummvm-rg350-1a915d076c92e490844b99c4251deab881627591.zip
cleanup names
svn-id: r27041
Diffstat (limited to 'engines/scumm/imuse_digi/dimuse_bndmgr.h')
-rw-r--r--engines/scumm/imuse_digi/dimuse_bndmgr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_bndmgr.h b/engines/scumm/imuse_digi/dimuse_bndmgr.h
index a23bb462d4..65360d8ba4 100644
--- a/engines/scumm/imuse_digi/dimuse_bndmgr.h
+++ b/engines/scumm/imuse_digi/dimuse_bndmgr.h
@@ -99,19 +99,19 @@ public:
BundleMgr(BundleDirCache *_cache);
~BundleMgr();
- bool open(const char *filename, bool &compressed, bool errorFlag=false);
+ bool open(const char *filename, bool &compressed, bool errorFlag = false);
void close();
Common::File *getFile(const char *filename, int32 &offset, int32 &size);
- int32 decompressSampleByName(const char *name, int32 offset, int32 size, byte **comp_final, bool header_outside);
- int32 decompressSampleByIndex(int32 index, int32 offset, int32 size, byte **comp_final, int header_size, bool header_outside);
- int32 decompressSampleByCurIndex(int32 offset, int32 size, byte **comp_final, int header_size, bool header_outside);
+ int32 decompressSampleByName(const char *name, int32 offset, int32 size, byte **compFinal, bool headerOutside);
+ int32 decompressSampleByIndex(int32 index, int32 offset, int32 size, byte **compFinal, int header_size, bool headerOutside);
+ int32 decompressSampleByCurIndex(int32 offset, int32 size, byte **compFinal, int headerSize, bool headerOutside);
};
namespace BundleCodecs {
uint32 decode12BitsSample(const byte *src, byte **dst, uint32 size);
void initializeImcTables();
-int32 decompressCodec(int32 codec, byte *comp_input, byte *comp_output, int32 input_size);
+int32 decompressCodec(int32 codec, byte *compInput, byte *compOutput, int32 inputSize);
} // End of namespace BundleCodecs