-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindow.xml
More file actions
23 lines (22 loc) · 1.13 KB
/
Window.xml
File metadata and controls
23 lines (22 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- (c) 2025 Copyright, Real-Time Innovations, Inc. All rights reserved.
No duplications, whole or partial, manual or electronic, may be made
without express written permission. Any such copies, or revisions thereof,
must display this notice unaltered.
This code contains trade secrets of Real-Time Innovations, Inc. -->
<?xml version="1.0" encoding="UTF-8"?>
<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://community.rti.com/schema/7.3.0/rti_dds_profiles.xsd">
<types>
<const name="TOPIC_WINDOW_COMMAND" type="string" value="WindowCommand"/>
<const name="TOPIC_WINDOW_UPDATE" type="string" value="WindowUpdate"/>
<const name="ID_STR_LEN" type="uint8" value="2"/>
<typedef name="window_id_t" stringMaxLength="ID_STR_LEN" type="string"/>
<struct name= "WindowCommand">
<member name="id" type="nonBasic" nonBasicTypeName= "window_id_t" key="true"/>
<member name="position" type="uint16"/>
</struct>
<struct name= "WindowUpdate">
<member name="id" type="nonBasic" nonBasicTypeName= "window_id_t" key="true"/>
<member name="position" type="uint16"/>
</struct>
</types>
</dds>