mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-19 09:54:54 +00:00
we can now load elf and imgui.
This commit is contained in:
parent
7a996cbfc8
commit
f35f7b62cd
8 changed files with 926 additions and 3 deletions
14
src/types.h
Normal file
14
src/types.h
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue