lib3ddevil1/include/devil1pld.h

24 lines
516 B
C

#ifndef DEVIL1PLD_H
#define DEVIL1PLD_H
#include <stdint.h>
#include <stdbool.h>
#pragma pack(push, 1)
struct PldHeader {
int32_t numOffset;
// array of numOffset elements
uint32_t *offsets; // <format=hex>
};
#pragma pack(pop)
// input: pointer to a struct, contents of the .pld file.
// * = pass by reference of a struct PldHeader
bool getpldh(struct PldHeader*, const char*);
// input: a pld header struct.
// * = pass by reference of a struct PldHeader
void printpldh(struct PldHeader*);
#endif