binana/profile/3.3.5a-windows-386/include/external/d3d9/indexbuffer.h

33 lines
813 B
C
Raw Permalink Normal View History

2025-04-29 16:26:36 -04:00
#ifndef D3D9_INDEX_BUFFER_H
#define D3D9_INDEX_BUFFER_H
DECLARE_STRUCT(IDirect3DIndexBuffer9__v_table);
DECLARE_STRUCT(IDirect3DIndexBuffer9);
struct IDirect3DIndexBuffer9__v_table {
/*** IUnknown methods ***/
void* v_fn_0_QueryInterface;
void* v_fn_1_AddRef;
void* v_fn_2_Release;
/*** IDirect3DResource9 methods ***/
void* v_fn_3_GetDevice;
void* v_fn_4_SetPrivateData;
void* v_fn_5_GetPrivateData;
void* v_fn_6_FreePrivateData;
void* v_fn_7_SetPriority;
void* v_fn_8_GetPriority;
void* v_fn_9_PreLoad;
void* v_fn_10_GetType;
/*** IDirect3DIndexBuffer9 methods ***/
void* v_fn_11_Lock;
void* v_fn_12_Unlock;
void* v_fn_13_GetDesc;
};
struct IDirect3DIndexBuffer9 {
IDirect3DIndexBuffer9__v_table* v_table;
};
typedef IDirect3DIndexBuffer9* LPDIRECT3DINDEXBUFFER9;
#endif