mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
11 lines
152 B
C
11 lines
152 B
C
|
|
#ifndef D3D9_LOCKEDRECT_H
|
||
|
|
#define D3D9_LOCKEDRECT_H
|
||
|
|
|
||
|
|
DECLARE_STRUCT(D3DLOCKED_RECT);
|
||
|
|
|
||
|
|
struct D3DLOCKED_RECT {
|
||
|
|
int32_t Pitch;
|
||
|
|
void* pBits;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|