mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 18:27:04 +03:00
Add objdiff setup
This is intended more as a proof of concept as we figure things out than the start of an actual decompilation in this repository. Target object files are currently "bring your own."
This commit is contained in:
parent
10b3c8c273
commit
7e1785e466
12 changed files with 151 additions and 27 deletions
16
objdiff/src/D3D.hpp
Normal file
16
objdiff/src/D3D.hpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/* JSRF Decompilation: D3D.hpp
|
||||
Direct3D8 declarations.
|
||||
*/
|
||||
|
||||
#ifndef D3D_HPP
|
||||
#define D3D_HPP
|
||||
|
||||
#include "Win32.hpp"
|
||||
|
||||
|
||||
typedef DWORD D3DCOLOR;
|
||||
|
||||
struct D3DVECTOR { float x, y, z ; };
|
||||
struct D3DVECTOR4 { float x, y, z, w; };
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue