mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 10:17:03 +03:00
Add data type import for Ghidra
This commit is contained in:
parent
30f8a5879e
commit
63002e0f08
9 changed files with 233 additions and 31 deletions
|
|
@ -10,9 +10,15 @@ Direct3D8 declarations.
|
|||
|
||||
typedef DWORD D3DCOLOR;
|
||||
|
||||
struct D3DVECTOR { float x, y, z ; };
|
||||
struct D3DVECTOR4 { float x, y, z, w; };
|
||||
struct D3DVECTOR {
|
||||
float x, y, z ;
|
||||
};
|
||||
struct D3DVECTOR4 {
|
||||
float x, y, z, w;
|
||||
};
|
||||
|
||||
struct D3DRECT { LONG x1, y1, x2, y2; };
|
||||
struct D3DRECT {
|
||||
LONG x1, y1, x2, y2;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue