Compile XDK code as C

It appears to be all C code (especially the non-C++ parts of the C
runtime, of course), so we'll compile it as such.
This commit is contained in:
KeybadeBlox 2026-02-17 10:27:50 -05:00
parent 149af27b9c
commit d435282a8b
9 changed files with 48 additions and 23 deletions

View file

@ -1,24 +0,0 @@
/* JSRF Decompilation: XDK/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;
};
struct D3DRECT {
LONG x1, y1, x2, y2;
};
#endif