we can now load elf and imgui.

This commit is contained in:
georgemoralis 2023-05-02 18:22:19 +03:00
parent 7a996cbfc8
commit f35f7b62cd
8 changed files with 926 additions and 3 deletions

14
src/types.h Normal file
View file

@ -0,0 +1,14 @@
#pragma once
using s08 = char;
using s16 = short;
using s32 = int;
using s64 = long long;
using u08 = unsigned char;
using u16 = unsigned short;
using u32 = unsigned int;
using u64 = unsigned long long;
using f32 = float;
using f64 = double;