mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 18:04:50 -05:00
Co-authored-by: Hedara <hedara90@gmail.com> Co-authored-by: DizzyEggg Co-authored-by: Raymond Dodge <git@rayrobdod.name>
16 lines
361 B
C
16 lines
361 B
C
#ifndef GUARD_DECOMPRESS_ERROR_HANDLER_H
|
|
#define GUARD_DECOMPRESS_ERROR_HANDLER_H
|
|
|
|
#include "gba/types.h"
|
|
|
|
enum CompressionError {
|
|
NO_COMPRESSION_ERROR,
|
|
HEADER_ERROR,
|
|
};
|
|
|
|
void DoDecompressionError(void);
|
|
void DecompressionError_CB2(void);
|
|
void DecompressionError(const u32 *src, enum CompressionError error);
|
|
|
|
#endif // GUARD_DECOMPRESS_ERROR_HANDLER_H
|