mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-13 15:21:04 +01:00
12 lines
507 B
C
12 lines
507 B
C
#ifndef _UBI_BAO_STREAMFILE_H_
|
|
#define _UBI_BAO_STREAMFILE_H_
|
|
|
|
//todo fix dupe code, but would be nice to keep it all in separate compilation units
|
|
#include "ubi_sb_streamfile.h"
|
|
|
|
static STREAMFILE* setup_ubi_bao_streamfile(STREAMFILE *streamFile, off_t stream_offset, size_t stream_size, int layer_number, int layer_count, int big_endian) {
|
|
return setup_ubi_sb_streamfile(streamFile, stream_offset, stream_size, layer_number, layer_count, big_endian);
|
|
}
|
|
|
|
#endif /* _UBI_BAO_STREAMFILE_H_ */
|