26 lines
387 B
C
Raw Normal View History

2022-05-21 19:58:09 +02:00
#pragma once
#include <cstdint>
#include "StringBase.h"
namespace Forms
{
// A structure that contains the CreateWindow parameters for this control.
struct CreateParams
{
String ClassName;
String Caption;
2022-05-21 19:58:09 +02:00
uint32_t Style;
uint32_t ExStyle;
uint32_t ClassStyle;
uint32_t X;
uint32_t Y;
uint32_t Width;
uint32_t Height;
uintptr_t Parent;
uintptr_t Param;
};
}