diff options
author | Benji Dial <benji@benjidial.net> | 2024-01-20 17:59:40 -0500 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-01-20 17:59:40 -0500 |
commit | 7199e74aa22e592a3b77bdd81f735edca5470596 (patch) | |
tree | 66e935372acc5d6e013f764965f2a9d81814f809 /include/hilbert/syscall.hpp | |
parent | 53135e2592c21cb9b2609bf95242aaf1f19233da (diff) | |
download | hilbert-os-7199e74aa22e592a3b77bdd81f735edca5470596.tar.gz |
update
Diffstat (limited to 'include/hilbert/syscall.hpp')
-rw-r--r-- | include/hilbert/syscall.hpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/include/hilbert/syscall.hpp b/include/hilbert/syscall.hpp deleted file mode 100644 index 0e430d1..0000000 --- a/include/hilbert/syscall.hpp +++ /dev/null @@ -1,24 +0,0 @@ -#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 |