git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@822 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-27 20:24:23 +00:00
parent 15fc78f7c4
commit cad29ae41e

View File

@@ -1,9 +1,11 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- $Id$ --> <!-- $Id$ -->
<!-- <!--
Basically, you have to implement 8+n types: Basically, you have to implement 10+n types:
- Integer (int) - Integer (int)
- Unsigned integer (unsigned int) - Unsigned integer (unsigned int)
- Short integer (short)
- Unsigned short integer (unsigned short)
- String (char*) - String (char*)
- Pointer (void*) - Pointer (void*)
- Struct and pointer to it - Struct and pointer to it
@@ -26,6 +28,11 @@
<integer name="max_width" /> <integer name="max_width" />
<integer name="max_height" /> <integer name="max_height" />
</struct> </struct>
<struct name="MwRGB">
<short name="red" unsigned="yes" />
<short name="green" unsigned="yes" />
<short name="blue" unsigned="yes" />
</struct>
</structs> </structs>
<!-- <!--
All widgets have: All widgets have:
@@ -116,6 +123,7 @@
<integer name="MwMB_ICONQUESTION" /> <integer name="MwMB_ICONQUESTION" />
<integer name="MwMB_ICONNEWS" /> <integer name="MwMB_ICONNEWS" />
<integer name="MwMB_ICONERROR" /> <integer name="MwMB_ICONERROR" />
<integer name="MwMB_ICONCLOCK" />
</enumeration> </enumeration>
</enumerations> </enumerations>
<constants> <constants>