diff options
Diffstat (limited to 'include/hilbert/syscall.hpp')
-rw-r--r-- | include/hilbert/syscall.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/hilbert/syscall.hpp b/include/hilbert/syscall.hpp new file mode 100644 index 0000000..0e430d1 --- /dev/null +++ b/include/hilbert/syscall.hpp @@ -0,0 +1,24 @@ +#ifndef HILBERT_SYSCALL_HPP +#define HILBERT_SYSCALL_HPP + +#include <cstdint> + +namespace hilbert::syscall { + + typedef uint32_t encoded_color; + + struct [[gnu::packed]] color { + uint8_t r; + uint8_t g; + uint8_t b; + }; + + extern "C" encoded_color encode_color(color c); + + extern "C" void get_framebuffer(encoded_color *&framebuffer_out, + uint32_t &width_out, uint32_t &height_out, uint32_t &pitch_out + ); + +} + +#endif |