13 lines
361 B
C++
13 lines
361 B
C++
#ifndef __JABYENGINE_OVERLAY__HPP__
|
|
#define __JABYENGINE_OVERLAY__HPP__
|
|
#include "../AutoLBA/auto_lba.hpp"
|
|
|
|
namespace JabyEngine {
|
|
struct __attribute__((packed)) OverlayHeader {
|
|
void (*execute)();
|
|
uint16_t lba_size; //< The size of the OverlayLBA section
|
|
};
|
|
|
|
typedef AutoLBAEntry OverlayLBA;
|
|
}
|
|
#endif //!__JABYENGINE_OVERLAY__HPP__
|