15 lines
300 B
C
15 lines
300 B
C
#ifndef UBERARCHIVE_H_
|
|
#define UBERARCHIVE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern "C" {
|
|
extern const uint8_t UBERARCHIVE_PACKAGE[];
|
|
}
|
|
|
|
#define UBERARCHIVE_DEFAULT_OFFSET 0
|
|
#define UBERARCHIVE_DEFAULT_SIZE 78061
|
|
#define UBERARCHIVE_DEFAULT_DATA (UBERARCHIVE_PACKAGE + UBERARCHIVE_DEFAULT_OFFSET)
|
|
|
|
#endif
|