mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-23 08:52:25 +01:00
12 lines
265 B
C
12 lines
265 B
C
#pragma once
|
|
|
|
typedef struct CUSTOMVERTEX { float x, y, z, rhw, u, v; } CUSTOMVERTEX;
|
|
|
|
DWORD WINAPI render_d3d9_main(void);
|
|
BOOL Direct3D9_Create();
|
|
BOOL Direct3D9_Reset();
|
|
BOOL Direct3D9_Release();
|
|
BOOL Direct3D9_OnDeviceLost();
|
|
|
|
extern HMODULE Direct3D9_hModule;
|