summaryrefslogtreecommitdiff
path: root/src/win95/aw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/win95/aw.h')
-rw-r--r--src/win95/aw.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/win95/aw.h b/src/win95/aw.h
index a70be64..ed35da4 100644
--- a/src/win95/aw.h
+++ b/src/win95/aw.h
@@ -6,7 +6,12 @@ typedef struct AwBackupTexture * AW_BACKUPTEXTUREHANDLE;
typedef struct DIRECTDRAWSURFACE
{
- int x;
+ int id;
+
+ int w;
+ int h;
+ unsigned char *data;
+ int type;
} DIRECTDRAWSURFACE;
typedef DIRECTDRAWSURFACE * LPDIRECTDRAWSURFACE;
@@ -14,7 +19,12 @@ typedef DIRECTDRAWSURFACE DDSurface;
typedef struct DIRECT3DTEXTURE
{
- int x;
+ int id;
+
+ int w;
+ int h;
+ unsigned char *data;
+ int type;
} DIRECT3DTEXTURE;
typedef DIRECT3DTEXTURE * LPDIRECT3DTEXTURE;