mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-10 21:08:16 -05:00
12 lines
312 B
C
12 lines
312 B
C
#ifndef COMPRESS_H
|
|
#define COMPRESS_H
|
|
|
|
#include <stdbool.h>
|
|
#include "component.h"
|
|
|
|
bool CompressOverlayModules(Component *component);
|
|
bool CompressStaticModule(Component *component, int headerSize);
|
|
bool CalculateHMAC_OverlayModules(Component *component, int digestType, char *digestKey);
|
|
|
|
#endif // COMPRESS_H
|