mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-01 17:20:20 +01:00
22 lines
322 B
C++
22 lines
322 B
C++
#pragma once
|
|
|
|
#pragma pack(push, 1)
|
|
struct __declspec(align(1)) zmap_header_type
|
|
{
|
|
__int16 Width;
|
|
__int16 Height;
|
|
__int16 Stride;
|
|
char* BmpBufPtr1;
|
|
char* bmpBufPtr2;
|
|
char BmpBuffer[1];
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(zmap_header_type) == 15, "Wrong size of zmap_header_type");
|
|
|
|
class zdrv
|
|
{
|
|
public:
|
|
|
|
};
|
|
|