feat(profile): update gx headers

This commit is contained in:
phaneron 2025-05-08 00:05:46 -04:00
parent 37b206a6e3
commit ad24eab0a4
16 changed files with 251 additions and 84 deletions

View file

@ -0,0 +1,15 @@
#ifndef D3D9_DEVICECREATIONPARAMETERS_H
#define D3D9_DEVICECREATIONPARAMETERS_H
DECLARE_STRUCT(D3DDEVICE_CREATION_PARAMETERS);
#include "external/d3d9/devtype.h"
struct D3DDEVICE_CREATION_PARAMETERS {
uint32_t AdapterOrdinal;
D3DDEVTYPE DeviceType;
void* hFocusWindow;
uint32_t BehaviorFlags;
};
#endif