mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
cppkore uses string/wstring as StringBase while we use std::string/std::wstring as string/wstring. Changed all types in cppkore to String/WString instead.
26 lines
387 B
C++
26 lines
387 B
C++
#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;
|
|
|
|
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;
|
|
};
|
|
} |