mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
27 lines
549 B
C++
27 lines
549 B
C++
#pragma once
|
|
|
|
#include "SharedTypes.h"
|
|
#include "PascalStr.h"
|
|
|
|
class PLPasStr;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class IOStream;
|
|
|
|
struct WindowDef
|
|
{
|
|
Rect m_initialRect;
|
|
int16_t m_wdefResID;
|
|
uint16_t m_visibilityStatus;
|
|
uint16_t m_hasCloseBox;
|
|
uint32_t m_referenceConstant;
|
|
uint16_t m_positionSpec;
|
|
uint8_t m_title[256];
|
|
|
|
bool Deserialize(IOStream *stream);
|
|
|
|
static WindowDef Create(const Rect &initialRect, int16_t wdefID, bool isVisible, bool hasCloseBox, uint32_t refConstant, uint16_t positionSpec, const PLPasStr &title);
|
|
};
|
|
}
|