-
Notifications
You must be signed in to change notification settings - Fork 85
Compositor
Aman Priyadarshi edited this page Dec 26, 2016
·
1 revision
[StructLayout(LayoutKind.Explicit, Size = 44)] internal unsafe struct NewWindow { [FieldOffset(12)] internal uint X; [FieldOffset(16)] internal uint Y; [FieldOffset(20)] internal uint Width; [FieldOffset(24)] internal uint Height; [FieldOffset(28)] internal fixed char Buffer[8]; };
- A new
GuiRequestshould be send with TypeNewWindow.- A Response will be send to the client with same type.
Widthmay not be the same.Heightmay not be the same.BufferShm key to for shared memory.ErrorIf any.
- ErrorType
BadRequest: ClientID or HashID is invalid.BadParameters:Width <= 0orHeight <= 0.OutOfMemory: Memory allocation failed.