mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 23:35:13 -04:00
dc221b4795
* EGG: Archive, DvdFile, DvdRipper * start eggStream * FrmHeap and AssertHeap OK * progress on EggController * port in WPAD stuff * update WPAD/WUD/KPAD/SC symbols * eggController OK * bytematch more CoreController virtual funcs * eggDecomp/eggStreamDecomp Ok * eggDvdRipper OK * EGG gfx splits * Finished Splitting EGG * create egg Files * eggDecomp.h -> eggStreamDecomp.h * Revert some format changes
26 lines
530 B
C++
26 lines
530 B
C++
#ifndef EGG_BINARY_H
|
|
#define EGG_BINARY_H
|
|
|
|
#include <common.h>
|
|
|
|
template <class T>
|
|
class IBinary {
|
|
public:
|
|
class Bin {};
|
|
virtual void SetBinaryInner(Bin &) = 0;
|
|
virtual void GetBinaryInner(Bin *) const = 0;
|
|
virtual size_t GetBinarySize() = 0;
|
|
virtual void SetBinaryInner(const Bin &, const Bin &, f32) = 0;
|
|
|
|
static const char *GetBinaryType();
|
|
int GetVersion();
|
|
|
|
void GetBinary(void *) const;
|
|
|
|
void SetBinary(const void *);
|
|
|
|
void SetBinaryBlend(const void *, const void *, f32);
|
|
};
|
|
|
|
#endif
|