"Naive WindowSetupDesc Implementation (CPP Side)"

// C++
 
struct WindowSetupDesc {
    INTEROP_STRING Title;
    uint32_t Width;
    uint32_t Height;
    INTEROP_BOOL HideBorders;
    INTEROP_BOOL AllowResizing;
};


Code snippet taken from "P/Invoke Tips".