Microsoft Windows 10 · Schema
Win32Structure
A Win32 data structure
DesktopOperating SystemUWPWin32Windows
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Structure name |
| fields | array | |
| sizeInBytes | integer | Size of the structure in bytes |
| header | string | Header file defining the structure |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Win32Structure",
"title": "Win32Structure",
"type": "object",
"description": "A Win32 data structure",
"properties": {
"name": {
"type": "string",
"description": "Structure name"
},
"fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"sizeInBytes": {
"type": "integer",
"description": "Size of the structure in bytes"
},
"header": {
"type": "string",
"description": "Header file defining the structure"
}
},
"required": [
"name",
"fields"
]
}