1. --  (c) Copyright, Real-Time Innovations, $Date;: 2012-10-31 #$ 
  2. --  All rights reserved. 
  3. -- 
  4. --  No duplications, whole or partial, manual or electronic, may be made 
  5. --  without express written permission.  Any such copies, or 
  6. --  revisions thereof, must display this notice unaltered. 
  7. --  This code contains trade secrets of Real-Time Innovations, Inc. 
  8.  
  9. pragma Ada_2012; 
  10.  
  11. with Ada.Containers; 
  12. with Ada.Unchecked_Deallocation; 
  13. with Ada.Calendar; 
  14. with Ada.Real_Time; 
  15. with Interfaces; 
  16. private with Interfaces.C; 
  17. with Interfaces.C.Strings; 
  18.  
  19. with DDS_Support; 
  20. with DDS_Support.Sequences_Generic; 
  21.  
  22. with System; 
  23.  
  24. private with RTIDDS.Low_Level.ndds_dds_c_dds_c_subscription_h; 
  25. with RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h; 
  26. with RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h; 
  27. private with RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h; 
  28. with RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h; 
  29. with RTIDDS.Low_Level.ndds_dds_c_dds_c_flowcontroller_h; 
  30. with RTIDDS.Low_Level.ndds_ndds_config_c_h; 
  31. with RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h; 
  32. with RTIDDS.Low_Level.ndds_dds_c_dds_c_typecode_h; 
  33. with RTIDDS.Low_Level.ndds_dds_c_dds_c_typeobject_h; 
  34. with RTIDDS.Low_Level.ndds_pres_pres_common_impl_h; 
  35. with RTIDDS.Low_Level.ndds_osapi_osapi_hash_h; 
  36. with RTIDDS.Low_Level.ndds_dds_c_dds_c_topic_h; 
  37. with Ada.Finalization; 
  38. with RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h; 
  39. with RTIDDS.Low_Level.ndds_dds_c_dds_c_sqlfilter_h; 
  40. with RTIDDS.Low_Level.ndds_pres_pres_participant_h; 
  41. --  with Rtidds.Annotations; use Rtidds.Annotations; 
  42.  
  43. pragma Elaborate_All (DDS_Support.Sequences_Generic); 
  44.  
  45. --  <module name="DDSInfrastructureModule" actualName="Infrastructure Module">InfrastructureGroupDocs</module> 
  46. package DDS is 
  47.    use RTIDDS.Low_Level.ndds_ndds_config_c_h; 
  48.  
  49.  
  50.    --  Note that this package dependes heavely on the underlaying C implementation 
  51.    --  and will change when a full Ada implementation is avalible. 
  52.    -- 
  53.    --  Worth to notice is that erros from the underlaying midlleware is 
  54.    --  translated to exceptions, since there is no posibillity to ignore 
  55.    --  function returns in Ada. 
  56.    -- 
  57.    --  From osapi_types.h 
  58.    -- 
  59.  
  60.    Binding_Version : constant Standard.String := "5.10"; 
  61.  
  62.    --  ------------------------------------------------- 
  63.    --                 CDR Primitive Types 
  64.    --  ------------------------------------------------- 
  65.  
  66.    type    Short              is new Interfaces.C.short; 
  67.    --  <defgroup>CdrGroupDocs</defgroup> 
  68.    --  <dref>Short</dref> 
  69.  
  70.    type    Long               is new Interfaces.C.int; 
  71.    --  <dref>Long</dref> 
  72.  
  73.    subtype Integer  is Long; 
  74.    subtype Natural  is Integer range 0 .. Integer'Last; 
  75.    subtype Positive is Integer range 1 .. Integer'Last; 
  76.  
  77.    type Long_Long          is new Interfaces.Integer_64; 
  78.    --  <dref>LongLong</dref> 
  79.  
  80.    type Unsigned_Short     is new Interfaces.Unsigned_16; 
  81.    --  <dref>UnsignedShort</dref> 
  82.  
  83.    type Unsigned_Long      is new Interfaces.Unsigned_32; 
  84.    --  <dref>UnsignedLong</dref> 
  85.  
  86.    type Unsigned_Long_Long is new Interfaces.Unsigned_64; 
  87.    --  <dref>UnsignedLongLong</dref> 
  88.  
  89.    type Enum               is new Interfaces.Unsigned_32; 
  90.    --  <dref>CdrEnum</dref> 
  91.  
  92.    type Float           is new Interfaces.IEEE_Float_32; 
  93.    --  <dref>Float</dref> 
  94.  
  95.    type Double          is new Interfaces.IEEE_Float_64; 
  96.    --  <dref>Double</dref> 
  97.  
  98.    type Long_Double     is new Interfaces.IEEE_Extended_Float; 
  99.    --  <dref>LongDouble</dref> 
  100.  
  101.    subtype Char            is Standard.Character; 
  102.    --  <dref>Char</dref> 
  103.  
  104.    subtype Wchar           is Standard.Wide_Character; 
  105.    --  <dref>Wchar</dref> 
  106.  
  107.    subtype Octet           is Interfaces.Unsigned_8; 
  108.    --  <dref>Octet</dref> 
  109.    function Image (Item : Octet) return Standard.String; 
  110.  
  111.    INFINITE : constant := -1; 
  112.    type Octets is record 
  113.       Length : Integer; 
  114.       Value  : System.Address; 
  115.    end record with 
  116.      Convention => C; 
  117.    --  <dref>Octets</dref> 
  118.    --  <dref name="length">Octets_length</dref> 
  119.    --  <dref name="value">Octets_value</dref> 
  120.  
  121.    Null_Octets : constant Octets := (0, System.Null_Address); 
  122.    subtype Boolean         is Standard.Boolean; 
  123.    --  <dref>Boolean</dref> 
  124.  
  125.    --  subtype String          is Interfaces.C.Strings.chars_ptr; 
  126.  
  127.    type String  is limited record 
  128.       Data  : aliased Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.Null_Ptr; 
  129.       pragma Obsolescent (Data, "This is internal data and not to be referenced outside the DDS hierachy:" & 
  130.                             "use Operations on the whole record instead!"); 
  131.    end record with 
  132.      Convention => C; 
  133.    --  <dref>String</dref> 
  134.  
  135.    function Length (Item : String) return Natural; 
  136.    function "=" (L : DDS.String; R : Standard.String) return Standard.Boolean; 
  137.    function "=" (L : Standard.String; R : DDS.String) return Standard.Boolean; 
  138.    function "&" (L : DDS.String; R : Standard.String) return Standard.String; 
  139.    function "&" (L : Standard.String; R : DDS.String) return Standard.String; 
  140.    procedure Append (To : in out DDS.String; Data : DDS.String); 
  141.    procedure Append (To : in out DDS.String; Data : Standard.String); 
  142.  
  143.    procedure Prepend (To : in out DDS.String; Data : DDS.String); 
  144.    procedure Prepend (To : in out DDS.String; Data : Standard.String); 
  145.  
  146.    type KeyedString is record 
  147.       Key   : DDS.String; 
  148.       Value : DDS.String; 
  149.    end record with 
  150.      Convention => C; 
  151.    --  <dref>KeyedString</dref> 
  152.    --  <dref name="key">KeyedString_key</dref> 
  153.    --  <dref name="value">KeyedString_value</dref> 
  154.  
  155.    type KeyedOctets is record 
  156.       Key    : DDS.String; 
  157.       Value  : Octets; 
  158.    end record with 
  159.      Convention => C; 
  160.    --  <dref>KeyedOctets</dref> 
  161.    --  <dref name="key">KeyedOctets_key</dref> 
  162.    --  <dref name="length">KeyedOctets_length</dref> 
  163.    --  <dref name="value">KeyedOctets_value</dref> 
  164.  
  165.  
  166.    NULL_STRING     : constant DDS.String := (Data => Interfaces.C.Strings.Null_Ptr); 
  167.  
  168.    type Wchars_Ptr is access all Standard.Wide_Character 
  169.       with Convention => C; 
  170.  
  171.    type Wide_String is limited record 
  172.       Data : Wchars_Ptr; 
  173.    end record with 
  174.      Convention => C; 
  175.  
  176.    --  <dref>Wstring</dref> 
  177.  
  178.    function WValue (Item : Wchars_Ptr) return Interfaces.C.char16_array; 
  179.    function "+" (Left : Wchars_Ptr; Right : Interfaces.C.size_t) return Wchars_Ptr; 
  180.    function Peek (From : Wchars_Ptr) return Standard.Wide_Character; 
  181.  
  182.    --  Pointers on the previous types 
  183.  
  184.    type    Short_Ptr              is access all Short; 
  185.    type    Long_Ptr               is access all Long; 
  186.    type    Long_Long_Ptr          is access all Long_Long; 
  187.    type    Unsigned_Short_Ptr     is access all Unsigned_Short; 
  188.    type    Unsigned_Long_Ptr      is access all Unsigned_Long; 
  189.    type    Unsigned_Long_Long_Ptr is access all Unsigned_Long_Long; 
  190.    type    Enum_Ptr               is access all Enum; 
  191.    type    Float_Ptr              is access all Float; 
  192.    type    Double_Ptr             is access all Double; 
  193.    type    Long_Double_Ptr        is access all Long_Double; 
  194.    type    Char_Ptr               is access all Char; 
  195.    type    Wchar_Ptr              is access all Wchar; 
  196.    type    Octet_Ptr              is access all Octet; 
  197.    type    Octets_Ptr             is access all Octets; 
  198.    type    Boolean_Ptr            is access all Boolean; 
  199.    type    String_Ptr             is access all String; 
  200.    type    KeyedString_Ptr        is access all KeyedString; 
  201.    type    KeyedOctets_Ptr        is access all KeyedOctets; 
  202.    type    Wide_String_Ptr        is access all Wide_String; 
  203.  
  204.    --  ... and deallocation method for each pointer type 
  205.  
  206.    procedure Deallocate is new Ada.Unchecked_Deallocation (Short, Short_Ptr); 
  207.    procedure Deallocate is new Ada.Unchecked_Deallocation (Long, Long_Ptr); 
  208.    procedure Deallocate is new Ada.Unchecked_Deallocation (Long_Long, Long_Long_Ptr); 
  209.    procedure Deallocate is new Ada.Unchecked_Deallocation (Unsigned_Short, Unsigned_Short_Ptr); 
  210.    procedure Deallocate is new Ada.Unchecked_Deallocation (Unsigned_Long, Unsigned_Long_Ptr); 
  211.    procedure Deallocate is new Ada.Unchecked_Deallocation (Unsigned_Long_Long, Unsigned_Long_Long_Ptr); 
  212.    procedure Deallocate is new Ada.Unchecked_Deallocation (Enum, Enum_Ptr); 
  213.    procedure Deallocate is new Ada.Unchecked_Deallocation (Float, Float_Ptr); 
  214.    procedure Deallocate is new Ada.Unchecked_Deallocation (Double, Double_Ptr); 
  215.    procedure Deallocate is new Ada.Unchecked_Deallocation (Long_Double, Long_Double_Ptr); 
  216.    procedure Deallocate is new Ada.Unchecked_Deallocation (Char, Char_Ptr); 
  217.    procedure Deallocate is new Ada.Unchecked_Deallocation (Wchar, Wchar_Ptr); 
  218.    procedure Deallocate is new Ada.Unchecked_Deallocation (Octet, Octet_Ptr); 
  219.    procedure Deallocate is new Ada.Unchecked_Deallocation (Boolean, Boolean_Ptr); 
  220.    procedure Deallocate is new Ada.Unchecked_Deallocation (String, String_Ptr); 
  221.    procedure Deallocate is new Ada.Unchecked_Deallocation (Wide_String, Wide_String_Ptr); 
  222.  
  223.    DOMAIN_ID_MAX : constant := 250; 
  224.  
  225.    type DomainId_T is new Long range 0 .. DOMAIN_ID_MAX; 
  226.    --  <dref>DomainId_t</dref> 
  227.  
  228.    Default_Domain  : constant DomainId_T := 0; 
  229.  
  230.    -- 
  231.    --  From dds_c/dds_c_infrastructure.h 
  232.    -- 
  233.  
  234.    --  ------------------------------------------------- 
  235.    --                 CDR Primitive Types Array and Sequences 
  236.    --  ------------------------------------------------- 
  237.  
  238.    type Short_Array is array (Natural range <>) of aliased Short; 
  239.    procedure Initialize (Self  : in out Short); 
  240.    procedure Finalize (Self  : in out Short); 
  241.    procedure Copy (Dst : in out Short; Src : in Short); 
  242.    package Short_Seq is new DDS_Support.Sequences_Generic 
  243.      (Short, 
  244.       Short_Ptr, 
  245.       DDS.Natural, 
  246.       1, 
  247.       Short_Array); 
  248.    --  <defgroup>SequenceGroupDocs</defgroup> 
  249.    --  <dref>ShortSeq</dref> 
  250.  
  251.    type Long_Array is array (Natural range <>) of aliased Long; 
  252.    procedure Initialize (Self  : in out Long); 
  253.    procedure Finalize (Self  : in out Long); 
  254.    procedure Copy (Dst : in out Long; Src : in Long); 
  255.    package Long_Seq is new DDS_Support.Sequences_Generic 
  256.      (Long, 
  257.       Long_Ptr, 
  258.       DDS.Natural, 
  259.       1, 
  260.       Long_Array); 
  261.    --  <dref>LongSeq</dref> 
  262.  
  263.    type Long_Long_Array is array (Natural range <>) of aliased Long_Long; 
  264.  
  265.    procedure Initialize (Self  : in out Long_Long); 
  266.    procedure Finalize (Self  : in out Long_Long); 
  267.    procedure Copy (Dst : in out Long_Long; Src : in Long_Long); 
  268.    package Long_Long_Seq is new DDS_Support.Sequences_Generic 
  269.      (Long_Long, 
  270.       Long_Long_Ptr, 
  271.       DDS.Natural, 
  272.       1, 
  273.       Long_Long_Array); 
  274.    --  <dref>LongLongSeq</dref> 
  275.  
  276.    type Unsigned_Short_Array is array (Natural range <>) of aliased Unsigned_Short; 
  277.    procedure Initialize (Self  : in out Unsigned_Short); 
  278.    procedure Finalize (Self  : in out Unsigned_Short); 
  279.    procedure Copy (Dst : in out Unsigned_Short; Src : in Unsigned_Short); 
  280.    package Unsigned_Short_Seq is new DDS_Support.Sequences_Generic 
  281.      (Unsigned_Short, 
  282.       Unsigned_Short_Ptr, 
  283.       DDS.Natural, 
  284.       1, 
  285.       Unsigned_Short_Array); 
  286.    --  <dref>UnsignedShortSeq</dref> 
  287.  
  288.    type Unsigned_Long_Array is array (Natural range <>) of aliased Unsigned_Long; 
  289.    procedure Initialize (Self  : in out Unsigned_Long); 
  290.    procedure Finalize (Self  : in out Unsigned_Long); 
  291.    procedure Copy (Dst : in out Unsigned_Long; Src : in Unsigned_Long); 
  292.    package Unsigned_Long_Seq is new DDS_Support.Sequences_Generic 
  293.      (Unsigned_Long, 
  294.       Unsigned_Long_Ptr, 
  295.       DDS.Natural, 
  296.       1, 
  297.       Unsigned_Long_Array); 
  298.    --  <dref>UnsignedLongSeq</dref> 
  299.  
  300.    type Unsigned_Long_Long_Array is array (Natural range <>) of aliased Unsigned_Long_Long; 
  301.    procedure Initialize (Self  : in out Unsigned_Long_Long); 
  302.    procedure Finalize (Self  : in out Unsigned_Long_Long); 
  303.    procedure Copy (Dst : in out Unsigned_Long_Long; Src : in Unsigned_Long_Long); 
  304.    package Unsigned_Long_Long_Seq is new DDS_Support.Sequences_Generic 
  305.      (Unsigned_Long_Long, 
  306.       Unsigned_Long_Long_Ptr, 
  307.       DDS.Natural, 
  308.       1, 
  309.       Unsigned_Long_Long_Array); 
  310.    --  <dref>UnsignedLongLongSeq</dref> 
  311.  
  312.    type Enum_Array is array (Natural range <>) of aliased Enum; 
  313.    procedure Initialize (Self  : in out Enum); 
  314.    procedure Finalize (Self  : in out Enum); 
  315.    procedure Copy (Dst : in out Enum; Src : in Enum); 
  316.    package Enum_Seq is new DDS_Support.Sequences_Generic 
  317.      (Enum, 
  318.       Enum_Ptr, 
  319.       DDS.Natural, 
  320.       1, 
  321.       Enum_Array); 
  322.  
  323.    type Float_Array is array (Natural range <>) of aliased Float; 
  324.    procedure Initialize (Self  : in out Float); 
  325.    procedure Finalize (Self  : in out Float); 
  326.    procedure Copy (Dst : in out Float; Src : in Float); 
  327.    package Float_Seq is new DDS_Support.Sequences_Generic 
  328.      (Float, 
  329.       Float_Ptr, 
  330.       DDS.Natural, 
  331.       1, 
  332.       Float_Array); 
  333.    --  <dref>FloatSeq</dref> 
  334.  
  335.    type Double_Array is array (Natural range <>) of aliased Double; 
  336.    procedure Initialize (Self  : in out Double); 
  337.    procedure Finalize (Self  : in out Double); 
  338.    procedure Copy (Dst : in out Double; Src : in Double); 
  339.    package Double_Seq is new DDS_Support.Sequences_Generic 
  340.      (Double, 
  341.       Double_Ptr, 
  342.       DDS.Natural, 
  343.       1, 
  344.       Double_Array); 
  345.    --  <dref>DoubleSeq</dref> 
  346.  
  347.    type Long_Double_Array is array (Natural range <>) of aliased Long_Double; 
  348.    procedure Initialize (Self  : in out Long_Double); 
  349.    procedure Finalize (Self  : in out Long_Double); 
  350.    procedure Copy (Dst : in out Long_Double; Src : in Long_Double); 
  351.    package Long_Double_Seq is new DDS_Support.Sequences_Generic 
  352.      (Long_Double, 
  353.       Long_Double_Ptr, 
  354.       DDS.Natural, 
  355.       1, 
  356.       Long_Double_Array); 
  357.    --  <dref>LongDoubleSeq</dref> 
  358.  
  359.    type Char_Array is array (Natural range <>) of aliased Char; 
  360.    procedure Initialize (Self  : in out Char); 
  361.    procedure Finalize (Self  : in out Char); 
  362.    procedure Copy (Dst : in out Char; Src : in Char); 
  363.    package Char_Seq is new DDS_Support.Sequences_Generic 
  364.      (Char, 
  365.       Char_Ptr, 
  366.       DDS.Natural, 
  367.       1, 
  368.       Char_Array); 
  369.    --  <dref>CharSeq</dref> 
  370.  
  371.    type Wchar_Array is array (Natural range <>) of aliased Wchar; 
  372.    procedure Initialize (Self  : in out Wchar); 
  373.    procedure Finalize (Self  : in out Wchar); 
  374.    procedure Copy (Dst : in out Wchar; Src : in Wchar); 
  375.    package Wchar_Seq is new DDS_Support.Sequences_Generic 
  376.      (Wchar, 
  377.       Wchar_Ptr, 
  378.       DDS.Natural, 
  379.       1, 
  380.       Wchar_Array); 
  381.    --  <dref>WcharSeq</dref> 
  382.  
  383.    type Octet_Array is array (Natural range <>) of aliased Octet; 
  384.    pragma Convention (C, Octet_Array); 
  385.    procedure Initialize (Self  : in out Octet); 
  386.    procedure Finalize (Self  : in out Octet); 
  387.    procedure Copy (Dst : in out Octet; Src : in Octet); 
  388.    package Octet_Seq is new DDS_Support.Sequences_Generic 
  389.      (Octet, 
  390.       Octet_Ptr, 
  391.       DDS.Natural, 
  392.       1, 
  393.       Octet_Array); 
  394.    --  <dref>OctetSeq</dref> 
  395.  
  396.    function Octets_Of (Item : Octet_Array) return Octets is 
  397.      (Octets'(Length =>  Item'Length, Value => Item (Item'First)'Address)); 
  398.    function Octets_Of (Item : Octet_Seq.Sequence) return Octets is 
  399.      (Octets'(Length =>  Item.Length, Value => Item.Contiguous_Buffer.all'Address)); 
  400.  
  401.  
  402.    type Octets_Array is array (Natural range <>) of aliased Octets; 
  403.    pragma Convention (C, Octets_Array); 
  404.    procedure Initialize (Self : in out Octets); 
  405.    procedure Finalize (Self : in out Octets); 
  406.    procedure Copy (Dst : in out Octets; Src : in Octets); 
  407.    package Octets_Seq is new DDS_Support.Sequences_Generic 
  408.      (Octets, 
  409.       Octets_Ptr, 
  410.       DDS.Natural, 
  411.       1, 
  412.       Octets_Array); 
  413.    --  <dref>OctetsSeq</dref> 
  414.  
  415.    type Boolean_Array is array (Natural range <>) of aliased Boolean; 
  416.    procedure Initialize (Self  : in out Boolean); 
  417.    procedure Finalize (Self  : in out Boolean); 
  418.    procedure Copy (Dst : in out Boolean; Src : in Boolean); 
  419.    package Boolean_Seq is new DDS_Support.Sequences_Generic 
  420.      (Boolean, 
  421.       Boolean_Ptr, 
  422.       DDS.Natural, 
  423.       1, 
  424.       Boolean_Array); 
  425.    --  <dref>BooleanSeq</dref> 
  426.  
  427.    function To_DDS_String (Source : Standard.String) return DDS.String is 
  428.      (Data => Interfaces.C.Strings.New_String (Source)); 
  429.    function To_Standard_String (Source : DDS.String) return Standard.String; 
  430.  
  431.  
  432.    procedure Copy (Dst : in out DDS.String; Src : in Standard.String); 
  433.    procedure Copy (Dst : in out Standard.String; Src : in DDS.String); 
  434.    function "=" (L, R  : DDS.String) return Boolean; 
  435.  
  436.    type String_Array is array (Natural range <>) of aliased DDS.String; 
  437.    procedure Initialize (Self  : in out DDS.String); 
  438.    procedure Finalize (Self  : in out DDS.String); 
  439.    procedure Copy (Dst : in out DDS.String; Src : in DDS.String); 
  440.    package String_Seq is new DDS_Support.Sequences_Generic 
  441.      (DDS.String, 
  442.       String_Ptr, 
  443.       DDS.Natural, 
  444.       1, 
  445.       String_Array); 
  446.    --  <dref>StringSeq</dref> 
  447.  
  448.    function To_DDS_KeyedString (Key : Standard.String; Source : Standard.String) return DDS.KeyedString; 
  449.    function To_Standard_String (Source : DDS.KeyedString) return Standard.String; 
  450.    function Get_Key_From_KeyedString (Source : DDS.KeyedString) return Standard.String; 
  451.    function "=" (L, R  : DDS.KeyedString) return Boolean; 
  452.  
  453.    type KeyedString_Array is array (Natural range <>) of aliased DDS.KeyedString; 
  454.    procedure Initialize (Self  : in out DDS.KeyedString); 
  455.    procedure Finalize (Self  : in out DDS.KeyedString); 
  456.    procedure Copy (Dst : in out DDS.KeyedString; Src : in DDS.KeyedString); 
  457.    package KeyedString_Seq is new DDS_Support.Sequences_Generic 
  458.      (DDS.KeyedString, 
  459.       KeyedString_Ptr, 
  460.       DDS.Natural, 
  461.       1, 
  462.       KeyedString_Array); 
  463.    --  <dref>KeyedStringSeq</dref> 
  464.  
  465.    function KeyedString_Of (Value : DDS.String; Key : DDS.String) return KeyedString; 
  466.    function KeyedString_Of (Key : DDS.String) return KeyedString; 
  467.    function KeyedString_Of (Value : Standard.String; Key : Standard.String) return KeyedString; 
  468.    function KeyedString_Of (Key : Standard.String) return KeyedString; 
  469.    --  NOTE that the above functions does not do any copying of data 
  470.    --   They are just generation references. 
  471.  
  472.    type KeyedOctets_Array is array (Natural range <>) of aliased DDS.KeyedOctets; 
  473.    procedure Initialize (Self : in out DDS.KeyedOctets); 
  474.    procedure Finalize (Self : in out DDS.KeyedOctets); 
  475.    procedure Copy (Dst : in out DDS.KeyedOctets; Src : in DDS.KeyedOctets); 
  476.    package KeyedOctets_Seq is new DDS_Support.Sequences_Generic 
  477.      (DDS.KeyedOctets, 
  478.       KeyedOctets_Ptr, 
  479.       DDS.Natural, 
  480.       1, 
  481.       KeyedOctets_Array); 
  482.    --  <dref>KeyedOctetsSeq</dref> 
  483.  
  484.  
  485.  
  486.    function KeyedOctets_Of (Key : String; Value : Octets := Null_Octets) return KeyedOctets; 
  487.    function KeyedOctets_Of (Key : String; Value : Octet_Array) return KeyedOctets; 
  488.    function KeyedOctets_Of (Key : String; Value : Octet_Seq.Sequence) return KeyedOctets; 
  489.  
  490.    generic 
  491.       type Data_Type is private; 
  492.    function KeyedOctets_Of_Generic (Key : String; Value : Data_Type) return KeyedOctets; 
  493.  
  494.    function To_DDS_Wide_String (Source : Standard.Wide_String) return DDS.Wide_String; 
  495.    function To_Standard_Wide_String (Source : DDS.Wide_String) return Standard.Wide_String; 
  496.    procedure Copy (Dst : in out DDS.Wide_String; Src : in Standard.Wide_String); 
  497.    procedure Copy (Dst : in out Standard.Wide_String; Src : in DDS.Wide_String); 
  498.    function "=" (L, R  : DDS.Wide_String) return Boolean; 
  499.  
  500.    type Wide_String_Array is array (Natural range <>) of aliased DDS.Wide_String; 
  501.    procedure Initialize (Self  : in out DDS.Wide_String); 
  502.    procedure Finalize (Self  : in out DDS.Wide_String); 
  503.    procedure Copy (Dst : in out DDS.Wide_String; Src : in DDS.Wide_String); 
  504.    package Wide_String_Seq is new DDS_Support.Sequences_Generic 
  505.      (DDS.Wide_String, 
  506.       Wide_String_Ptr, 
  507.       DDS.Natural, 
  508.       1, 
  509.       Wide_String_Array); 
  510.    --  <dref>WstringSeq</dref> 
  511.  
  512.    --  ------------------------------------------------- 
  513.    --                 Time_t 
  514.    --  ------------------------------------------------- 
  515.  
  516.    type Time_T is record 
  517.       Sec     : Long := 0; 
  518.       Nanosec : Unsigned_Long := 0; 
  519.    end record with 
  520.      Convention => C; 
  521.    --  <defgroup>TimeSupportGroupDocs</defgroup> 
  522.    --  <dref>Time_t</dref> 
  523.    --  <dref name="Sec">TimeStamp_sec</dref> 
  524.    --  <dref name="Nanosec">TimeStamp_nanosec</dref> 
  525.  
  526.  
  527.    function "<" (L : Time_T; R : Time_T) return Boolean; 
  528.  
  529.    function ">" (L : Time_T; R : Time_T) return Boolean; 
  530.  
  531.    function "<=" (L : Time_T; R : Time_T) return Boolean; 
  532.  
  533.    function ">=" (L : Time_T; R : Time_T) return Boolean; 
  534.  
  535.    function "+" (L : Time_T; R : Time_T) return Time_T with 
  536.      Obsolescent => "Time + Time Does not make sense, but duration + duration does !"; 
  537.  
  538.  
  539.    Time_Zero       : constant Time_T := (0, 0); 
  540.    --  <dref>Time_t_ZERO</dref> 
  541.  
  542.    TIME_INVALID_SEC : constant Long      := -1; 
  543.    --  <dref>Time_t_INVALID_SEC</dref> 
  544.  
  545.    TIME_INVALID_NSEC : constant Unsigned_Long      := 4_294_967_295; 
  546.    --  <dref>Time_t_INVALID_NSEC</dref> 
  547.  
  548.    Time_Invalid    : constant Time_T := (TIME_INVALID_SEC, TIME_INVALID_NSEC); 
  549.    --  <dref>Time_t_INVALID</dref> 
  550.  
  551.    function Time_Is_Zero 
  552.      (T : Time_T) 
  553.       return Boolean; 
  554.    --  <dref>Time_t_is_zero</dref> 
  555.  
  556.    function Time_Is_Invalid 
  557.      (T : Time_T) 
  558.       return Boolean; 
  559.    --  <dref>Time_t_is_invalid</dref> 
  560.  
  561.    function To_Time (T : Time_T) return Ada.Calendar.Time; 
  562.    function To_Time (T : Time_T) return Ada.Real_Time.Time; 
  563.    function To_Time_T (T : Ada.Calendar.Time) return Time_T; 
  564.    function To_Time_T (T : Ada.Real_Time.Time) return Time_T; 
  565.  
  566.    --  ------------------------------------------------- 
  567.    --                 Duration_t 
  568.    --  ------------------------------------------------- 
  569.  
  570.    type Duration_T is record -- Default DURATION_ZERO 
  571.       Sec     : Long := 0; 
  572.       Nanosec : Unsigned_Long := 0; 
  573.    end record with 
  574.      Convention => C; 
  575.    --  <dref>Duration_t</dref> 
  576.    --  <dref name="Sec">TimeStamp_sec</dref> 
  577.    --  <dref name="Nanosec">TimeStamp_nanosec</dref> 
  578.  
  579.    DURATION_ZERO_SEC : constant Long := 0; 
  580.    --  <dref>Duration_t_ZERO_SEC</dref> 
  581.  
  582.    DURATION_ZERO_NSEC : constant Unsigned_Long := 0; 
  583.    --  <dref>Duration_t_ZERO_NSEC</dref> 
  584.  
  585.    DURATION_ZERO     : Duration_T := (DURATION_ZERO_SEC, DURATION_ZERO_NSEC); 
  586.    --  <dref>Duration_t_ZERO</dref> 
  587.  
  588.    DURATION_INFINITE_SEC : constant Long := 2_147_483_647; 
  589.    --  <dref>Duration_t_INFINITE_SEC</dref> 
  590.  
  591.    DURATION_INFINITE_NSEC : constant Unsigned_Long := 2_1474_83_647; 
  592.    --  <dref>Duration_t_INFINITE_NSEC</dref> 
  593.  
  594.    DURATION_INFINITE : constant Duration_T := 
  595.                          (DURATION_INFINITE_SEC, DURATION_INFINITE_NSEC); 
  596.    --  <dref>Duration_t_INFINITE</dref> 
  597.  
  598.    DURATION_AUTO_SEC : constant Long := 2_1474_83_647; 
  599.    --  <dref>Duration_t_AUTO_SEC</dref> 
  600.  
  601.    DURATION_AUTO_NSEC : constant Unsigned_Long := 0; 
  602.    --  <dref>Duration_t_AUTO_NSEC</dref> 
  603.  
  604.    DURATION_AUTO     : constant Duration_T := 
  605.                          (DURATION_AUTO_SEC, DURATION_AUTO_NSEC); 
  606.    --  <dref>Duration_t_AUTO</dref> 
  607.  
  608.    --  <dref>Duration_t_is_zero</dref> 
  609.    function Duration_Is_Zero 
  610.      (D : Duration_T) 
  611.       return Boolean; 
  612.  
  613.    --  <dref>Duration_t_is_infinite</dref> 
  614.    function Duration_Is_Infinite 
  615.      (D : Duration_T) 
  616.       return Boolean; 
  617.  
  618.    --  <dref>Duration_t_is_auto</dref> 
  619.    function Duration_Is_Auto 
  620.      (D : Duration_T) 
  621.       return Boolean; 
  622.  
  623.    function To_Duration (D : Duration_T) return Standard.Duration; 
  624.    function To_Duration_T (D : Standard.Duration) return Duration_T; 
  625.    --  <internal> 
  626.    --  Converts a standard.Duration to Duration_T and will raise 
  627.    --  Constraint error if the conversion is impossible except for the 
  628.    --  Value Duration'Last that will return "DURATION_INFINITE". 
  629.    --  </internal> 
  630.  
  631.    function "+" (L : Time_T; R : Duration_T) return Time_T; 
  632.    function "+" (L : Duration_T; R : Time_T) return Time_T; 
  633.    function "-" (L : Time_T; R : Duration_T) return Time_T; 
  634.    function "+" (L : Duration_T; R : Duration_T) return Duration_T; 
  635.    function "-" (L : Duration_T; R : Duration_T) return Duration_T; 
  636.    function "<" (L : Duration_T; R : Duration_T) return Boolean; 
  637.    function ">" (L : Duration_T; R : Duration_T) return Boolean; 
  638.    function "-" (L : Time_T; R : Time_T) return Duration_T; 
  639.  
  640.  
  641.    --  ------------------------------------------------- 
  642.    --                 CompressionSettings_T 
  643.    --  ------------------------------------------------- 
  644.  
  645.    type CompressionSettings_T is record 
  646.       Compression_Ids              : aliased Unsigned_Long; 
  647.       Writer_Compression_Level     : aliased Unsigned_Long; 
  648.       Writer_Compression_Threshold : aliased Long; 
  649.    end record with 
  650.       Convention => C; 
  651.    --  <defgroup>CompressionSettingsQosGroupDocs</defgroup> 
  652.    --  <dref>CompressionSettings_t</dref> 
  653.    --  <dref name="Compression_Ids">CompressionSettings_t_compression_ids</dref> 
  654.    --  <dref name="Writer_Compression_Level">CompressionSettings_t_writer_compression_level</dref> 
  655.    --  <dref name="Writer_Compression_Threshold">CompressionSettings_t_writer_compression_threshold</dref> 
  656.  
  657.    COMPRESSION_SETTINGS_T_DEFAULT : constant CompressionSettings_T := (0, 10, 0); 
  658.    --  ------------------------------------------------- 
  659.    --                 InstanceHandle_t 
  660.    --  ------------------------------------------------- 
  661.  
  662.    type Builtin_Topic_Key_Type_Native is new Interfaces.Unsigned_32; 
  663.  
  664.    type InstanceHandle_T is new RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_InstanceHandle_t; 
  665.    --  <dref>InstanceHandle_t</dref> 
  666.  
  667.    Null_InstanceHandle_T : aliased constant InstanceHandle_T := InstanceHandle_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_HANDLE_NIL); 
  668.    HANDLE_NIL      : aliased constant InstanceHandle_T := Null_InstanceHandle_T; 
  669.    --  <dref>InstanceHandle_t_NIL</dref> 
  670.  
  671.    type InstanceHandle_T_Access is access all InstanceHandle_T; 
  672.  
  673.    type InstanceHandle_T_Array is array (Natural range <>) of aliased InstanceHandle_T; 
  674.    procedure Initialize (Self  : in out InstanceHandle_T); 
  675.    procedure Finalize (Self  : in out InstanceHandle_T); 
  676.    procedure Copy (Dst : in out InstanceHandle_T; Src : in InstanceHandle_T); 
  677.    --    package InstanceHandle_Seq is new Ada.Containers.Vectors (Positive, InstanceHandle_T); 
  678.  
  679.    package InstanceHandle_Seq is new DDS_Support.Sequences_Generic 
  680.      (InstanceHandle_T, 
  681.       InstanceHandle_T_Access, 
  682.       DDS.Natural, 
  683.       1, 
  684.       InstanceHandle_T_Array); 
  685.    --  <dref>InstanceHandleSeq</dref> 
  686.  
  687.    --  <dref>InstanceHandle_t_equals</dref> 
  688.    function InstanceHandle_Equals 
  689.      (Self : not null access InstanceHandle_T; Other : not null access InstanceHandle_T) return Boolean; 
  690.  
  691.    function "=" (Self : not null access InstanceHandle_T; Other : not null access InstanceHandle_T) 
  692.                  return Boolean renames InstanceHandle_Equals; 
  693.  
  694.    --  <dref>InstanceHandle_t_is_nil</dref> 
  695.    function InstanceHandle_Is_Nil 
  696.      (Self : not null access InstanceHandle_T) return Boolean; 
  697.    type Guid_T; 
  698.    function Hash (Handle : DDS.InstanceHandle_T) return Ada.Containers.Hash_Type; 
  699.    function Create (From : DDS.Guid_T) return DDS.InstanceHandle_T; 
  700.  
  701.    --  ------------------------------------------------- 
  702.    --                 Guid_t 
  703.    --  ------------------------------------------------- 
  704.    subtype GUID_T_Value_Array is  Octet_Array (0 .. 15); 
  705.    type Guid_T is record 
  706.       Value : aliased GUID_T_Value_Array := (others => 0); 
  707.    end record with 
  708.      Convention => C; 
  709.    --  <defgroup>GUIDSupportGroupDocs</defgroup> 
  710.    --  <dref>GUID_t</dref> 
  711.    --  <dref name="Value">GUID_t_value</dref> 
  712.  
  713.    type Guid_T_Access is access all Guid_T; 
  714.  
  715.    GUID_AUTO : aliased constant Guid_T := (Value => (others => 0)); 
  716.    --  <dref>GUID_t_AUTO</dref> 
  717.  
  718.    GUID_UNKNOWN : Guid_T renames GUID_AUTO; 
  719.    --  <dref>GUID_t_UNKNOWN</dref> 
  720.  
  721.    --  <dref>GUID_t_equals</dref> 
  722.    function Guid_Equals 
  723.      (Self  : not null Guid_T_Access; 
  724.       Other : not null Guid_T_Access) 
  725.       return Boolean; 
  726.  
  727.    --  <dref>GUID_t_compare</dref> 
  728.    function Guid_Compare 
  729.      (Self  : not null Guid_T_Access; 
  730.       Other : not null Guid_T_Access) 
  731.       return Boolean; 
  732.  
  733.    --  <dref>GUID_t_copy</dref> 
  734.    procedure Guid_Copy 
  735.      (Self  : Guid_T_Access; 
  736.       Other : Guid_T_Access); 
  737.  
  738.    pragma Import (C, Guid_Copy, "DDS_GUID_copy"); 
  739.  
  740.    procedure Guid_Print (Self   : Guid_T_Access; 
  741.                          Desc   : String; 
  742.                          Indent : Unsigned_Long); 
  743.  
  744.    pragma Import (C, Guid_Print, "DDS_GUID_print"); 
  745.  
  746.    procedure Guid_Zero (Self   : Guid_T_Access); 
  747.  
  748.    pragma Import (C, Guid_Zero, "DDS_GUID_zero"); 
  749.  
  750.    function Image (Item : Guid_T) return DDS.String; 
  751.    function Image (Item : Guid_T) return Standard.String; 
  752.  
  753.    function Value (Item : Standard.String) return Guid_T with 
  754.      Pre => (Item'Length = GUID_T_Value_Array'Length * 2); 
  755.  
  756.    --  ------------------------------------------------- 
  757.    --                 SequenceNumber_t 
  758.    --  ------------------------------------------------- 
  759.  
  760.    type SequenceNumber_T is record 
  761.       High : aliased DDS.Long := 0; 
  762.       Low  : aliased DDS.Unsigned_Long := 0; 
  763.    end record with 
  764.      Convention => C; 
  765.    --  <defgroup>SequenceNumberSupportGroupDocs</defgroup> 
  766.    --  <dref>SequenceNumber_t</dref> 
  767.    --  <dref name="High">SequenceNumber_t_high</dref> 
  768.    --  <dref name="Low">SequenceNumber_t_low</dref> 
  769.  
  770.    type SequenceNumber_T_Access is access all  SequenceNumber_T; 
  771.  
  772.    SEQUENCE_NUMBER_UNKNOWN : constant  SequenceNumber_T := (High => -1, Low =>  4294967295); 
  773.    --  <dref>SequenceNumber_t_UNKNOWN</dref> 
  774.  
  775.    SEQUENCE_NUMBER_ZERO    : constant  SequenceNumber_T := (High =>  0, Low =>  0); 
  776.    --  <dref>SequenceNumber_t_ZERO</dref> 
  777.  
  778.  
  779.    SEQUENCE_NUMBER_MAX     : constant  SequenceNumber_T := (High =>  2147483647, Low =>  4294967295); 
  780.    --  <dref>SequenceNumber_t_MAX</dref> 
  781.  
  782.    AUTO_SEQUENCE_NUMBER    : constant SequenceNumber_T := (High => -1, Low =>  4294967295); 
  783.    --  <dref>SequenceNumber_t_AUTO</dref> 
  784.  
  785.  
  786.    function "-" (L, R : SequenceNumber_T) return SequenceNumber_T; 
  787.    function "+" (L, R : SequenceNumber_T) return SequenceNumber_T; 
  788.    function ">" (L, R : SequenceNumber_T) return Boolean; 
  789.    function "<" (L, R : SequenceNumber_T) return Boolean; 
  790.  
  791.    procedure Increment (Item : in out SequenceNumber_T); 
  792.    procedure Decrement (Item : in out SequenceNumber_T); 
  793.    function Image (Item : SequenceNumber_T) return Standard.String; 
  794.  
  795.    --  ------------------------------------------------- 
  796.    --                 OriginalWriterInfo_t 
  797.    --  ------------------------------------------------- 
  798.  
  799.    type OriginalWriterInfo_T is record 
  800.       Writer_Guid     : Guid_T; 
  801.       Sequence_Number : SequenceNumber_T; 
  802.    end record with 
  803.      Convention => C; 
  804.    --  <dref internal="true"></dref> 
  805.  
  806.  
  807.    --  ------------------------------------------------- 
  808.    --                 ReturnCode_t 
  809.    --  ------------------------------------------------- 
  810.  
  811.    ERROR                   : exception; 
  812.    --  <defgroup>ReturnCodeGroupDocs</defgroup> 
  813.    --  <dref>ReturnCode_t</dref> 
  814.    --  <dref>ReturnCode_t_RETCODE_ERROR</dref> 
  815.  
  816.    UNSUPPORTED             : exception; 
  817.    --  <dref>ReturnCode_t_RETCODE_UNSUPPORTED</dref> 
  818.  
  819.    BAD_PARAMETER           : exception; 
  820.    --  <dref>ReturnCode_t_RETCODE_BAD_PARAMETER</dref> 
  821.  
  822.    PRECONDITION_NOT_MET    : exception; 
  823.    --  <dref>ReturnCode_t_RETCODE_PRECONDITION_NOT_MET</dref> 
  824.  
  825.    OUT_OF_RESOURCES        : exception; 
  826.    --  <dref>ReturnCode_t_RETCODE_OUT_OF_RESOURCES</dref> 
  827.  
  828.    NOT_ENABLED             : exception; 
  829.    --  <dref>ReturnCode_t_RETCODE_NOT_ENABLED</dref> 
  830.  
  831.    IMMUTABLE_POLICY        : exception; 
  832.    --  <dref>ReturnCode_t_RETCODE_IMMUTABLE_POLICY</dref> 
  833.  
  834.    INCONSISTENT_POLICY     : exception; 
  835.    --  <dref>ReturnCode_t_RETCODE_INCONSISTENT_POLICY</dref> 
  836.  
  837.    ALREADY_DELETED         : exception; 
  838.    --  <dref>ReturnCode_t_RETCODE_ALREADY_DELETED</dref> 
  839.  
  840.    TIMEOUT                 : exception; 
  841.    --  <dref>ReturnCode_t_RETCODE_TIMEOUT</dref> 
  842.  
  843.    NO_DATA                 : exception; 
  844.    --  <dref>ReturnCode_t_RETCODE_NO_DATA</dref> 
  845.  
  846.    ILLEGAL_OPERATION       : exception; 
  847.    --  <dref>ReturnCode_t_RETCODE_ILLEGAL_OPERATION</dref> 
  848.  
  849.    NOT_ALLOWED_BY_SECURITY : exception; 
  850.    --  <dref>ReturnCode_t_RETCODE_NOT_ALLOWED_BY_SECURITY</dref> 
  851.  
  852.    type ReturnCode_T is 
  853.      (RETCODE_OK, 
  854.       --  Successful return. 
  855.       RETCODE_ERROR, 
  856.       --  Generic, unspecified error. 
  857.  
  858.       RETCODE_UNSUPPORTED, 
  859.       --  Unsupported operation. Can only returned by operations that are unsupported. 
  860.       RETCODE_BAD_PARAMETER, 
  861.       RETCODE_PRECONDITION_NOT_MET, 
  862.       RETCODE_OUT_OF_RESOURCES, 
  863.       RETCODE_NOT_ENABLED, 
  864.       RETCODE_IMMUTABLE_POLICY, 
  865.       RETCODE_INCONSISTENT_POLICY, 
  866.       RETCODE_ALREADY_DELETED, 
  867.       RETCODE_TIMEOUT, 
  868.       RETCODE_NO_DATA, 
  869.       RETCODE_ILLEGAL_OPERATION, 
  870.       RETCODE_NOT_ALLOWED_BY_SECURITY 
  871.      ) with Default_Value => RETCODE_OK; 
  872.  
  873.    pragma Convention (C, ReturnCode_T); 
  874.  
  875.    procedure Ret_Code_To_Exception (Code : ReturnCode_T; Message : Standard.String := ""); 
  876.  
  877.    --  ------------------------------------------------- 
  878.    --                 Status Types 
  879.    --  ------------------------------------------------- 
  880.  
  881.    type StatusKind is new Unsigned_Long; 
  882.    --  <dref>StatusKind</dref> 
  883.  
  884.    INCONSISTENT_TOPIC_STATUS         : constant StatusKind := 2#0000_0000_0000_0001#; 
  885.    --  <dref>StatusKind_INCONSISTENT_TOPIC_STATUS</dref> 
  886.  
  887.    OFFERED_DEADLINE_MISSED_STATUS    : constant StatusKind := 2#0000_0000_0000_0010#; 
  888.    --  <dref>StatusKind_OFFERED_DEADLINE_MISSED_STATUS</dref> 
  889.  
  890.    REQUESTED_DEADLINE_MISSED_STATUS  : constant StatusKind := 2#0000_0000_0000_0100#; 
  891.    --  <dref>StatusKind_REQUESTED_DEADLINE_MISSED_STATUS</dref> 
  892.  
  893.    OFFERED_INCOMPATIBLE_QOS_STATUS   : constant StatusKind := 2#0000_0000_0010_0000#; 
  894.    --  <dref>StatusKind_OFFERED_INCOMPATIBLE_QOS_STATUS</dref> 
  895.  
  896.    REQUESTED_INCOMPATIBLE_QOS_STATUS : constant StatusKind := 2#0000_0000_0100_0000#; 
  897.    --  <dref>StatusKind_REQUESTED_INCOMPATIBLE_QOS_STATUS</dref> 
  898.  
  899.    SAMPLE_LOST_STATUS                : constant StatusKind := 2#0000_0000_1000_0000#; 
  900.    --  <dref>StatusKind_SAMPLE_LOST_STATUS</dref> 
  901.  
  902.    SAMPLE_REJECTED_STATUS            : constant StatusKind := 2#0000_0001_0000_0000#; 
  903.    --  <dref>StatusKind_SAMPLE_REJECTED_STATUS</dref> 
  904.  
  905.    DATA_ON_READERS_STATUS            : constant StatusKind := 2#0000_0010_0000_0000#; 
  906.    --  <dref>StatusKind_DATA_ON_READERS_STATUS</dref> 
  907.  
  908.    DATA_AVAILABLE_STATUS             : constant StatusKind := 2#0000_0100_0000_0000#; 
  909.    --  <dref>StatusKind_DATA_AVAILABLE_STATUS</dref> 
  910.  
  911.    LIVELINESS_LOST_STATUS            : constant StatusKind := 2#0000_1000_0000_0000#; 
  912.    --  <dref>StatusKind_LIVELINESS_LOST_STATUS</dref> 
  913.  
  914.    LIVELINESS_CHANGED_STATUS         : constant StatusKind := 2#0001_0000_0000_0000#; 
  915.    --  <dref>StatusKind_LIVELINESS_CHANGED_STATUS</dref> 
  916.  
  917.    PUBLICATION_MATCH_STATUS          : constant StatusKind := 2#0010_0000_0000_0000#; 
  918.    --  <dref>StatusKind_PUBLICATION_MATCHED_STATUS</dref> 
  919.  
  920.    SUBSCRIPTION_MATCH_STATUS         : constant StatusKind := 2#0100_0000_0000_0000#; 
  921.    --  <dref>StatusKind_SUBSCRIPTION_MATCHED_STATUS</dref> 
  922.    pragma Warnings (Off); 
  923.    function "+" (Left, Right : StatusKind) return StatusKind renames "or"; 
  924.    pragma Warnings (On); 
  925.  
  926.    --   /* --- Begin extended statuses --- */ 
  927.    --   /* Previously, the "right"-most 24 bits of the StatusMask were reserved 
  928.    --    * for standard statuses, with the remaining 8 bits for extended statuses. 
  929.    --    Now, as of 4.5b, with more than 8 extended statuses, and with no "official" 
  930.    --    documented requirement of having only 8 bits, additional bits are being 
  931.    --    designated for extended statuses. 
  932.    --    */ 
  933.  
  934.    DATA_WRITER_APPLICATION_ACKNOWLEDGMENT_STATUS : constant StatusKind := 
  935.                                                      2#0000_0000_0100_0000_0000_0000_0000_0000#; 
  936.    --  <dref>StatusKind_DATA_WRITER_APPLICATION_ACKNOWLEDGMENT_STATUS</dref> 
  937.  
  938.    DATA_WRITER_INSTANCE_REPLACED_STATUS       : constant StatusKind := 
  939.                                                   2#0000_0000_1000_0000_0000_0000_0000_0000#; 
  940.    --  <dref>StatusKind_DATA_WRITER_INSTANCE_REPLACED_STATUS</dref> 
  941.  
  942.    RELIABLE_WRITER_CACHE_CHANGED_STATUS       : constant StatusKind := 
  943.                                                   2#0000_0001_0000_0000_0000_0000_0000_0000#; 
  944.    --  <dref>StatusKind_RELIABLE_WRITER_CACHE_CHANGED_STATUS</dref> 
  945.  
  946.    RELIABLE_READER_ACTIVITY_CHANGED_STATUS    : constant StatusKind := 
  947.                                                   2#0000_0010_0000_0000_0000_0000_0000_0000#; 
  948.    --  <dref>StatusKind_RELIABLE_READER_ACTIVITY_CHANGED_STATUS</dref> 
  949.  
  950.    DATA_WRITER_CACHE_STATUS                   : constant StatusKind := 
  951.                                                   2#0000_0100_0000_0000_0000_0000_0000_0000#; 
  952.    --  <dref>StatusKind_DATA_WRITER_CACHE_STATUS</dref> 
  953.  
  954.    DATA_WRITER_PROTOCOL_STATUS                : constant StatusKind := 
  955.                                                   2#0000_1000_0000_0000_0000_0000_0000_0000#; 
  956.    --  <dref>StatusKind_DATA_WRITER_PROTOCOL_STATUS</dref> 
  957.  
  958.    DATA_READER_CACHE_STATUS                   : constant StatusKind := 
  959.                                                   2#0001_0000_0000_0000_0000_0000_0000_0000#; 
  960.    --  <dref>StatusKind_DATA_READER_CACHE_STATUS</dref> 
  961.  
  962.    DATA_READER_PROTOCOL_STATUS                : constant StatusKind := 
  963.                                                   2#0010_0000_0000_0000_0000_0000_0000_0000#; 
  964.    --  <dref>StatusKind_DATA_READER_PROTOCOL_STATUS</dref> 
  965.  
  966.    DATA_WRITER_DESTINATION_UNREACHABLE_STATUS : constant StatusKind := 
  967.                                                   2#0100_0000_0000_0000_0000_0000_0000_0000#; 
  968.    --  <dref internal="true"></dref> 
  969.  
  970.    DATA_WRITER_SAMPLE_REMOVED_STATUS          : constant StatusKind := 
  971.                                                   2#1000_0000_0000_0000_0000_0000_0000_0000#; 
  972.    --  <dref internal="true"></dref> 
  973.  
  974.    subtype StatusMask is StatusKind; 
  975.    --  <defgroup>StatusKindGroupDocs</defgroup> 
  976.    --  <dref>StatusMask</dref> 
  977.    --  <dref>Shared_status_mask_description</dref> 
  978.  
  979.    STATUS_MASK_NONE : constant StatusMask := 2#0000_0000_0000_0000_0000_0000_0000_0000#; 
  980.    --  <dref>STATUS_MASK_NONE</dref> 
  981.  
  982.    STATUS_MASK_ALL  : constant StatusMask := 2#1111_1111_1111_1111_1111_1111_1111_1111#; 
  983.    --  <dref>STATUS_MASK_ALL</dref> 
  984.  
  985.    type StatusKind_Access is access constant StatusKind; 
  986.  
  987.    --  ------------------------------------------------- 
  988.    --                 Thread Settings 
  989.    --  ------------------------------------------------- 
  990.  
  991.    type ThreadSettings is new Unsigned_Long; 
  992.    --  <defgroup>ThreadSettingsGroupDocs</defgroup> 
  993.  
  994.    subtype ThreadSettingsKindMask is ThreadSettings; 
  995.    --  <dref>ThreadSettingsKindMask</dref> 
  996.  
  997.    THREAD_SETTINGS_OPTION_DEFAULT             : constant := 16#00#; 
  998.  
  999.    THREAD_SETTINGS_OPTION_FLOATING_POINT      : constant := 16#01#; 
  1000.    --  <dref>ThreadSettingsKind</dref> 
  1001.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_FLOATING_POINT</dref> 
  1002.  
  1003.    THREAD_SETTINGS_OPTION_STDIO               : constant := 16#02#; 
  1004.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_STDIO</dref> 
  1005.  
  1006.    THREAD_SETTINGS_OPTION_REALTIME_PRIORITY   : constant := 16#08#; 
  1007.  
  1008.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_REALTIME_PRIORITY</dref> 
  1009.  
  1010.    THREAD_SETTINGS_OPTION_PRIORITY_ENFORCE    : constant := 16#10#; 
  1011.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_PRIORITY_ENFORCE</dref> 
  1012.  
  1013.    THREAD_SETTINGS_OPTION_CANCEL_ASYNCHRONOUS : constant := 16#20#; 
  1014.    --  <dref>ThreadSettingsKind_THREAD_SETTINGS_CANCEL_ASYNCHRONOUS</dref> 
  1015.  
  1016.    THREAD_SETTINGS_KIND_MASK_DEFAULT          : constant ThreadSettingsKindMask := 
  1017.                                                   THREAD_SETTINGS_OPTION_DEFAULT; 
  1018.    --  <dref>THREAD_SETTINGS_KIND_MASK_DEFAULT</dref> 
  1019.  
  1020.    type ThreadSettingsCpuRotationKind_T is new Unsigned_Long; 
  1021.    --  <dref>ThreadSettingsCpuRotationKind</dref> 
  1022.  
  1023.    THREAD_SETTINGS_CPU_NO_ROTATION            : constant ThreadSettingsCpuRotationKind_T := 0; 
  1024.    --  <dref>ThreadSettingsCpuRotationKind_THREAD_SETTINGS_CPU_NO_ROTATION</dref> 
  1025.  
  1026.    THREAD_SETTINGS_CPU_RR_ROTATION            : constant ThreadSettingsCpuRotationKind_T := 1; 
  1027.    --  <dref>ThreadSettingsCpuRotationKind_THREAD_SETTINGS_CPU_RR_ROTATION</dref> 
  1028.  
  1029.    THREAD_SETTINGS_CPU_ROTATION_DEFAULT       : constant ThreadSettingsCpuRotationKind_T := 
  1030.                                                   THREAD_SETTINGS_CPU_NO_ROTATION; 
  1031.    --  <dref internal="true"></dref> 
  1032.  
  1033.    type ThreadSettings_T is record 
  1034.       Mask         : aliased ThreadSettingsKindMask := THREAD_SETTINGS_OPTION_DEFAULT; 
  1035.       Priority     : aliased Long := -9999999; 
  1036.       Stack_Size   : aliased Long := -1; 
  1037.       Cpu_List     : aliased Long_Seq.Sequence; 
  1038.       Cpu_Rotation : aliased ThreadSettingsCpuRotationKind_T := THREAD_SETTINGS_CPU_ROTATION_DEFAULT; 
  1039.    end record with 
  1040.      Convention => C; 
  1041.    --  <dref>ThreadSettings_t</dref> 
  1042.    --  <dref name="Mask">ThreadSettings_t_mask</dref> 
  1043.    --  <dref name="Priority">ThreadSettings_t_priority</dref> 
  1044.    --  <dref name="Stack_Size">ThreadSettings_t_stack_size</dref> 
  1045.    --  <dref name="Cpu_List">ThreadSettings_t_cpu_list</dref> 
  1046.    --  <dref name="Cpu_Rotation">ThreadSettings_t_cpu_rotation</dref> 
  1047.  
  1048.    type ThreadSettings_T_Access is access all  ThreadSettings_T; 
  1049.  
  1050.    procedure ThreadSettings_T_Get_Default (Self  : not null ThreadSettings_T_Access); 
  1051.  
  1052.    pragma Import (C, ThreadSettings_T_Get_Default, "DDS_ThreadSettings_get_default"); 
  1053.  
  1054.    function ThreadSettings_T_Is_Equal 
  1055.      (Self  : not null ThreadSettings_T_Access; 
  1056.       Other : not null ThreadSettings_T_Access) 
  1057.       return Boolean; 
  1058.  
  1059.    --  ------------------------------------------------- 
  1060.    --                 QoS Types 
  1061.    --  ------------------------------------------------- 
  1062.  
  1063.    type QosPolicyId_T is new Unsigned_Long; 
  1064.    --  <defgroup>QosPoliciesGroupDocs</defgroup> 
  1065.    --  <dref>QosPolicyId_t</dref> 
  1066.  
  1067.    QOS_POLICY_COUNT : constant Long := 63; 
  1068.    --  <dref>QOS_POLICY_COUNT</dref> 
  1069.  
  1070.    INVALID_QOS_POLICY_ID : constant QosPolicyId_T := 0; 
  1071.    --  <dref>QosPolicyId_t_INVALID_QOS_POLICY_ID</dref> 
  1072.  
  1073.    USERDATA_QOS_POLICY_ID : constant QosPolicyId_T := 1; 
  1074.    --  <dref>QosPolicyId_t_USERDATA_QOS_POLICY_ID</dref> 
  1075.  
  1076.    DURABILITY_QOS_POLICY_ID : constant QosPolicyId_T := 2; 
  1077.    --  <dref>QosPolicyId_t_DURABILITY_QOS_POLICY_ID</dref> 
  1078.  
  1079.    PRESENTATION_QOS_POLICY_ID : constant QosPolicyId_T := 3; 
  1080.    --  <dref>QosPolicyId_t_PRESENTATION_QOS_POLICY_ID</dref> 
  1081.  
  1082.    DEADLINE_QOS_POLICY_ID : constant QosPolicyId_T := 4; 
  1083.    --  <dref>QosPolicyId_t_DEADLINE_QOS_POLICY_ID</dref> 
  1084.  
  1085.    LATENCYBUDGET_QOS_POLICY_ID : constant QosPolicyId_T := 5; 
  1086.    --  <dref>QosPolicyId_t_LATENCYBUDGET_QOS_POLICY_ID</dref> 
  1087.  
  1088.    OWNERSHIP_QOS_POLICY_ID : constant QosPolicyId_T := 6; 
  1089.    --  <dref>QosPolicyId_t_OWNERSHIP_QOS_POLICY_ID</dref> 
  1090.  
  1091.    OWNERSHIPSTRENGTH_QOS_POLICY_ID : constant QosPolicyId_T := 7; 
  1092.    --  <dref>QosPolicyId_t_OWNERSHIPSTRENGTH_QOS_POLICY_ID</dref> 
  1093.  
  1094.    LIVELINESS_QOS_POLICY_ID : constant QosPolicyId_T := 8; 
  1095.    --  <dref>QosPolicyId_t_LIVELINESS_QOS_POLICY_ID</dref> 
  1096.  
  1097.    TIMEBASEDFILTER_QOS_POLICY_ID : constant QosPolicyId_T := 9; 
  1098.    --  <dref>QosPolicyId_t_TIMEBASEDFILTER_QOS_POLICY_ID</dref> 
  1099.  
  1100.    PARTITION_QOS_POLICY_ID : constant QosPolicyId_T := 10; 
  1101.    --  <dref>QosPolicyId_t_PARTITION_QOS_POLICY_ID</dref> 
  1102.  
  1103.    RELIABILITY_QOS_POLICY_ID : constant QosPolicyId_T := 11; 
  1104.    --  <dref>QosPolicyId_t_RELIABILITY_QOS_POLICY_ID</dref> 
  1105.  
  1106.    DESTINATIONORDER_QOS_POLICY_ID : constant QosPolicyId_T := 12; 
  1107.    --  <dref>QosPolicyId_t_DESTINATIONORDER_QOS_POLICY_ID</dref> 
  1108.  
  1109.    HISTORY_QOS_POLICY_ID : constant QosPolicyId_T := 13; 
  1110.    --  <dref>QosPolicyId_t_HISTORY_QOS_POLICY_ID</dref> 
  1111.  
  1112.    RESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 14; 
  1113.    --  <dref>QosPolicyId_t_RESOURCELIMITS_QOS_POLICY_ID</dref> 
  1114.  
  1115.    ENTITYFACTORY_QOS_POLICY_ID : constant QosPolicyId_T := 15; 
  1116.    --  <dref>QosPolicyId_t_ENTITYFACTORY_QOS_POLICY_ID</dref> 
  1117.  
  1118.    WRITERDATALIFECYCLE_QOS_POLICY_ID : constant QosPolicyId_T := 16; 
  1119.    --  <dref>QosPolicyId_t_WRITERDATALIFECYCLE_QOS_POLICY_ID</dref> 
  1120.  
  1121.    READERDATALIFECYCLE_QOS_POLICY_ID : constant QosPolicyId_T := 17; 
  1122.    --  <dref>QosPolicyId_t_READERDATALIFECYCLE_QOS_POLICY_ID</dref> 
  1123.  
  1124.    TOPICDATA_QOS_POLICY_ID : constant QosPolicyId_T := 18; 
  1125.    --  <dref>QosPolicyId_t_TOPICDATA_QOS_POLICY_ID</dref> 
  1126.  
  1127.    GROUPDATA_QOS_POLICY_ID : constant QosPolicyId_T := 19; 
  1128.    --  <dref>QosPolicyId_t_GROUPDATA_QOS_POLICY_ID</dref> 
  1129.  
  1130.    TRANSPORTPRIORITY_QOS_POLICY_ID : constant QosPolicyId_T := 20; 
  1131.    --  <dref>QosPolicyId_t_TRANSPORTPRIORITY_QOS_POLICY_ID</dref> 
  1132.  
  1133.    LIFESPAN_QOS_POLICY_ID : constant QosPolicyId_T := 21; 
  1134.    --  <dref>QosPolicyId_t_LIFESPAN_QOS_POLICY_ID</dref> 
  1135.  
  1136.    DURABILITYSERVICE_QOS_POLICY_ID : constant QosPolicyId_T := 22; 
  1137.    --  <dref>QosPolicyId_t_DURABILITYSERVICE_QOS_POLICY_ID</dref> 
  1138.  
  1139.    DATA_REPRESENTATION_QOS_POLICY_ID : constant QosPolicyId_T := 23; 
  1140.    --  <dref>QosPolicyId_t_DATA_REPRESENTATION_QOS_POLICY_ID</dref> 
  1141.  
  1142.    TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_ID : constant QosPolicyId_T := 24; 
  1143.    --  <dref>QosPolicyId_t_TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_ID</dref> 
  1144.  
  1145.    DATATAG_QOS_POLICY_ID : constant QosPolicyId_T := 25; 
  1146.    --  <dref>QosPolicyId_t_DATATAG_QOS_POLICY_ID</dref> 
  1147.  
  1148.    WIREPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1000; 
  1149.    --  <dref>QosPolicyId_t_WIREPROTOCOL_QOS_POLICY_ID</dref> 
  1150.  
  1151.    DISCOVERY_QOS_POLICY_ID : constant QosPolicyId_T := 1001; 
  1152.    --  <dref>QosPolicyId_t_DISCOVERY_QOS_POLICY_ID</dref> 
  1153.  
  1154.    DATAREADERRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1003; 
  1155.    --  <dref>QosPolicyId_t_DATAREADERRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1156.  
  1157.    DATAWRITERRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1004; 
  1158.    --  <dref>QosPolicyId_t_DATAWRITERRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1159.  
  1160.    DATAREADERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1005; 
  1161.    --  <dref>QosPolicyId_t_DATAREADERPROTOCOL_QOS_POLICY_ID</dref> 
  1162.  
  1163.    DATAWRITERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1006; 
  1164.    --  <dref>QosPolicyId_t_DATAWRITERPROTOCOL_QOS_POLICY_ID</dref> 
  1165.  
  1166.    DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1007; 
  1167.    --  <dref>QosPolicyId_t_DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1168.  
  1169.    EVENT_QOS_POLICY_ID : constant QosPolicyId_T := 1008; 
  1170.    --  <dref>QosPolicyId_t_EVENT_QOS_POLICY_ID</dref> 
  1171.  
  1172.    DATABASE_QOS_POLICY_ID : constant QosPolicyId_T := 1009; 
  1173.    --  <dref>QosPolicyId_t_DATABASE_QOS_POLICY_ID</dref> 
  1174.  
  1175.    RECEIVERPOOL_QOS_POLICY_ID : constant QosPolicyId_T := 1010; 
  1176.    --  <dref>QosPolicyId_t_RECEIVERPOOL_QOS_POLICY_ID</dref> 
  1177.  
  1178.    DISCOVERYCONFIG_QOS_POLICY_ID : constant QosPolicyId_T := 1011; 
  1179.    --  <dref>QosPolicyId_t_DISCOVERYCONFIG_QOS_POLICY_ID</dref> 
  1180.  
  1181.    EXCLUSIVEAREA_QOS_POLICY_ID : constant QosPolicyId_T := 1012; 
  1182.    --  <dref>QosPolicyId_t_EXCLUSIVEAREA_QOS_POLICY_ID</dref> 
  1183.  
  1184.    USEROBJECT_QOS_POLICY_ID : constant QosPolicyId_T := 1013; 
  1185.    --  <dref internal="true">QosPolicyId_t_USEROBJECT_QOS_POLICY_ID</dref> 
  1186.  
  1187.    SYSTEMRESOURCELIMITS_QOS_POLICY_ID : constant QosPolicyId_T := 1014; 
  1188.    --  <dref>QosPolicyId_t_SYSTEMRESOURCELIMITS_QOS_POLICY_ID</dref> 
  1189.  
  1190.    TRANSPORTSELECTION_QOS_POLICY_ID : constant QosPolicyId_T := 1015; 
  1191.    --  <dref>QosPolicyId_t_TRANSPORTSELECTION_QOS_POLICY_ID</dref> 
  1192.  
  1193.    TRANSPORTUNICAST_QOS_POLICY_ID : constant QosPolicyId_T := 1016; 
  1194.    --  <dref>QosPolicyId_t_TRANSPORTUNICAST_QOS_POLICY_ID</dref> 
  1195.  
  1196.    TRANSPORTMULTICAST_QOS_POLICY_ID : constant QosPolicyId_T := 1017; 
  1197.    --  <dref>QosPolicyId_t_TRANSPORTMULTICAST_QOS_POLICY_ID</dref> 
  1198.  
  1199.    TRANSPORTBUILTIN_QOS_POLICY_ID : constant QosPolicyId_T := 1018; 
  1200.    --  <dref>QosPolicyId_t_TRANSPORTBUILTIN_QOS_POLICY_ID</dref> 
  1201.  
  1202.    TYPESUPPORT_QOS_POLICY_ID : constant QosPolicyId_T := 1019; 
  1203.    --  <dref>QosPolicyId_t_TYPESUPPORT_QOS_POLICY_ID</dref> 
  1204.  
  1205.    PROPERTY_QOS_POLICY_ID : constant QosPolicyId_T := 1020; 
  1206.    --  <dref>QosPolicyId_t_PROPERTY_QOS_POLICY_ID</dref> 
  1207.  
  1208.    PUBLISHMODE_QOS_POLICY_ID : constant QosPolicyId_T := 1021; 
  1209.    --  <dref>QosPolicyId_t_PUBLISHMODE_QOS_POLICY_ID</dref> 
  1210.  
  1211.    ASYNCHRONOUSPUBLISHER_QOS_POLICY_ID : constant QosPolicyId_T := 1022; 
  1212.    --  <dref>QosPolicyId_t_ASYNCHRONOUSPUBLISHER_QOS_POLICY_ID</dref> 
  1213.  
  1214.    ENTITYNAME_QOS_POLICY_ID : constant QosPolicyId_T := 1023; 
  1215.    --  <dref>QosPolicyId_t_ENTITYNAME_QOS_POLICY_ID</dref> 
  1216.  
  1217.    SERVICE_QOS_POLICY_ID : constant QosPolicyId_T := 1025; 
  1218.    --  <dref internal="true"></dref> 
  1219.  
  1220.    BATCH_QOS_POLICY_ID : constant QosPolicyId_T := 1026; 
  1221.    --  <dref>QosPolicyId_t_BATCH_QOS_POLICY_ID</dref> 
  1222.  
  1223.    PROFILE_QOS_POLICY_ID : constant QosPolicyId_T := 1027; 
  1224.    --  <dref>QosPolicyId_t_PROFILE_QOS_POLICY_ID</dref> 
  1225.  
  1226.    LOCATORFILTER_QOS_POLICY_ID : constant QosPolicyId_T := 1028; 
  1227.    --  <dref>QosPolicyId_t_LOCATORFILTER_QOS_POLICY_ID</dref> 
  1228.  
  1229.    MULTICHANNEL_QOS_POLICY_ID : constant QosPolicyId_T := 1029; 
  1230.    --  <dref>QosPolicyId_t_MULTICHANNEL_QOS_POLICY_ID</dref> 
  1231.  
  1232.    TRANSPORTENCAPSULATION_QOS_POLICY_ID : constant QosPolicyId_T := 1030; 
  1233.    --  <dref internal="true"></dref> 
  1234.  
  1235.    PUBLISHERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1031; 
  1236.    --  <dref internal="true"></dref> 
  1237.  
  1238.    SUBSCRIBERPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1032; 
  1239.    --  <dref internal="true"></dref> 
  1240.  
  1241.    TOPICPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1033; 
  1242.    --  <dref internal="true"></dref> 
  1243.  
  1244.    DOMAINPARTICIPANTPROTOCOL_QOS_POLICY_ID : constant QosPolicyId_T := 1034; 
  1245.    --  <dref internal="true"></dref> 
  1246.  
  1247.    AVAILABILITY_QOS_POLICY_ID : constant QosPolicyId_T := 1035; 
  1248.    --  <dref>QosPolicyId_t_AVAILABILITY_QOS_POLICY_ID</dref> 
  1249.  
  1250.    TRANSPORTMULTICASTMAPPING_QOS_POLICY_ID : constant QosPolicyId_T := 1036; 
  1251.    --  QosPolicyId_t_TRANSPORTMULTICASTMAPPING_QOS_POLICY_ID -- documentation removed in ifdoc 
  1252.  
  1253.    LOGGING_QOS_POLICY_ID : constant QosPolicyId_T := 1037; 
  1254.    --  <dref>QosPolicyId_t_LOGGING_QOS_POLICY_ID</dref> 
  1255.  
  1256.    TOPICQUERYDISPATCH_QOS_POLICY_ID : constant QosPolicyId_T := 1038; 
  1257.    --  <dref>QosPolicyId_t_TOPICQUERYDISPATCH_QOS_POLICY_ID</dref> 
  1258.  
  1259.    DATAWRITERTRANSFERMODE_QOS_POLICY_ID : constant QosPolicyId_T := 1039; 
  1260.    --  <dref>QosPolicyId_t_DATAWRITERTRANSFERMODE_QOS_POLICY_ID</dref> 
  1261.  
  1262.    type QosPolicyCount is record 
  1263.       Policy_Id : aliased QosPolicyId_T := INVALID_QOS_POLICY_ID; 
  1264.       Count     : aliased Long := 0; 
  1265.    end record with 
  1266.      Convention => C; 
  1267.    --  <dref>QosPolicyCount</dref> 
  1268.    --  <dref name="Policy_Id">QosPolicyCount_policy_id</dref> 
  1269.    --  <dref name="Count">QosPolicyCount_count</dref> 
  1270.  
  1271.    type QosPolicyCount_Access is access all QosPolicyCount; 
  1272.  
  1273.    type QosPolicyCount_Array is array (Natural range <>) of aliased QosPolicyCount; 
  1274.    procedure Initialize (Self  : in out QosPolicyCount); 
  1275.    procedure Finalize (Self  : in out QosPolicyCount); 
  1276.    procedure Copy (Dst : in out QosPolicyCount; Src : in QosPolicyCount); 
  1277.  
  1278.    package QosPolicyCount_Seq is new DDS_Support.Sequences_Generic 
  1279.      (QosPolicyCount, 
  1280.       QosPolicyCount_Access, 
  1281.       DDS.Natural, 
  1282.       1, 
  1283.       QosPolicyCount_Array); 
  1284.    --  <dref>QosPolicyCountSeq</dref> 
  1285.  
  1286.    --  ------------------------------------------------- 
  1287.    --                 Entity Types 
  1288.    --  ------------------------------------------------- 
  1289.  
  1290.    type EntityKind_T is (UNKNOWN_ENTITY_KIND, 
  1291.                          PARTICIPANT_ENTITY_KIND, 
  1292.                          PUBLISHER_ENTITY_KIND, 
  1293.                          SUBSCRIBER_ENTITY_KIND, 
  1294.                          TOPIC_ENTITY_KIND, 
  1295.                          DATAREADER_ENTITY_KIND, 
  1296.                          DATAWRITER_ENTITY_KIND); 
  1297.    pragma Annotate (EntityKind_T, Source, RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_EntityKind_t); 
  1298.  
  1299.    --  ------------------------------------------------- 
  1300.    --                 USER_DATA 
  1301.    --  ------------------------------------------------- 
  1302.  
  1303.    USERDATA_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("UserData"); 
  1304.    --  <defgroup>UserDataQosGroupDocs</defgroup> 
  1305.    --  <dref>USERDATA_QOS_POLICY_NAME</dref> 
  1306.  
  1307.    type UserDataQosPolicy is limited record 
  1308.       Value : aliased Octet_Seq.Sequence; 
  1309.    end record with 
  1310.      Convention => C; 
  1311.    --  <dref>UserDataQosPolicy</dref> 
  1312.    --  <dref name="Value">UserDataQosPolicy_value</dref> 
  1313.  
  1314.    --     USER_DATA_QOS_POLICY_DEFAULT : constant UserDataQosPolicy := 
  1315.    --                                      (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  1316.  
  1317.    --  ------------------------------------------------- 
  1318.    --                 TOPIC_DATA 
  1319.    --  ------------------------------------------------- 
  1320.  
  1321.    TOPICDATA_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TopicData"); 
  1322.    --  <defgroup>TopicDataQosGroupDocs</defgroup> 
  1323.    --  <dref>TOPICDATA_QOS_POLICY_NAME</dref> 
  1324.  
  1325.  
  1326.    type TopicDataQosPolicy is limited record 
  1327.       Value : aliased Octet_Seq.Sequence; 
  1328.    end record with 
  1329.      Convention => C; 
  1330.    --  <dref>TopicDataQosPolicy</dref> 
  1331.    --  <dref name="Value">TopicDataQosPolicy_value</dref> 
  1332.  
  1333.    --     TOPIC_DATA_QOS_POLICY_DEFAULT : constant TopicDataQosPolicy := 
  1334.    --                                       (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  1335.  
  1336.    --  ------------------------------------------------- 
  1337.    --                 DATA_TAGS 
  1338.    --  ------------------------------------------------- 
  1339.  
  1340.    --  <defgroup>DataTagQosGroupDocs</defgroup> 
  1341.    type Tags_T is limited record 
  1342.       Name  : aliased DDS.String; 
  1343.       Value : aliased DDS.String; 
  1344.    end record with Convention => C; 
  1345.    --  <dref>Tags</dref> 
  1346.    --  <dref name="Name">Tags_T_name</dref> 
  1347.    --  <dref name="Value">Tags_T_value</dref> 
  1348.  
  1349.    type Tags_T_Access is access all Tags_T with Convention => C; 
  1350.    type Tags_T_Array is array 
  1351.      (Natural range <>) of aliased Tags_T; 
  1352.    procedure Initialize (Self  : in out Tags_T); 
  1353.    procedure Finalize (Self  : in out Tags_T); 
  1354.    procedure Copy (Dst : in out Tags_T; 
  1355.                    Src : in Tags_T); 
  1356.  
  1357.    package Tags_Seq is new DDS_Support.Sequences_Generic 
  1358.      (Tags_T, 
  1359.       Tags_T_Access, 
  1360.       DDS.Natural, 
  1361.       1, 
  1362.       Tags_T_Array); 
  1363.    --  <dref>TagSeq</dref> 
  1364.  
  1365.    type DataTagQosPolicy is limited record 
  1366.       Value : aliased Tags_Seq.Sequence; 
  1367.    end record with Convention => C; 
  1368.    --  <dref>DataTagQosPolicy</dref> 
  1369.    --  <dref name="Value">DataTags_tags</dref> 
  1370.  
  1371.    function Lookup_Tag 
  1372.       (Policy : in DataTagQosPolicy; 
  1373.        Name   : in DDS.String) return Tags_T_Access; 
  1374.    --  <dref name="lookup_tag">DataTagQosPolicyHelper_lookup_tag</dref> 
  1375.  
  1376.    procedure Assert_Tag 
  1377.       (Policy : in DataTagQosPolicy; 
  1378.        Name   : in DDS.String; 
  1379.        Value  : in DDS.String); 
  1380.    --  <dref name="assert_tag">DataTagQosPolicyHelper_assert_tag</dref> 
  1381.  
  1382.    procedure Add_Tag 
  1383.       (Policy : in DataTagQosPolicy; 
  1384.        Name   : in DDS.String; 
  1385.        Value  : in DDS.String); 
  1386.    --  <dref name="add_tag">DataTagQosPolicyHelper_add_tag</dref> 
  1387.  
  1388.    procedure Remove_Tag 
  1389.       (Policy : in DataTagQosPolicy; 
  1390.        Name   : in DDS.String); 
  1391.    --  <dref name="remove_tag">DataTagQosPolicyHelper_remove_tag</dref> 
  1392.  
  1393.    function Get_Number_Of_Tags 
  1394.       (Policy : in DataTagQosPolicy) return DDS.Long; 
  1395.    --  <dref name="get_number_of_tags">DataTagQosPolicyHelper_get_number_of_tags</dref> 
  1396.  
  1397.    --  ------------------------------------------------- 
  1398.    --                 GROUP_DATA 
  1399.    --  ------------------------------------------------- 
  1400.  
  1401.    GROUPDATA_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("GroupData"); 
  1402.    --  <defgroup>GroupDataQosGroupDocs</defgroup> 
  1403.    --  <dref>GROUPDATA_QOS_POLICY_NAME</dref> 
  1404.  
  1405.    type GroupDataQosPolicy is limited record 
  1406.       Value : aliased Octet_Seq.Sequence; 
  1407.    end record with 
  1408.      Convention => C; 
  1409.    --  <dref>GroupDataQosPolicy</dref> 
  1410.    --  <dref name="Value">GroupDataQosPolicy_value</dref> 
  1411.  
  1412.    --     GROUP_DATA_QOS_POLICY_DEFAULT : constant GroupDataQosPolicy := 
  1413.    --                                       (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  1414.  
  1415.    --  ------------------------------------------------- 
  1416.    --                 TOPIC_PROTOCOL (eXtension QoS) 
  1417.    --  ------------------------------------------------- 
  1418.  
  1419.    TOPICPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TopicProtocol"); 
  1420.    --  <dref internal="true"></dref> 
  1421.  
  1422.  
  1423.    type TopicProtocolQosPolicy is limited record 
  1424.       Vendor_Specific_Entity : Boolean := False; 
  1425.    end record with 
  1426.      Convention => C; 
  1427.    --  <dref internal="true"></dref> 
  1428.  
  1429.    TOPIC_PROTOCOL_QOS_POLICY_DEFAULT : constant TopicProtocolQosPolicy := 
  1430.                                          (Vendor_Specific_Entity => False); 
  1431.    --  <dref internal="true"></dref> 
  1432.  
  1433.    --  ---------------------------------------------------------- 
  1434.    --                 DOMAIN_PARTICIPANT_PROTOCOL (eXtension QoS) 
  1435.    --  ---------------------------------------------------------- 
  1436.  
  1437.    DOMAINPARTICIPANTPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DomainParticipantProtocol"); 
  1438.    --  <dref internal="true"></dref> 
  1439.  
  1440.    type DomainParticipantProtocolQosPolicy is limited record 
  1441.       Vendor_Specific_Entity : Boolean := False; 
  1442.    end record with 
  1443.      Convention => C; 
  1444.    --  <dref internal="true"></dref> 
  1445.  
  1446.    DOMAIN_PARTICIPANT_PROTOCOL_QOS_POLICY_DEFAULT : constant DomainParticipantProtocolQosPolicy := 
  1447.                                                       (Vendor_Specific_Entity => False); 
  1448.    --  <dref internal="true"></dref> 
  1449.  
  1450.    --  ------------------------------------------------- 
  1451.    --                 DURABILITY 
  1452.    --  ------------------------------------------------- 
  1453.  
  1454.    DURABILITY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Durability"); 
  1455.    --  <defgroup>DurabilityQosGroupDocs</defgroup> 
  1456.    --  <dref>DURABILITY_QOS_POLICY_NAME</dref> 
  1457.  
  1458.    type DurabilityQosPolicyKind is new Unsigned_Long; 
  1459.    --  <dref>DurabilityQosPolicyKind</dref> 
  1460.  
  1461.    VOLATILE_DURABILITY_QOS : constant DurabilityQosPolicyKind := 0; 
  1462.    --  <dref>DurabilityQosPolicyKind_VOLATILE_DURABILITY_QOS</dref> 
  1463.  
  1464.    TRANSIENT_LOCAL_DURABILITY_QOS : constant DurabilityQosPolicyKind := 1; 
  1465.    --  <dref>DurabilityQosPolicyKind_TRANSIENT_LOCAL_DURABILITY_QOS</dref> 
  1466.  
  1467.    TRANSIENT_DURABILITY_QOS : constant DurabilityQosPolicyKind := 2; 
  1468.    --  <dref>DurabilityQosPolicyKind_TRANSIENT_DURABILITY_QOS</dref> 
  1469.  
  1470.    PERSISTENT_DURABILITY_QOS : constant DurabilityQosPolicyKind := 3; 
  1471.    --  <dref>DurabilityQosPolicyKind_PERSISTENT_DURABILITY_QOS</dref> 
  1472.  
  1473.    type DurabilityQosPolicy is record 
  1474.       Kind                 : aliased DurabilityQosPolicyKind := VOLATILE_DURABILITY_QOS; 
  1475.       Direct_Communication : aliased DDS.Boolean := True; 
  1476.       Writer_Depth         : aliased DDS.Long := 0; 
  1477.    end record with 
  1478.      Convention => C; 
  1479.    --  <dref>DurabilityQosPolicy</dref> 
  1480.    --  <dref name="Kind">DurabilityQosPolicy_kind</dref> 
  1481.    --  <dref name="Direct_Communication">DurabilityQosPolicy_direct_communication</dref> 
  1482.    --  <dref name="Writer_Depth">DurabilityQosPolicy_writer_depth</dref> 
  1483.  
  1484.  
  1485.    DURABILITY_QOS_POLICY_DEFAULT : constant DurabilityQosPolicy := 
  1486.                                      (Kind                 => VOLATILE_DURABILITY_QOS, 
  1487.                                       Direct_Communication => True, 
  1488.                                       Writer_Depth         => 0); 
  1489.    --  <dref internal="true"></dref> 
  1490.  
  1491.    --  ------------------------------------------------- 
  1492.    --                 PRESENTATION 
  1493.    --  ------------------------------------------------- 
  1494.  
  1495.    PRESENTATION_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("Presentation"); 
  1496.    --  <defgroup>PresentationQosGroupDocs</defgroup> 
  1497.    --  <dref>PRESENTATION_QOS_POLICY_NAME</dref> 
  1498.  
  1499.    type PresentationQosPolicyAccessScopeKind is new Unsigned_Long; 
  1500.    --  <dref>PresentationQosPolicyAccessScopeKind</dref> 
  1501.  
  1502.    INSTANCE_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 0; 
  1503.    --  <dref>PresentationQosPolicyAccessScopeKind_INSTANCE_PRESENTATION_QOS</dref> 
  1504.  
  1505.    TOPIC_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 1; 
  1506.    --  <dref>PresentationQosPolicyAccessScopeKind_TOPIC_PRESENTATION_QOS</dref> 
  1507.  
  1508.    GROUP_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 2; 
  1509.    --  <dref>PresentationQosPolicyAccessScopeKind_GROUP_PRESENTATION_QOS</dref> 
  1510.  
  1511.    HIGHEST_OFFERED_PRESENTATION_QOS : constant PresentationQosPolicyAccessScopeKind := 3; 
  1512.    --  <dref>PresentationQosPolicyAccessScopeKind_HIGHEST_OFFERED_PRESENTATION_QOS</dref> 
  1513.  
  1514.    type PresentationQosPolicy  is record 
  1515.       Access_Scope    : aliased PresentationQosPolicyAccessScopeKind := INSTANCE_PRESENTATION_QOS; 
  1516.       Coherent_Access : aliased DDS.Boolean := False; 
  1517.       Ordered_Access  : aliased DDS.Boolean := False; 
  1518.    end record with 
  1519.      Convention => C; 
  1520.    --  <dref>PresentationQosPolicy</dref> 
  1521.    --  <dref name="Access_Scope">PresentationQosPolicy_access_scope</dref> 
  1522.    --  <dref name="Coherent_Access">PresentationQosPolicy_coherent_access</dref> 
  1523.    --  <dref name="Ordered_Access">PresentationQosPolicy_ordered_access</dref> 
  1524.  
  1525.  
  1526.    PRESENTATION_QOS_POLICY_DEFAULT : constant PresentationQosPolicy := 
  1527.                                        (INSTANCE_PRESENTATION_QOS, 
  1528.                                         False, 
  1529.                                         False); 
  1530.    --  <dref internal="true"></dref> 
  1531.  
  1532.    --  ------------------------------------------------- 
  1533.    --                 DEADLINE 
  1534.    --  ------------------------------------------------- 
  1535.  
  1536.    DEADLINE_QOS_POLICY_NAME        : constant DDS.String := To_DDS_String ("Deadline"); 
  1537.    --  <defgroup>DeadlineQosGroupDocs</defgroup> 
  1538.    --  <dref>DEADLINE_QOS_POLICY_NAME</dref> 
  1539.  
  1540.    type DeadlineQosPolicy is record 
  1541.       Period : aliased Duration_T :=  DURATION_INFINITE; 
  1542.    end record with 
  1543.      Convention => C; 
  1544.    --  <dref>DeadlineQosPolicy</dref> 
  1545.    --  <dref name="Period">DeadlineQosPolicy_period</dref> 
  1546.  
  1547.  
  1548.    DEADLINE_QOS_POLICY_DEFAULT : constant DeadlineQosPolicy := 
  1549.                                    (Period => DURATION_INFINITE); 
  1550.    --  <dref internal="true"></dref> 
  1551.  
  1552.    --  ------------------------------------------------- 
  1553.    --                 LATENCY_BUDGET 
  1554.    --  ------------------------------------------------- 
  1555.  
  1556.    LATENCYBUDGET_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("LatencyBudget"); 
  1557.    --  <defgroup>LatencyBudgetQosGroupDocs</defgroup> 
  1558.    --  <dref>LATENCYBUDGET_QOS_POLICY_NAME</dref> 
  1559.  
  1560.    type LatencyBudgetQosPolicy is record 
  1561.       Duration : aliased Duration_T := DURATION_ZERO; 
  1562.    end record with 
  1563.      Convention => C; 
  1564.    --  <dref>LatencyBudgetQosPolicy</dref> 
  1565.    --  <dref name="Duration">LatencyBudgetQosPolicy_duration</dref> 
  1566.  
  1567.  
  1568.    LATENCY_BUDGET_QOS_POLICY_DEFAULT : constant LatencyBudgetQosPolicy := 
  1569.                                          (Duration => DURATION_ZERO); 
  1570.    --  <dref internal="true"></dref> 
  1571.  
  1572.    --  ------------------------------------------------- 
  1573.    --                 OWNERSHIP 
  1574.    --  ------------------------------------------------- 
  1575.  
  1576.    OWNERSHIP_QOS_POLICY_NAME         : constant DDS.String := To_DDS_String ("Ownership"); 
  1577.    --  <defgroup>OwnershipQosGroupDocs</defgroup> 
  1578.    --  <dref>OWNERSHIP_QOS_POLICY_NAME</dref> 
  1579.  
  1580.    type OwnershipQosPolicyKind is new Unsigned_Long; 
  1581.    --  <dref>OwnershipQosPolicyKind</dref> 
  1582.  
  1583.    SHARED_OWNERSHIP_QOS : constant OwnershipQosPolicyKind := 0; 
  1584.    --  <dref>OwnershipQosPolicyKind_SHARED_OWNERSHIP_QOS</dref> 
  1585.  
  1586.    EXCLUSIVE_OWNERSHIP_QOS : constant OwnershipQosPolicyKind := 1; 
  1587.    --  <dref>OwnershipQosPolicyKind_EXCLUSIVE_OWNERSHIP_QOS</dref> 
  1588.  
  1589.    type OwnershipQosPolicy is record 
  1590.       Kind : aliased OwnershipQosPolicyKind := SHARED_OWNERSHIP_QOS; 
  1591.    end record with 
  1592.      Convention => C; 
  1593.    --  <dref>OwnershipQosPolicy</dref> 
  1594.    --  <dref name="Kind">OwnershipQosPolicy_kind</dref> 
  1595.  
  1596.  
  1597.    OWNERSHIP_QOS_POLICY_DEFAULT : constant OwnershipQosPolicy := 
  1598.                                     (Kind => SHARED_OWNERSHIP_QOS); 
  1599.    --  <dref internal="true"></dref> 
  1600.  
  1601.    --  ------------------------------------------------- 
  1602.    --                 OWNERSHIP_STRENGTH 
  1603.    --  ------------------------------------------------- 
  1604.  
  1605.    OWNERSHIPSTRENGTH_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("OwnershipStrength"); 
  1606.    --  <defgroup>OwnershipStrengthQosGroupDocs</defgroup> 
  1607.    --  <dref>OWNERSHIPSTRENGTH_QOS_POLICY_NAME</dref> 
  1608.  
  1609.    type OwnershipStrengthQosPolicy is record 
  1610.       Value : aliased Long := 0; 
  1611.    end record with 
  1612.      Convention => C; 
  1613.    --  <dref>OwnershipStrengthQosPolicy</dref> 
  1614.    --  <dref name="Value">OwnershipStrengthQosPolicy_value</dref> 
  1615.  
  1616.  
  1617.    OWNERSHIP_STRENGTH_QOS_POLICY_DEFAULT : constant OwnershipStrengthQosPolicy := 
  1618.                                              (Value => 0); 
  1619.    --  <dref internal="true"></dref> 
  1620.  
  1621.    --  ------------------------------------------------- 
  1622.    --                 LIVELINESS 
  1623.    --  ------------------------------------------------- 
  1624.  
  1625.    LIVELINESS_QOS_POLICY_NAME            : constant DDS.String := To_DDS_String ("Liveliness"); 
  1626.    --  <defgroup>LivelinessQosGroupDocs</defgroup> 
  1627.    --  <dref>LIVELINESS_QOS_POLICY_NAME</dref> 
  1628.  
  1629.    type LivelinessQosPolicyKind is new Unsigned_Long; 
  1630.    --  <dref>LivelinessQosPolicyKind</dref> 
  1631.  
  1632.    AUTOMATIC_LIVELINESS_QOS : constant LivelinessQosPolicyKind := 0; 
  1633.    --  <dref>LivelinessQosPolicyKind_AUTOMATIC_LIVELINESS_QOS</dref> 
  1634.  
  1635.    MANUAL_BY_PARTICIPANT_LIVELINESS_QOS : constant LivelinessQosPolicyKind := 1; 
  1636.    --  <dref>LivelinessQosPolicyKind_MANUAL_BY_PARTICIPANT_LIVELINESS_QOS</dref> 
  1637.  
  1638.    MANUAL_BY_TOPIC_LIVELINESS_QOS : constant LivelinessQosPolicyKind := 2; 
  1639.    --  <dref>LivelinessQosPolicyKind_MANUAL_BY_TOPIC_LIVELINESS_QOS</dref> 
  1640.  
  1641.    type LivelinessQosPolicy is record 
  1642.       Kind                          : aliased LivelinessQosPolicyKind := AUTOMATIC_LIVELINESS_QOS; 
  1643.       Lease_Duration                : aliased Duration_T := DURATION_INFINITE; 
  1644.       Assertions_Per_Lease_Duration : aliased Long := 3; 
  1645.    end record with 
  1646.      Convention => C; 
  1647.    --  <dref>LivelinessQosPolicy</dref> 
  1648.    --  <dref name="Kind">LivelinessQosPolicy_kind</dref> 
  1649.    --  <dref name="Lease_Duration">LivelinessQosPolicy_lease_duration</dref> 
  1650.    --  <dref name="Assertions_Per_Lease_Duration">LivelinessQosPolicy_assertions_per_lease_duration</dref> 
  1651.  
  1652.  
  1653.    LIVELINESS_QOS_POLICY_DEFAULT : constant LivelinessQosPolicy := 
  1654.                                      (Kind                          => AUTOMATIC_LIVELINESS_QOS, 
  1655.                                       Lease_Duration                => DURATION_INFINITE, 
  1656.                                       Assertions_Per_Lease_Duration => 3); 
  1657.    --  <dref internal="true"></dref> 
  1658.  
  1659.    --  ------------------------------------------------- 
  1660.    --                 TIME_BASED_FILTER 
  1661.    --  ------------------------------------------------- 
  1662.  
  1663.    TIMEBASEDFILTER_QOS_POLICY_NAME : constant DDS.String  := To_DDS_String ("TimeBasedFilter"); 
  1664.    --  <defgroup>TimeBasedFilterQosGroupDocs</defgroup> 
  1665.    --  <dref>TIMEBASEDFILTER_QOS_POLICY_NAME</dref> 
  1666.  
  1667.    type TimeBasedFilterQosPolicy is record 
  1668.       Minimum_Separation : aliased Duration_T :=  DURATION_ZERO; 
  1669.    end record with 
  1670.      Convention => C; 
  1671.    --  <dref>TimeBasedFilterQosPolicy</dref> 
  1672.    --  <dref name="Minimum_Separation">TimeBasedFilterQosPolicy_minimum_separation</dref> 
  1673.  
  1674.    TIME_BASED_FILTER_QOS_POLICY_DEFAULT : constant  TimeBasedFilterQosPolicy := 
  1675.                                             (Minimum_Separation => DURATION_ZERO); 
  1676.    --  <dref internal="true"></dref> 
  1677.  
  1678.    --  ------------------------------------------------- 
  1679.    --                 PARTITION 
  1680.    --  ------------------------------------------------- 
  1681.  
  1682.    PARTITION_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Partition"); 
  1683.    --  <defgroup>PartitionQosGroupDocs</defgroup> 
  1684.    --  <dref>PARTITION_QOS_POLICY_NAME</dref> 
  1685.  
  1686.    type PartitionQosPolicy is record 
  1687.       Name : aliased String_Seq.Sequence; 
  1688.    end record with 
  1689.      Convention => C; 
  1690.    --  <dref>PartitionQosPolicy</dref> 
  1691.    --  <dref name="Name">PartitionQosPolicy_name</dref> 
  1692.  
  1693.    --     PARTITION_QOS_POLICY_DEFAULT : constant PartitionQosPolicy := 
  1694.    --                                      (Name => String_Seq.DEFAULT_SEQUENCE); 
  1695.  
  1696.    --  ------------------------------------------------- 
  1697.    --                 RELIABILITY 
  1698.    --  ------------------------------------------------- 
  1699.  
  1700.    RELIABILITY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Reliability"); 
  1701.    --  <defgroup>ReliabilityQosGroupDocs</defgroup> 
  1702.    --  <dref>RELIABILITY_QOS_POLICY_NAME</dref> 
  1703.  
  1704.    type ReliabilityQosPolicyKind is new Unsigned_Long; 
  1705.    --  <dref>ReliabilityQosPolicyKind</dref> 
  1706.  
  1707.    BEST_EFFORT_RELIABILITY_QOS : constant ReliabilityQosPolicyKind := 0; 
  1708.    --  <dref>ReliabilityQosPolicyKind_BEST_EFFORT_RELIABILITY_QOS</dref> 
  1709.  
  1710.    RELIABLE_RELIABILITY_QOS : constant ReliabilityQosPolicyKind := 1; 
  1711.    --  <dref>ReliabilityQosPolicyKind_RELIABLE_RELIABILITY_QOS</dref> 
  1712.  
  1713.    type ReliabilityQosPolicyAcknowledgmentModeKind is new Unsigned_Long; 
  1714.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind</dref> 
  1715.  
  1716.    PROTOCOL_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 0; 
  1717.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_PROTOCOL_ACKNOWLEDGMENT_MODE</dref> 
  1718.  
  1719.    APPICATION_AUTO_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 1; 
  1720.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_APPLICATION_AUTO_ACKNOWLEDGMENT_MODE</dref> 
  1721.  
  1722.    APPICATION_ORDERED_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 2; 
  1723.  
  1724.    APPICATION_EXPLICIT_ACKNOWLEDGMENT_MODE : constant ReliabilityQosPolicyAcknowledgmentModeKind := 3; 
  1725.    --  <dref>ReliabilityQosPolicyAcknowledgmentModeKind_APPLICATION_EXPLICIT_ACKNOWLEDGMENT_MODE</dref> 
  1726.  
  1727.    type ReliabilityQosPolicy is record 
  1728.       Kind                : aliased ReliabilityQosPolicyKind := BEST_EFFORT_RELIABILITY_QOS; 
  1729.       Max_Blocking_Time   : aliased Duration_T := (0, 100_000_000); 
  1730.       Acknowledgment_Kind : aliased ReliabilityQosPolicyAcknowledgmentModeKind := PROTOCOL_ACKNOWLEDGMENT_MODE; 
  1731.    end record with 
  1732.      Convention => C; 
  1733.    --  <dref>ReliabilityQosPolicy</dref> 
  1734.    --  <dref name="Kind">ReliabilityQosPolicy_kind</dref> 
  1735.    --  <dref name="Max_Blocking_Time">ReliabilityQosPolicy_max_blocking_time</dref> 
  1736.    --  <dref name="Acknowledgment_Kind">ReliabilityQosPolicy_acknowledgment_kind</dref> 
  1737.  
  1738.    RELIABILITY_QOS_POLICY_DEFAULT : constant ReliabilityQosPolicy := 
  1739.                                       (BEST_EFFORT_RELIABILITY_QOS, (0, 100_000_000), PROTOCOL_ACKNOWLEDGMENT_MODE); 
  1740.    --  <dref internal="true"></dref> 
  1741.  
  1742.    --  ------------------------------------------------- 
  1743.    --                 DESTINATION_ORDER 
  1744.    --  ------------------------------------------------- 
  1745.  
  1746.    DESTINATIONORDER_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DestinationOrder"); 
  1747.    --  <defgroup>DestinationOrderQosGroupDocs</defgroup> 
  1748.    --  <dref>DESTINATIONORDER_QOS_POLICY_NAME</dref> 
  1749.  
  1750.    type DestinationOrderQosPolicyKind is new Unsigned_Long; 
  1751.    --  <dref>DestinationOrderQosPolicyKind</dref> 
  1752.  
  1753.    BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyKind := 0; 
  1754.    --  <dref>DestinationOrderQosPolicyKind_BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS</dref> 
  1755.  
  1756.    BY_SOURCE_TIMESTAMP_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyKind := 1; 
  1757.    --  <dref>DestinationOrderQosPolicyKind_BY_SOURCE_TIMESTAMP_DESTINATIONORDER_QOS</dref> 
  1758.  
  1759.    type DestinationOrderQosPolicyScopeKind is new Unsigned_Long; 
  1760.    --  <dref internal="true">DestinationOrderQosPolicyScopeKind</dref> 
  1761.  
  1762.    INSTANCE_SCOPE_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyScopeKind := 0; 
  1763.    --  <dref internal="true">DestinationOrderQosPolicyScopeKind_INSTANCE_SCOPE_DESTINATIONORDER_QOS</dref> 
  1764.  
  1765.    TOPIC_SCOPE_DESTINATIONORDER_QOS : constant DestinationOrderQosPolicyScopeKind := 1; 
  1766.    --  <dref internal="true">DestinationOrderQosPolicyScopeKind_TOPIC_SCOPE_DESTINATIONORDER_QOS</dref> 
  1767.  
  1768.    type DestinationOrderQosPolicy is record 
  1769.       Kind                       : aliased DestinationOrderQosPolicyKind := BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS; 
  1770.       Scope                      : aliased DestinationOrderQosPolicyScopeKind := INSTANCE_SCOPE_DESTINATIONORDER_QOS; 
  1771.       Source_Timestamp_Tolerance : aliased Duration_T := DURATION_ZERO; 
  1772.    end record; 
  1773.    --  <dref>DestinationOrderQosPolicy</dref> 
  1774.    --  <dref name="Kind">DestinationOrderQosPolicy_kind</dref> 
  1775.    --  <dref internal="true" name="Scope">DestinationOrderQosPolicy_scope</dref> 
  1776.    --  <dref name="source_timestamp_tolerance">DestinationOrderQosPolicy_source_timestamp_tolerance</dref> 
  1777.  
  1778.    pragma Convention (C, DestinationOrderQosPolicy); 
  1779.  
  1780.    DESTINATION_ORDER_QOS_POLICY_DEFAULT : constant DestinationOrderQosPolicy := 
  1781.                                             (BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS, 
  1782.                                              INSTANCE_SCOPE_DESTINATIONORDER_QOS, 
  1783.                                              DURATION_ZERO); 
  1784.    --  <dref internal="true"></dref> 
  1785.  
  1786.    --  ------------------------------------------------- 
  1787.    --                 HISTORY 
  1788.    --  ------------------------------------------------- 
  1789.  
  1790.    HISTORY_QOS_POLICY_NAME              : constant DDS.String := To_DDS_String ("History"); 
  1791.    --  <defgroup>HistoryQosGroupDocs</defgroup> 
  1792.    --  <dref>HISTORY_QOS_POLICY_NAME</dref> 
  1793.  
  1794.    type HistoryQosPolicyKind is new Unsigned_Long; 
  1795.    --  <dref>HistoryQosPolicyKind</dref> 
  1796.  
  1797.    KEEP_LAST_HISTORY_QOS                : constant HistoryQosPolicyKind := 0; 
  1798.    --  <dref>HistoryQosPolicyKind_KEEP_LAST_HISTORY_QOS</dref> 
  1799.  
  1800.    KEEP_ALL_HISTORY_QOS                 : constant HistoryQosPolicyKind := 1; 
  1801.    --  <dref>HistoryQosPolicyKind_KEEP_ALL_HISTORY_QOS</dref> 
  1802.  
  1803.    type HistoryQosPolicy is record 
  1804.       Kind     : aliased HistoryQosPolicyKind := KEEP_LAST_HISTORY_QOS; 
  1805.       Depth    : aliased Long := 1; 
  1806.    end record with 
  1807.      Convention => C; 
  1808.    --  <dref>HistoryQosPolicy</dref> 
  1809.    --  <dref name="Kind">HistoryQosPolicy_kind</dref> 
  1810.    --  <dref name="Depth">HistoryQosPolicy_depth</dref> 
  1811.  
  1812.    HISTORY_QOS_POLICY_DEFAULT           : constant HistoryQosPolicy := 
  1813.                                             (KEEP_LAST_HISTORY_QOS, 
  1814.                                              1); 
  1815.    --  <dref internal="true"></dref> 
  1816.  
  1817.    --  ------------------------------------------------- 
  1818.    --                 LENGTH_UNLIMITED 
  1819.    --  ------------------------------------------------- 
  1820.  
  1821.    LENGTH_UNLIMITED                     : constant Long  := -1; 
  1822.    --  <dref>LENGTH_UNLIMITED</dref> 
  1823.  
  1824.    --  ------------------------------------------------- 
  1825.    --                 DURABILITY_SERVICE 
  1826.    --  ------------------------------------------------- 
  1827.  
  1828.    DURABILITYSERVICE_QOS_POLICY_NAME    : constant DDS.String := To_DDS_String ("DurabilityService"); 
  1829.    --  <defgroup>DurabilityServiceQosGroupDocs</defgroup> 
  1830.    --  <dref>DURABILITY_QOS_POLICY_NAME</dref> 
  1831.  
  1832.    type DurabilityServiceQosPolicy is record 
  1833.       Service_Cleanup_Delay    : aliased Duration_T := DURATION_ZERO; 
  1834.       History_Kind             : aliased HistoryQosPolicyKind := KEEP_LAST_HISTORY_QOS; 
  1835.       History_Depth            : aliased Long := 1; 
  1836.       Max_Samples              : aliased Long := LENGTH_UNLIMITED; 
  1837.       Max_Instances            : aliased Long := LENGTH_UNLIMITED; 
  1838.       Max_Samples_Per_Instance : aliased Long := LENGTH_UNLIMITED; 
  1839.    end record with 
  1840.      Convention => C; 
  1841.    --  <dref>DurabilityServiceQosPolicy</dref> 
  1842.    --  <dref name="Service_Cleanup_Delay">DurabilityServiceQosPolicy_service_cleanup_delay</dref> 
  1843.    --  <dref name="History_Kind">DurabilityServiceQosPolicy_history_kind</dref> 
  1844.    --  <dref name="History_Depth">DurabilityServiceQosPolicy_history_depth</dref> 
  1845.    --  <dref name="Max_Samples">DurabilityServiceQosPolicy_max_samples</dref> 
  1846.    --  <dref name="Max_Instances">DurabilityServiceQosPolicy_max_instances</dref> 
  1847.    --  <dref name="Max_Samples_Per_Instance">DurabilityServiceQosPolicy_max_samples_per_instance</dref> 
  1848.  
  1849.    DURABILITY_SERVICE_QOS_POLICY_DEFAULT : constant DurabilityServiceQosPolicy := 
  1850.                                              (DURATION_ZERO, 
  1851.                                               KEEP_LAST_HISTORY_QOS, 
  1852.                                               1, 
  1853.                                               LENGTH_UNLIMITED, 
  1854.                                               LENGTH_UNLIMITED, 
  1855.                                               LENGTH_UNLIMITED); 
  1856.    --  <dref internal="true"></dref> 
  1857.  
  1858.    --  ------------------------------------------------- 
  1859.    --                 RESOURCE_LIMITS 
  1860.    --  ------------------------------------------------- 
  1861.  
  1862.    RESOURCELIMITS_QOS_POLICY_NAME        : constant DDS.String := To_DDS_String ("ResourceLimits"); 
  1863.    --  <defgroup>ResourceLimitsQosGroupDocs</defgroup> 
  1864.    --  <dref>RESOURCELIMITS_QOS_POLICY_NAME</dref> 
  1865.  
  1866.    type ResourceLimitsQosPolicy is record 
  1867.       Max_Samples              : aliased Long := LENGTH_UNLIMITED; 
  1868.       Max_Instances            : aliased Long := LENGTH_UNLIMITED; 
  1869.       Max_Samples_Per_Instance : aliased Long := LENGTH_UNLIMITED; 
  1870.       Initial_Samples          : aliased Long := 32; 
  1871.       Initial_Instances        : aliased Long := 32; 
  1872.       Instance_Hash_Buckets    : aliased Long := 32; 
  1873.    end record; 
  1874.    --  <dref>ResourceLimitsQosPolicy</dref> 
  1875.    --  <dref name="Max_Samples">ResourceLimitsQosPolicy_max_samples</dref> 
  1876.    --  <dref name="Max_Instances">ResourceLimitsQosPolicy_max_instances</dref> 
  1877.    --  <dref name="Max_Samples_Per_Instance">ResourceLimitsQosPolicy_max_samples_per_instance</dref> 
  1878.    --  <dref name="Initial_Samples">ResourceLimitsQosPolicy_initial_samples</dref> 
  1879.    --  <dref name="Initial_Instances">ResourceLimitsQosPolicy_initial_instances</dref> 
  1880.    --  <dref name="Instance_Hash_Buckets">ResourceLimitsQosPolicy_instance_hash_buckets</dref> 
  1881.  
  1882.    pragma Convention (C, ResourceLimitsQosPolicy); 
  1883.  
  1884.    RESOURCE_LIMITS_QOS_POLICY_DEFAULT : constant ResourceLimitsQosPolicy := 
  1885.                                           (LENGTH_UNLIMITED, 
  1886.                                            LENGTH_UNLIMITED, 
  1887.                                            LENGTH_UNLIMITED, 
  1888.                                            32, 
  1889.                                            32, 
  1890.                                            32); 
  1891.    --  <dref internal="true"></dref> 
  1892.  
  1893.    --  ------------------------------------------------- 
  1894.    --                 TRANSPORT_PRIORITY 
  1895.    --  ------------------------------------------------- 
  1896.  
  1897.    TRANSPORTPRIORITY_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("TransportPriority"); 
  1898.    --  <defgroup>TransportPriorityQosGroupDocs</defgroup> 
  1899.    --  <dref>TRANSPORTPRIORITY_QOS_POLICY_NAME</dref> 
  1900.  
  1901.    type TransportPriorityQosPolicy is record 
  1902.       Value : aliased Long := 0; 
  1903.    end record with 
  1904.      Convention => C; 
  1905.    --  <dref>TransportPriorityQosPolicy</dref> 
  1906.    --  <dref name="Value">TransportPriorityQosPolicy_value</dref> 
  1907.  
  1908.    TRANSPORT_PRIORITY_QOS_POLICY_DEFAULT : constant TransportPriorityQosPolicy := 
  1909.                                              (Value => 0); 
  1910.    --  <dref internal="true"></dref> 
  1911.  
  1912.    --  ------------------------------------------------- 
  1913.    --                 LIFESPAN 
  1914.    --  ------------------------------------------------- 
  1915.  
  1916.    LIFESPAN_QOS_POLICY_NAME              : constant DDS.String := To_DDS_String ("Lifespan"); 
  1917.    --  <defgroup>LifespanQosGroupDocs</defgroup> 
  1918.    --  <dref>LIFESPAN_QOS_POLICY_NAME</dref> 
  1919.  
  1920.    type LifespanQosPolicy is record 
  1921.       Duration : aliased Duration_T := DURATION_INFINITE; 
  1922.    end record with 
  1923.      Convention => C; 
  1924.    --  <dref>LifespanQosPolicy</dref> 
  1925.    --  <dref name="Duration">LifespanQosPolicy_duration</dref> 
  1926.  
  1927.  
  1928.    LIFESPAN_QOS_POLICY_DEFAULT        : constant LifespanQosPolicy := 
  1929.                                           (Duration => DURATION_INFINITE); 
  1930.    --  <dref internal="true"></dref> 
  1931.  
  1932.    --  ------------------------------------------------- 
  1933.    --                 WRITER_DATA_LIFECYCLE 
  1934.    --  ------------------------------------------------- 
  1935.  
  1936.    WRITERDATALIFECYCLE_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("WriterDataLifecycle"); 
  1937.    --  <defgroup>WriterDataLifecycleQosGroupDocs</defgroup> 
  1938.    --  <dref>WRITERDATALIFECYCLE_QOS_POLICY_NAME</dref> 
  1939.  
  1940.    type WriterDataLifecycleQosPolicy is record 
  1941.       Autodispose_Unregistered_Instances     : aliased DDS.Boolean := True; 
  1942.       Autopurge_Unregistered_Instances_Delay : aliased DDS.Duration_T := DURATION_INFINITE; 
  1943.       Autopurge_Disposed_Instances_Delay     : aliased DDS.Duration_T := DURATION_INFINITE; 
  1944.    end record with 
  1945.      Convention => C; 
  1946.    --  <dref>WriterDataLifecycleQosPolicy</dref> 
  1947.    --  <dref name="Autodispose_Unregistered_Instances">WriterDataLifecycleQosPolicy_autodispose_unregistered_instances</dref> 
  1948.    --  <dref name="Autopurge_Unregistered_Instances_Delay">WriterDataLifecycleQosPolicy_autopurge_unregistered_instances_delay</dref> 
  1949.    --  <dref name="Autopurge_Disposed_Instances_Delay">WriterDataLifecycleQosPolicy_autopurge_disposed_instances_delay</dref> 
  1950.  
  1951.    WRITER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT : constant WriterDataLifecycleQosPolicy := 
  1952.                                                 (Autodispose_Unregistered_Instances     => True, 
  1953.                                                  Autopurge_Unregistered_Instances_Delay => DURATION_INFINITE, 
  1954.                                                  Autopurge_Disposed_Instances_Delay     => DURATION_INFINITE); 
  1955.    --  <dref internal="true"></dref> 
  1956.  
  1957.    --  ------------------------------------------------- 
  1958.    --                 READER_DATA_LIFECYCLE 
  1959.    --  ------------------------------------------------- 
  1960.  
  1961.    READERDATALIFECYCLE_QOS_POLICY_NAME      : constant DDS.String := To_DDS_String ("ReaderDataLifecycle"); 
  1962.    --  <defgroup>ReaderDataLifecycleQosGroupDocs</defgroup> 
  1963.    --  <dref>READERDATALIFECYCLE_QOS_POLICY_NAME</dref> 
  1964.  
  1965.    type ReaderDataLifecycleQosPolicy is record 
  1966.       Autopurge_Nowriter_Samples_Delay   : aliased Duration_T := DURATION_INFINITE; 
  1967.       Autopurge_Disposed_Samples_Delay   : aliased Duration_T := DURATION_INFINITE; 
  1968.       Autopurge_Disposed_Instances_Delay : aliased Duration_T := DURATION_INFINITE; 
  1969.       Autopurge_Nowriter_Instances_Delay : aliased Duration_T := DURATION_ZERO; 
  1970.    end record with 
  1971.      Convention => C; 
  1972.    --  <dref>ReaderDataLifecycleQosPolicy</dref> 
  1973.    --  <dref name="Autopurge_Nowriter_Samples_Delay">ReaderDataLifecycleQosPolicy_autopurge_nowriter_samples_delay</dref> 
  1974.    --  <dref name="Autopurge_Disposed_Samples_Delay">ReaderDataLifecycleQosPolicy_autopurge_disposed_samples_delay</dref> 
  1975.    --  <dref name="Autopurge_Disposed_Instances_Delay">ReaderDataLifecycleQosPolicy_autopurge_disposed_instances_delay</dref> 
  1976.    --  <dref name="Autopurge_Disposed_Instances_Delay">ReaderDataLifecycleQosPolicy_autopurge_nowriter_instances_delay</dref> 
  1977.  
  1978.    READER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT : constant ReaderDataLifecycleQosPolicy := 
  1979.                                                 (Autopurge_Nowriter_Samples_Delay   => DURATION_INFINITE, 
  1980.                                                  Autopurge_Disposed_Samples_Delay   => DURATION_INFINITE, 
  1981.                                                  Autopurge_Disposed_Instances_Delay => DURATION_INFINITE, 
  1982.                                                  Autopurge_Nowriter_Instances_Delay => DURATION_ZERO); 
  1983.    --  <dref internal="true"></dref> 
  1984.  
  1985.    --  ------------------------------------------------- 
  1986.    --                 ENTITY_FACTORY 
  1987.    --  ------------------------------------------------- 
  1988.  
  1989.    ENTITYFACTORY_QOS_POLICY_NAME            : constant DDS.String := To_DDS_String ("EntityFactory"); 
  1990.    --  <defgroup>EntityFactoryQosGroupDocs</defgroup> 
  1991.    --  <dref>ENTITYFACTORY_QOS_POLICY_NAME</dref> 
  1992.  
  1993.    type EntityFactoryQosPolicy is record 
  1994.       Autoenable_Created_Entities : aliased DDS.Boolean := True; 
  1995.    end record with 
  1996.      Convention => C; 
  1997.    --  <dref>EntityFactoryQosPolicy</dref> 
  1998.    --  <dref name="Autoenable_Created_Entities">EntityFactoryQosPolicy_autoenable_created_entities</dref> 
  1999.  
  2000.    ENTITY_FACTORY_QOS_POLICY_DEFAULT  : constant EntityFactoryQosPolicy := 
  2001.                                           (Autoenable_Created_Entities => True); 
  2002.    --  <dref internal="true"></dref> 
  2003.  
  2004.    --  ------------------------------------------------- 
  2005.    --                 EXTENDED QOS SUPPORT 
  2006.    --  ------------------------------------------------- 
  2007.  
  2008.    --!!! 
  2009.    --!!! RTI DDS Extensions 
  2010.    --!!! 
  2011.  
  2012.    --  ------------------------------------------------- 
  2013.    --                 AllocationSettings_t 
  2014.    --  ------------------------------------------------- 
  2015.  
  2016.    type AllocationSettings_T is record 
  2017.       Initial_Count     : aliased Long := 0; 
  2018.       Max_Count         : aliased Long := 0; 
  2019.       Incremental_Count : aliased Long := 0; 
  2020.    end record with 
  2021.      Convention => C; 
  2022.    --  <defgroup>ExtendedQosSupportGroupDocs</defgroup> 
  2023.    --  <dref>AllocationSettings_t</dref> 
  2024.    --  <dref name="Initial_Count">AllocationSettings_t_initial_count</dref> 
  2025.    --  <dref name="Max_Count">AllocationSettings_t_max_count</dref> 
  2026.    --  <dref name="Incremental_Count">AllocationSettings_t_incremental_count</dref> 
  2027.  
  2028.    AllocationSettings_T_AUTO : constant AllocationSettings_T := ( 
  2029.       Initial_Count     => RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h.REDA_FAST_BUFFER_POOL_AUTO, 
  2030.       Max_Count         => RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h.REDA_FAST_BUFFER_POOL_AUTO, 
  2031.       Incremental_Count => RTIDDS.Low_Level.ndds_reda_reda_fastBuffer_h.REDA_FAST_BUFFER_POOL_AUTO); 
  2032.  
  2033.    type  AllocationSettings_T_Access is access all  AllocationSettings_T; 
  2034.  
  2035.    function "+" (Left, Right : aliased AllocationSettings_T) return AllocationSettings_T; 
  2036.  
  2037.    --  ------------------------------------------------- 
  2038.    --                 RtpsReliableReaderProtocol_t 
  2039.    --  ------------------------------------------------- 
  2040.  
  2041.    type RtpsReliableReaderProtocol_T is record 
  2042.       Min_Heartbeat_Response_Delay       : aliased Duration_T := (0, 0); 
  2043.       Max_Heartbeat_Response_Delay       : aliased Duration_T := (0, 500_000_000); 
  2044.       Heartbeat_Suppression_Duration     : aliased Duration_T := (0, 62_500_000); 
  2045.       Nack_Period                        : aliased Duration_T := (5, 0); 
  2046.       Receive_Window_Size                : aliased Long := 256; 
  2047.       Round_Trip_Time                    : aliased Duration_T := (0, 0); 
  2048.       App_Ack_Period                     : aliased Duration_T := (5, 0); 
  2049.       Min_App_Ack_Response_Keep_Duration : aliased Duration_T := (0, 0); 
  2050.       Samples_Per_App_Ack                : aliased Long := 1; 
  2051.    end record with Convention => C; 
  2052.    --  <dref>RtpsReliableReaderProtocol_t</dref> 
  2053.    --  <dref name="Min_Heartbeat_Response_Delay">RtpsReliableReaderProtocol_t_min_heartbeat_response_delay</dref> 
  2054.    --  <dref name="Max_Heartbeat_response_Delay">RtpsReliableReaderProtocol_t_max_heartbeat_response_delay</dref> 
  2055.    --  <dref name="Heartbeat_Suppression_Duration">RtpsReliableReaderProtocol_t_heartbeat_suppression_duration</dref> 
  2056.    --  <dref name="Nack_Period">RtpsReliableReaderProtocol_t_nack_period</dref> 
  2057.    --  <dref name="Receive_Window_Size">RtpsReliableReaderProtocol_t_receive_window_size</dref> 
  2058.    --  <dref name="Round_Trip_Time">RtpsReliableReaderProtocol_t_round_trip_time</dref> 
  2059.    --  <dref name="App_Ack_Period">RtpsReliableReaderProtocol_t_app_ack_period</dref> 
  2060.    --  <dref name="Min_App_Ack_Response_Keep_Duration">RtpsReliableReaderProtocol_t_min_app_ack_response_keep_duration</dref> 
  2061.    --  <dref name="Samples_Per_App_Ack">RtpsReliableReaderProtocol_t_samples_per_app_ack</dref> 
  2062.  
  2063.    RTPS_RELIABLE_READER_PROTOCOL_DEFAULT : aliased constant RtpsReliableReaderProtocol_T := 
  2064.                                              (Min_Heartbeat_Response_Delay       => (0, 0), 
  2065.                                               Max_Heartbeat_Response_Delay       => (0, 500_000_000), 
  2066.                                               Heartbeat_Suppression_Duration     => (0, 62_500_000), 
  2067.                                               Nack_Period                        => (5, 0), 
  2068.                                               Receive_Window_Size                => 256, 
  2069.                                               Round_Trip_Time                    => (0, 0), 
  2070.                                               App_Ack_Period                     => (5, 0), 
  2071.                                               Min_App_Ack_Response_Keep_Duration => (0, 0), 
  2072.                                               Samples_Per_App_Ack                => 1); 
  2073.    --  <dref internal="true"></dref> 
  2074.  
  2075.    RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT : 
  2076.    aliased  constant RtpsReliableReaderProtocol_T := (Min_Heartbeat_Response_Delay       => (0, 0), 
  2077.                                                       Max_Heartbeat_Response_Delay       => (0, 0), 
  2078.                                                       Heartbeat_Suppression_Duration     => (0, 62_500_000), 
  2079.                                                       Nack_Period                        => (5, 0), 
  2080.                                                       Receive_Window_Size                => 256, 
  2081.                                                       Round_Trip_Time                    => (0, 0), 
  2082.                                                       App_Ack_Period                     => (5, 0), 
  2083.                                                       Min_App_Ack_Response_Keep_Duration => (0, 0), 
  2084.                                                       Samples_Per_App_Ack                => 1); 
  2085.    --  <dref internal="true"></dref> 
  2086.  
  2087.    RTPS_PARTICIPANT_MESSAGE_READER_DISCOVERY_CONFIG_DEFAULT : 
  2088.    aliased constant RtpsReliableReaderProtocol_T := (Min_Heartbeat_Response_Delay       => (0, 0), 
  2089.                                                      Max_Heartbeat_Response_Delay       => (0, 0), 
  2090.                                                      Heartbeat_Suppression_Duration     => (0, 62_500_000), 
  2091.                                                      Nack_Period                        => (5, 0), 
  2092.                                                      Receive_Window_Size                => 256, 
  2093.                                                      Round_Trip_Time                    => (0, 0), 
  2094.                                                      App_Ack_Period                     => (5, 0), 
  2095.                                                      Min_App_Ack_Response_Keep_Duration => (0, 0), 
  2096.                                                      Samples_Per_App_Ack                => 1); 
  2097.    --  <dref internal="true"></dref> 
  2098.  
  2099.    --  ------------------------------------------------- 
  2100.    --                 RtpsReliableWriterProtocol_t 
  2101.    --  ------------------------------------------------- 
  2102.  
  2103.    type RtpsReliableWriterProtocol_T is record -- RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT is default 
  2104.       Low_Watermark                                                     : aliased Long := 0; 
  2105.       High_Watermark                                                    : aliased Long := 1; 
  2106.       Heartbeat_Period                                                  : aliased Duration_T := (3, 0); 
  2107.       Fast_Heartbeat_Period                                             : aliased Duration_T := (3, 0); 
  2108.       Late_Joiner_Heartbeat_Period                                      : aliased Duration_T := (3, 0); 
  2109.       Virtual_Heartbeat_Period                                          : aliased Duration_T := DURATION_INFINITE; 
  2110.       Samples_Per_Virtual_Heartbeat                                     : aliased Long := -1; 
  2111.       Max_Heartbeat_Retries                                             : aliased Long := 10; 
  2112.       Inactivate_Nonprogressing_Readers                                 : aliased Boolean := False; 
  2113.       Heartbeats_Per_Max_Samples                                        : aliased Long := 8; 
  2114.       Min_Nack_Response_Delay                                           : aliased Duration_T := (0, 0); 
  2115.       Max_Nack_Response_Delay                                           : aliased Duration_T := (0, 200_000_000); 
  2116.       Nack_Suppression_Duration                                         : aliased Duration_T := (0, 0); 
  2117.       Max_Bytes_Per_Nack_Response                                       : aliased Long := 131072; 
  2118.       Disable_Positive_Acks_Min_Sample_Keep_Duration                    : aliased Duration_T := (0, 1_000_000); 
  2119.       Disable_Positive_Acks_Max_Sample_Keep_Duration                    : aliased Duration_T := (1, 0); 
  2120.       Disable_Positive_Acks_Sample_Min_Separation                       : aliased Duration_T := (0, 1_000_000); 
  2121.       Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration        : aliased Boolean := True; 
  2122.       Disable_Positive_Acks_Enable_Spin_Wait                            : aliased Boolean := False; 
  2123.       Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor        : aliased Long := 0; 
  2124.       Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor        : aliased Long := 3; 
  2125.       Min_Send_Window_Size                                              : aliased Long := 32; 
  2126.       Max_Send_Window_Size                                              : aliased Long := 256; 
  2127.       Send_Window_Update_Period                                         : aliased Duration_T := (3, 0); 
  2128.       Send_Window_Increase_Factor                                       : aliased Long := 105; 
  2129.       Send_Window_Decrease_Factor                                       : aliased Long := 70; 
  2130.       Enable_Multicast_Periodic_Heartbeat                               : aliased Boolean := False; 
  2131.       Multicast_Resend_Threshold                                        : aliased Long := 2; 
  2132.       Disable_Repair_Piggyback_Heartbeat                                : aliased Boolean := False; 
  2133.    end record with 
  2134.      Convention => C; 
  2135.    --  <dref>RtpsReliableWriterProtocol_t</dref> 
  2136.    --  <dref name="low_watermark">RtpsReliableWriterProtocol_t_low_watermark</dref> 
  2137.    --  <dref name="high_watermark">RtpsReliableWriterProtocol_t_high_watermark</dref> 
  2138.    --  <dref name="heartbeat_period">RtpsReliableWriterProtocol_t_heartbeat_period</dref> 
  2139.    --  <dref name="fast_heartbeat_period">RtpsReliableWriterProtocol_t_fast_heartbeat_period</dref> 
  2140.    --  <dref name="late_joiner_heartbeat_period">RtpsReliableWriterProtocol_t_late_joiner_heartbeat_period</dref> 
  2141.    --  <dref name="virtual_heartbeat_period">RtpsReliableWriterProtocol_t_virtual_heartbeat_period</dref> 
  2142.    --  <dref name="samples_per_virtual_heartbeat">RtpsReliableWriterProtocol_t_samples_per_virtual_heartbeat</dref> 
  2143.    --  <dref name="max_heartbeat_retries">RtpsReliableWriterProtocol_t_max_heartbeat_retries</dref> 
  2144.    --  <dref name="inactivate_nonprogresing_readers">RtpsReliableWriterProtocol_t_inactivate_nonprogressing_readers</dref> 
  2145.    --  <dref name="heartbeats_per_max_samples">RtpsReliableWriterProtocol_t_heartbeats_per_max_samples</dref> 
  2146.    --  <dref name="min_nack_response_delay">RtpsReliableWriterProtocol_t_min_nack_response_delay</dref> 
  2147.    --  <dref name="max_nack_response_delay">RtpsReliableWriterProtocol_t_max_nack_response_delay</dref> 
  2148.    --  <dref name="nack_suppression_duration">RtpsReliableWriterProtocol_t_nack_suppression_duration</dref> 
  2149.    --  <dref name="max_bytes_per_nack_response">RtpsReliableWriterProtocol_t_max_bytes_per_nack_response</dref> 
  2150.    --  <dref name="disable_positive_acks_min_sample_keep_duration">RtpsReliableWriterProtocol_t_disable_positive_acks_min_sample_keep_duration</dref> 
  2151.    --  <dref name="disable_positive_acks_max_sample_keep_duration">RtpsReliableWriterProtocol_t_disable_positive_acks_max_sample_keep_duration</dref> 
  2152.    --  <dref internal="true" name="disable_positive_acks_sample_min_separation">RtpsReliableWriterProtocol_t_disable_positive_acks_sample_min_separation</dref> 
  2153.    --  <dref name="disable_positive_acks_enable_adaptive_sample_keep_duration">RtpsReliableWriterProtocol_t_disable_positive_acks_enable_adaptive_sample_keep_duration</dref> 
  2154.    --  <dref name="disable_positive_acks_enable_spin_wait">RtpsReliableWriterProtocol_t_disable_positive_acks_enable_spin_wait</dref> 
  2155.    --  <dref name="disable_positive_acks_decrease_sample_keep_duration_factor">RtpsReliableWriterProtocol_t_disable_positive_acks_decrease_sample_keep_duration_factor</dref> 
  2156.    --  <dref name="disable_positive_acks_increase_sample_keep_duration_factor">RtpsReliableWriterProtocol_t_disable_positive_acks_increase_sample_keep_duration_factor</dref> 
  2157.    --  <dref name="min_send_window_size">RtpsReliableWriterProtocol_t_min_send_window_size</dref> 
  2158.    --  <dref name="max_send_window_size">RtpsReliableWriterProtocol_t_max_send_window_size</dref> 
  2159.    --  <dref name="send_window_update_period">RtpsReliableWriterProtocol_t_send_window_update_period</dref> 
  2160.    --  <dref name="send_window_increase_factor">RtpsReliableWriterProtocol_t_send_window_increase_factor</dref> 
  2161.    --  <dref name="send_window_decrease_factor">RtpsReliableWriterProtocol_t_send_window_decrease_factor</dref> 
  2162.    --  <dref name="enable_multicast_periodic_heartbeat">RtpsReliableWriterProtocol_t_enable_multicast_periodic_heartbeat</dref> 
  2163.    --  <dref name="multicast_resend_threshold">RtpsReliableWriterProtocol_t_multicast_resend_threshold</dref> 
  2164.    --  <dref name="disable_repair_piggyback_heartbeat">RtpsReliableWriterProtocol_t_disable_repair_piggyback_heartbeat</dref> 
  2165.  
  2166.    --  for RtpsReliableWriterProtocol_T'Alignment use 8; 
  2167.    --  pragma Annotate (RtpsReliableWriterProtocol_T, Source => RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_RtpsReliableWriterProtocol_t); 
  2168.  
  2169.    RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT : 
  2170.    constant RtpsReliableWriterProtocol_T := (Low_Watermark                                                    => 0, 
  2171.                                              High_Watermark                                                   => 1, 
  2172.                                              Heartbeat_Period                                                 => (3, 0), 
  2173.                                              Fast_Heartbeat_Period                                            => (3, 0), 
  2174.                                              Late_Joiner_Heartbeat_Period                                     => (3, 0), 
  2175.                                              Virtual_Heartbeat_Period                                         => DURATION_INFINITE, 
  2176.                                              Samples_Per_Virtual_Heartbeat                                    => -1, 
  2177.                                              Max_Heartbeat_Retries                                            => 10, 
  2178.                                              Inactivate_Nonprogressing_Readers                                => False, 
  2179.                                              Heartbeats_Per_Max_Samples                                       => 8, 
  2180.                                              Min_Nack_Response_Delay                                          => (0, 0), 
  2181.                                              Max_Nack_Response_Delay                                          => (0, 200_000_000), 
  2182.                                              Nack_Suppression_Duration                                        => (0, 0), 
  2183.                                              Max_Bytes_Per_Nack_Response                                      => 131072, 
  2184.                                              Disable_Positive_Acks_Min_Sample_Keep_Duration                   => (0, 1_000_000), 
  2185.                                              Disable_Positive_Acks_Max_Sample_Keep_Duration                   => (1, 0), 
  2186.                                              Disable_Positive_Acks_Sample_Min_Separation                      => (0, 100_000), 
  2187.                                              Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration       => True, 
  2188.                                              Disable_Positive_Acks_Enable_Spin_Wait                           => False, 
  2189.                                              Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor       => 0, 
  2190.                                              Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor       => 3, 
  2191.                                              Min_Send_Window_Size                                             => 32, 
  2192.                                              Max_Send_Window_Size                                             => 256, 
  2193.                                              Send_Window_Update_Period                                        => (3, 0), 
  2194.                                              Send_Window_Increase_Factor                                      => 105, 
  2195.                                              Send_Window_Decrease_Factor                                      => 70, 
  2196.                                              Enable_Multicast_Periodic_Heartbeat                              => False, 
  2197.                                              Multicast_Resend_Threshold                                       => 2, 
  2198.                                              Disable_Repair_Piggyback_Heartbeat                               => False 
  2199.                                             ); 
  2200.    --  <dref internal="true"></dref> 
  2201.  
  2202.    RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT  : 
  2203.    constant RtpsReliableWriterProtocol_T := (Low_Watermark                                                      => 0, 
  2204.                                              High_Watermark                                                     => 1, 
  2205.                                              Heartbeat_Period                                                   => (3, 0), 
  2206.                                              Fast_Heartbeat_Period                                              => (3, 0), 
  2207.                                              Late_Joiner_Heartbeat_Period                                       => (3, 0), 
  2208.                                              Virtual_Heartbeat_Period                                           => DURATION_INFINITE, 
  2209.                                              Samples_Per_Virtual_Heartbeat                                      => -1, 
  2210.                                              Max_Heartbeat_Retries                                              => 10, 
  2211.                                              Inactivate_Nonprogressing_Readers                                  => False, 
  2212.                                              Heartbeats_Per_Max_Samples                                         => 8, 
  2213.                                              Min_Nack_Response_Delay                                            => (0, 0), 
  2214.                                              Max_Nack_Response_Delay                                            => (0, 0), 
  2215.                                              Nack_Suppression_Duration                                          => (0, 0), 
  2216.                                              Max_Bytes_Per_Nack_Response                                        => 131072, 
  2217.                                              Disable_Positive_Acks_Min_Sample_Keep_Duration                     => (0, 1_000_000), 
  2218.                                              Disable_Positive_Acks_Max_Sample_Keep_Duration                     => (1, 0), 
  2219.                                              Disable_Positive_Acks_Sample_Min_Separation                        => (0, 100_000), 
  2220.                                              Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration         => True, 
  2221.                                              Disable_Positive_Acks_Enable_Spin_Wait                             => False, 
  2222.                                              Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor         => 95, 
  2223.                                              Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor         => 150, 
  2224.                                              Min_Send_Window_Size                                               => -1, 
  2225.                                              Max_Send_Window_Size                                               => -1, 
  2226.                                              Send_Window_Update_Period                                          => (3, 0), 
  2227.                                              Send_Window_Increase_Factor                                        => 105, 
  2228.                                              Send_Window_Decrease_Factor                                        => 50, 
  2229.                                              Enable_Multicast_Periodic_Heartbeat                                => False, 
  2230.                                              Multicast_Resend_Threshold                                         => 2, 
  2231.                                              Disable_Repair_Piggyback_Heartbeat                                 => False 
  2232.                                             ); 
  2233.    --  <dref internal="true"></dref> 
  2234.  
  2235.    RTPS_PARTICIPANT_MESSAGE_WRITER_DISCOVERY_CONFIG_DEFAULT  : 
  2236.    constant RtpsReliableWriterProtocol_T := (Low_Watermark                                                      => 0, 
  2237.                                              High_Watermark                                                     => 1, 
  2238.                                              Heartbeat_Period                                                   => (1, 0), 
  2239.                                              Fast_Heartbeat_Period                                              => (1, 0), 
  2240.                                              Late_Joiner_Heartbeat_Period                                       => (1, 0), 
  2241.                                              Virtual_Heartbeat_Period                                           => DURATION_INFINITE, 
  2242.                                              Samples_Per_Virtual_Heartbeat                                      => -1, 
  2243.                                              Max_Heartbeat_Retries                                              => 10, 
  2244.                                              Inactivate_Nonprogressing_Readers                                  => False, 
  2245.                                              Heartbeats_Per_Max_Samples                                         => 1, 
  2246.                                              Min_Nack_Response_Delay                                            => (0, 0), 
  2247.                                              Max_Nack_Response_Delay                                            => (0, 0), 
  2248.                                              Nack_Suppression_Duration                                          => (0, 0), 
  2249.                                              Max_Bytes_Per_Nack_Response                                        => 9216, 
  2250.                                              Disable_Positive_Acks_Min_Sample_Keep_Duration                     => (0, 1_000_000), 
  2251.                                              Disable_Positive_Acks_Max_Sample_Keep_Duration                     => (1, 0), 
  2252.                                              Disable_Positive_Acks_Sample_Min_Separation                        => (0, 100_000), 
  2253.                                              Disable_Positive_Acks_Enable_Adaptive_Sample_Keep_Duration         => True, 
  2254.                                              Disable_Positive_Acks_Enable_Spin_Wait                             => False, 
  2255.                                              Disable_Positive_Acks_Decrease_Sample_Keep_Duration_Factor         => 95, 
  2256.                                              Disable_Positive_Acks_Increase_Sample_Keep_Duration_Factor         => 150, 
  2257.                                              Min_Send_Window_Size                                               => -1, 
  2258.                                              Max_Send_Window_Size                                               => -1, 
  2259.                                              Send_Window_Update_Period                                          => (1, 0), 
  2260.                                              Send_Window_Increase_Factor                                        => 105, 
  2261.                                              Send_Window_Decrease_Factor                                        => 50, 
  2262.                                              Enable_Multicast_Periodic_Heartbeat                                => False, 
  2263.                                              Multicast_Resend_Threshold                                         => 2, 
  2264.                                              Disable_Repair_Piggyback_Heartbeat                                 => False 
  2265.                                             ); 
  2266.    --  <dref internal="true"></dref> 
  2267.  
  2268.    --  ------------------------------------------------- 
  2269.    --                 UserObjectSettings_t 
  2270.    --  ------------------------------------------------- 
  2271.  
  2272.    type UserObjectSettings_T is record 
  2273.       Size      : aliased Long := 0; 
  2274.       Alignment : aliased Long := 0; 
  2275.    end record with 
  2276.      Convention => C; 
  2277.    --  <dref internal="true">UserObjectSettings_t</dref> 
  2278.    --  <dref internal="true" name="Size">UserObjectSettings_t_size</dref> 
  2279.    --  <dref internal="true" name="Alignment">UserObjectSettings_t_alignment</dref> 
  2280.  
  2281.    --  ------------------------------------------------- 
  2282.    --                 TransportUnicastSettings_t 
  2283.    --  ------------------------------------------------- 
  2284.  
  2285.    type TransportUnicastSettings_T is record 
  2286.       Transports   : aliased String_Seq.Sequence; 
  2287.       Receive_Port : aliased Long := 0; 
  2288.    end record with 
  2289.      Convention => C; 
  2290.    --  <defgroup>TransportUnicastSettingsGroupDocs</defgroup> 
  2291.    --  <dref>TransportUnicastSettings_t</dref> 
  2292.    --  <dref name="Transport">TransportUnicastSettings_t_transports</dref> 
  2293.    --  <dref name="Receive_Port">TransportUnicastSettings_t_receive_port</dref> 
  2294.  
  2295.    type TransportUnicastSettings_T_Access is access all TransportUnicastSettings_T; 
  2296.    type TransportUnicastSettings_T_Array is array 
  2297.      (Natural range <>) of aliased TransportUnicastSettings_T; 
  2298.    procedure Initialize (Self  : in out TransportUnicastSettings_T); 
  2299.    procedure Finalize (Self  : in out TransportUnicastSettings_T); 
  2300.    procedure Copy (Dst : in out TransportUnicastSettings_T; 
  2301.                    Src : in TransportUnicastSettings_T); 
  2302.  
  2303.    package TransportUnicastSettings_Seq is new DDS_Support.Sequences_Generic 
  2304.      (TransportUnicastSettings_T, 
  2305.       TransportUnicastSettings_T_Access, 
  2306.       DDS.Natural, 
  2307.       1, 
  2308.       TransportUnicastSettings_T_Array); 
  2309.    --  <dref>TransportUnicastSettingsSeq</dref> 
  2310.  
  2311.    --  ------------------------------------------------- 
  2312.    --                 TransportMulticastSettings_t 
  2313.    --  ------------------------------------------------- 
  2314.  
  2315.    type TransportMulticastSettings_T is record 
  2316.       Transports      : DDS.String_Seq.Sequence; 
  2317.       Receive_Address : DDS.String; 
  2318.       Receive_Port    : Long := 0; 
  2319.    end record with 
  2320.      Convention => C; 
  2321.    --  <defgroup>TransportMulticastSettingsGroupDocs</defgroup> 
  2322.    --  <dref>TransportMulticastSettings_t</dref> 
  2323.    --  <dref name="Transports">TransportMulticastSettings_t_transports</dref> 
  2324.    --  <dref name="Receive_Address">TransportMulticastSettings_t_receive_address</dref> 
  2325.    --  <dref name="Receive_Port">TransportMulticastSettings_t_receive_port</dref> 
  2326.  
  2327.    --     TRANSPORT_MULTICAST_LOCATORS_DEFAULT : constant TransportMulticastSettings_T := 
  2328.    --       (Transports => DDS.String_Seq.DEFAULT_SEQUENCE, 
  2329.    --        Receive_Address => DDS.NULL_STRING, 
  2330.    --        Receive_Port => 0); 
  2331.  
  2332.    type TransportMulticastSettings_T_Access is access all TransportMulticastSettings_T; 
  2333.    type TransportMulticastSettings_T_Array is array 
  2334.      (Natural range <>) of aliased TransportMulticastSettings_T; 
  2335.    procedure Initialize (Self  : in out TransportMulticastSettings_T); 
  2336.    procedure Finalize (Self  : in out TransportMulticastSettings_T); 
  2337.    procedure Copy (Dst : in out TransportMulticastSettings_T; 
  2338.                    Src : in TransportMulticastSettings_T); 
  2339.  
  2340.    package TransportMulticastSettings_Seq is new DDS_Support.Sequences_Generic 
  2341.      (TransportMulticastSettings_T, 
  2342.       TransportMulticastSettings_T_Access, 
  2343.       DDS.Natural, 
  2344.       1, 
  2345.       TransportMulticastSettings_T_Array); 
  2346.    --  <dref>TransportMulticastSettingsSeq</dref> 
  2347.  
  2348.    --  ------------------------------------------------- 
  2349.    --             TransportMulticastMappingFunction_t 
  2350.    --  ------------------------------------------------- 
  2351.  
  2352.    type TransportMulticastMappingFunction_T is record 
  2353.       Dll             : DDS.String; 
  2354.       Function_Name   : DDS.String; 
  2355.    end record with 
  2356.      Convention => C; 
  2357.    --  <defgroup>TransportMulticastMappingGroupDocs</defgroup> 
  2358.    --  <dref>TransportMulticastMappingFunction_t</dref> 
  2359.    --  <dref name="dll">TransportMulticastMappingFunction_t_dll</dref> 
  2360.    --  <dref name="function_name">TransportMulticastMappingFunction_t_function_name</dref> 
  2361.  
  2362.    --   TRANSPORT_MULTICAST_MAPPING_FUNCTION_DEFAULT : constant TransportMulticastMappingFunction_T := 
  2363.    --                                          (dll => DDS.NULL_STRING, 
  2364.    --                                          function_name => DDS.NULL_STRING); 
  2365.  
  2366.  
  2367.    --  ------------------------------------------------- 
  2368.    --              TransportMulticastMapping_t 
  2369.    ----------------------------------------------------- 
  2370.  
  2371.    type TransportMulticastMapping_T is record 
  2372.       Addresses          : DDS.String; 
  2373.       Topic_Expression   : DDS.String; 
  2374.       Mapping_Function   : TransportMulticastMappingFunction_T; 
  2375.    end record with 
  2376.      Convention => C; 
  2377.    --  <dref>TransportMulticastMapping_t</dref> 
  2378.    --  <dref name="addresses">TransportMulticastMapping_t_addresses</dref> 
  2379.    --  <dref name="topic_expression">TransportMulticastMapping_t_topic_expression</dref> 
  2380.    --  <dref name="mapping_function">TransportMulticastMapping_t_mapping_function</dref> 
  2381.  
  2382.    --   TRANSPORT_MULTICAST_MAPPING_DEFAULT : constant TransportMulticastMapping_T := 
  2383.    --                              (addresses          => DDS.NULL_STRING, 
  2384.    --                              topic_expression   => DDS.NULL_STRING, 
  2385.    --                              mapping_function   => TRANSPORT_MULTICAST_MAPPING_FUNCTION_DEFAULT); 
  2386.  
  2387.    type TransportMulticastMapping_T_Access is access all TransportMulticastMapping_T; 
  2388.    type TransportMulticastMapping_T_Array is array 
  2389.      (Natural range <>) of aliased TransportMulticastMapping_T; 
  2390.    procedure Initialize (Self  : in out TransportMulticastMapping_T); 
  2391.    procedure Finalize (Self  : in out TransportMulticastMapping_T); 
  2392.    procedure Copy (Dst : in out TransportMulticastMapping_T; 
  2393.                    Src : in TransportMulticastMapping_T); 
  2394.  
  2395.    package TransportMulticastMapping_Seq is new DDS_Support.Sequences_Generic 
  2396.      (TransportMulticastMapping_T, 
  2397.       TransportMulticastMapping_T_Access, 
  2398.       DDS.Natural, 
  2399.       1, 
  2400.       TransportMulticastMapping_T_Array); 
  2401.    --  <dref>TransportMulticastMappingSeq</dref> 
  2402.  
  2403.  
  2404.    --  ------------------------------------------------- 
  2405.    --                 TransportEncapsulationSettings 
  2406.    --  ------------------------------------------------- 
  2407.  
  2408.    type EncapsulationId_T is new Unsigned_Short; 
  2409.    --  <defgroup internal="true">TransportEncapsulationSettingsGroupDocs</defgroup> 
  2410.    --  <dref internal="true">EncapsulationId_t</dref> 
  2411.  
  2412.    type EncapsulationId_T_Access is access all EncapsulationId_T; 
  2413.    type EncapsulationId_T_Array is array 
  2414.      (Natural range <>) of aliased EncapsulationId_T; 
  2415.    procedure Initialize (Self  : in out EncapsulationId_T); 
  2416.    procedure Finalize (Self  : in out EncapsulationId_T); 
  2417.    procedure Copy (Dst : in out EncapsulationId_T; 
  2418.                    Src : in EncapsulationId_T); 
  2419.  
  2420.    package EncapsulationId_Seq is new DDS_Support.Sequences_Generic 
  2421.      (EncapsulationId_T, 
  2422.       EncapsulationId_T_Access, 
  2423.       DDS.Natural, 
  2424.       1, 
  2425.       EncapsulationId_T_Array); 
  2426.    --  <dref internal="true">EncapsulationIdSeq</dref> 
  2427.  
  2428.    ENCAPSULATION_ID_CDR_BE : constant EncapsulationId_T := 0; 
  2429.    --  <dref internal="true">ENCAPSULATION_ID_CDR_BE</dref> 
  2430.  
  2431.    ENCAPSULATION_ID_CDR_LE : constant EncapsulationId_T := 1; 
  2432.    --  <dref internal="true">ENCAPSULATION_ID_CDR_LE</dref> 
  2433.  
  2434.    ENCAPSULATION_ID_CDR_NATIVE : constant EncapsulationId_T := System.Bit_Order'Pos (System.Default_Bit_Order); 
  2435.    --  <dref internal="true">ENCAPSULATION_ID_CDR_NATIVE</dref> 
  2436.  
  2437.    ENCAPSULATION_ID_CDR2_BE : constant EncapsulationId_T := 0; 
  2438.    --  <dref internal="true">ENCAPSULATION_ID_CDR2_BE</dref> 
  2439.  
  2440.    ENCAPSULATION_ID_CDR2_LE : constant EncapsulationId_T := 1; 
  2441.    --  <dref internal="true">ENCAPSULATION_ID_CDR2_LE</dref> 
  2442.  
  2443.    ENCAPSULATION_ID_CDR2_NATIVE : constant EncapsulationId_T := System.Bit_Order'Pos (System.Default_Bit_Order); 
  2444.    --  <dref internal="true">ENCAPSULATION_ID_CDR2_NATIVE</dref> 
  2445.  
  2446.    ENCAPSULATION_ID_SHMEM_REF_PLAIN : EncapsulationId_T := 16#C000#; 
  2447.    --  <dref internal="true">ENCAPSULATION_ID_SHMEM_REF_PLAIN</dref> 
  2448.  
  2449.    ENCAPSULATION_ID_SHMEM_REF_FLAT_DATA : EncapsulationId_T := 16#C001#; 
  2450.    --  <dref internal="true">ENCAPSULATION_ID_SHMEM_REF_FLAT_DATA</dref> 
  2451.  
  2452.    type TransportEncapsulationSettings_T is record 
  2453.       Transports     : aliased DDS.String_Seq.Sequence; 
  2454.       Encapsulations : aliased EncapsulationId_Seq.Sequence; 
  2455.    end record with 
  2456.      Convention => C; 
  2457.    --  <dref internal="true">TransportEncapsulationSettings_t</dref> 
  2458.    --  <dref internal="true" name="Transports">TransportEncapsulationSettings_t_transports</dref> 
  2459.    --  <dref internal="true" name="Encapsulations">TransportEncapsulationSettings_t_encapsulations</dref> 
  2460.  
  2461.    --     TRANSPORT_ENCAPSULATION_SETTINGS_DEFAULT : constant TransportEncapsulationSettings_T := 
  2462.    --                   (Transports => DDS.String_Seq.DEFAULT_SEQUENCE, 
  2463.    --                Encapsulations => EncapsulationId_Seq.DEFAULT_SEQUENCE); 
  2464.  
  2465.    type TransportEncapsulationSettings_T_Access is access all TransportEncapsulationSettings_T; 
  2466.    type TransportEncapsulationSettings_T_Array is array 
  2467.      (Natural range <>) of aliased TransportEncapsulationSettings_T; 
  2468.    procedure Initialize (Self  : in out TransportEncapsulationSettings_T); 
  2469.    procedure Finalize (Self  : in out TransportEncapsulationSettings_T); 
  2470.    procedure Copy (Dst : in out TransportEncapsulationSettings_T; 
  2471.                    Src : in TransportEncapsulationSettings_T); 
  2472.  
  2473.    package TransportEncapsulationSettings_Seq is new DDS_Support.Sequences_Generic 
  2474.      (TransportEncapsulationSettings_T, 
  2475.       TransportEncapsulationSettings_T_Access, 
  2476.       DDS.Natural, 
  2477.       1, 
  2478.       TransportEncapsulationSettings_T_Array); 
  2479.    --  <dref internal="true">TransportEncapslationSettingsSeq</dref> 
  2480.  
  2481.    --  ------------------------------------------------- 
  2482.    --                 DATA_REPRESENTATION 
  2483.    --  ------------------------------------------------- 
  2484.  
  2485.    type DataRepresentationId_T is new RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_DataRepresentationId_t 
  2486.       with Convention => C; 
  2487.    --  <defgroup>DataRepresentationQosGroupDocs</defgroup> 
  2488.    --  <dref>DataRepresentationId_t</dref> 
  2489.  
  2490.    XCDR_DATA_REPRESENTATION : aliased constant DataRepresentationId_T := 
  2491.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XCDR_DATA_REPRESENTATION); 
  2492.  
  2493.    XML_DATA_REPRESENTATION  : aliased constant DataRepresentationId_T := 
  2494.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XML_DATA_REPRESENTATION); 
  2495.  
  2496.    XCDR2_DATA_REPRESENTATION : aliased constant DataRepresentationId_T := 
  2497.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XCDR2_DATA_REPRESENTATION); 
  2498.  
  2499.    AUTO_DATA_REPRESENTATION : aliased constant DataRepresentationId_T := 
  2500.       DataRepresentationId_T (RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_XCDR2_DATA_REPRESENTATION); 
  2501.  
  2502.    type DataRepresentationId_T_Access is access all DataRepresentationId_T; 
  2503.    type DataRepresentationId_T_Array is array 
  2504.      (Natural range <>) of aliased DataRepresentationId_T; 
  2505.    procedure Initialize (Self : in out DataRepresentationId_T); 
  2506.    procedure Finalize   (Self : in out DataRepresentationId_T); 
  2507.    procedure Copy (Dst : in out DataRepresentationId_T; 
  2508.                    Src : in DataRepresentationId_T); 
  2509.  
  2510.    package DataRepresentationId_Seq is new DDS_Support.Sequences_Generic 
  2511.      (DataRepresentationId_T, 
  2512.       DataRepresentationId_T_Access, 
  2513.       DDS.Natural, 
  2514.       1, 
  2515.       DataRepresentationId_T_Array); 
  2516.    --  <dref>DataRepresentationIdSeq</dref> 
  2517.  
  2518.    type DataRepresentationQosPolicy is limited record 
  2519.       Value                : aliased DataRepresentationId_Seq.Sequence; 
  2520.       Compression_Settings : aliased CompressionSettings_T := COMPRESSION_SETTINGS_T_DEFAULT; 
  2521.    end record with 
  2522.       Convention => C; 
  2523.    --  <dref>DataRepresentationQosPolicy</dref> 
  2524.    --  <dref name="Value">DataRepresentationQosPolicy_value</dref> 
  2525.    --  <dref name="Compression_Settings">DataRepresentationQosPolicy_compression_settings</dref> 
  2526.  
  2527.    function Contains 
  2528.       (Policy : in DataRepresentationQosPolicy; 
  2529.        Id     : in DataRepresentationId_T) return Standard.Boolean; 
  2530.    --  <dref internal="true">DataRepresentationQosPolicy_contains</dref> 
  2531.  
  2532.    function Equals 
  2533.       (Left, Right : in DataRepresentationQosPolicy) return Standard.Boolean; 
  2534.    --  <dref internal="true">DataRepresentationQosPolicy_equals</dref> 
  2535.  
  2536.    function "=" 
  2537.       (Left, Right : in DataRepresentationQosPolicy) return Standard.Boolean 
  2538.       renames Equals; 
  2539.    --  <dref internal="true">DataRepresentationQosPolicy_equals</dref> 
  2540.  
  2541.    function Get_Native_Encapsulation 
  2542.       (Id : in DataRepresentationId_T) return EncapsulationId_T; 
  2543.    pragma Import (C, Get_Native_Encapsulation, "DDS_DataRepresentationQosPolicy_getNativeEncapsulation"); 
  2544.    --  <dref>DataRepresentationQosPolicy_getNativeEncapsulation</dref> 
  2545.  
  2546.  
  2547.    --  -------------------------------------------------- 
  2548.    --                 TRANSPORT_SELECTION (eXtension QoS) 
  2549.    --  -------------------------------------------------- 
  2550.  
  2551.    TRANSPORTSELECTION_QOS_POLICY_NAME : constant DDS.String  := To_DDS_String ("TransportSelection"); 
  2552.    --  <defgroup>TransportSelectionQosGroupDocs</defgroup> 
  2553.    --  <dref>TRANSPORTSELECTION_QOS_POLICY_NAME</dref> 
  2554.  
  2555.    type TransportSelectionQosPolicy is record 
  2556.       Enabled_Transports : aliased DDS.String_Seq.Sequence; 
  2557.    end record with 
  2558.      Convention => C; 
  2559.    --  <dref>TransportSelectionQosPolicy</dref> 
  2560.    --  <dref name="Enabled_Transports">TransportSelectionQosPolicy_enabled_transports</dref> 
  2561.  
  2562.    --     TRANSPORT_SELECTION_QOS_POLICY_DEFAULT : constant TransportSelectionQosPolicy := 
  2563.    --                                                (Enabled_Transports => DDS.String_Seq.DEFAULT_SEQUENCE); 
  2564.  
  2565.    --  -------------------------------------------------- 
  2566.    --                 TRANSPORT_UNICAST (eXtension QoS) 
  2567.    --  -------------------------------------------------- 
  2568.  
  2569.    TRANSPORTUNICAST_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportUnicast"); 
  2570.    --  <defgroup>TransportUnicastQosGroupDocs</defgroup> 
  2571.    --  <dref>TRANSPORTUNICAST_QOS_POLICY_NAME</dref> 
  2572.  
  2573.    type TransportUnicastQosPolicy is record 
  2574.       Value :  TransportUnicastSettings_Seq.Sequence; 
  2575.    end record with 
  2576.      Convention => C; 
  2577.    --  <dref>TransportUnicastQosPolicy</dref> 
  2578.    --  <dref name="Value">TransportUnicastQosPolicy_value</dref> 
  2579.  
  2580.    --     TRANSPORT_UNICAST_QOS_POLICY_DEFAULT : constant TransportUnicastQosPolicy := 
  2581.    --                                              (Value => TransportUnicastSettings_Seq.DEFAULT_SEQUENCE); 
  2582.  
  2583.    --  -------------------------------------------------- 
  2584.    --                 TRANSPORT_MULTICAST (eXtension QoS) 
  2585.    --  -------------------------------------------------- 
  2586.  
  2587.    TRANSPORTMULTICAST_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportMulticast"); 
  2588.    --  <defgroup>TransportMulticastQosGroupDocs</defgroup> 
  2589.    --  <dref>TRANSPORTMULTICAST_QOS_POLICY_NAME</dref> 
  2590.  
  2591.    type TransportMulticastQosPolicyKind is new Unsigned_Long; 
  2592.    --  <dref>TransportMulticastQosPolicyKind</dref> 
  2593.  
  2594.    AUTOMATIC_TRANSPORT_MULTICAST_QOS : constant TransportMulticastQosPolicyKind := 0; 
  2595.    --  <dref>TransportMulticastQosPolicyKind_AUTOMATIC_TRANSPORT_MULTICAST_QOS</dref> 
  2596.  
  2597.    UNICAST_ONLY_TRANSPORT_MULTICAST_QOS : constant TransportMulticastQosPolicyKind := 1; 
  2598.    --  <dref>TransportMulticastQosPolicyKind_UNICAST_ONLY_TRANSPORT_MULTICAST_QOS</dref> 
  2599.  
  2600.  
  2601.    type TransportMulticastQosPolicy is record 
  2602.       Value : TransportMulticastSettings_Seq.Sequence; 
  2603.       Kind  : TransportMulticastQosPolicyKind := AUTOMATIC_TRANSPORT_MULTICAST_QOS; 
  2604.    end record with 
  2605.      Convention => C; 
  2606.    --  <dref>TransportMulticastQosPolicy</dref> 
  2607.    --  <dref name="Value">TransportMulticastQosPolicy_value</dref> 
  2608.    --  <dref name="Kind">TransportMulticastQosPolicy_kind</dref> 
  2609.  
  2610.    --     TRANSPORT_MULTICAST_QOS_POLICY_DEFAULT : constant TransportMulticastQosPolicy := 
  2611.    --                                                (Value => TransportMulticastSettings_Seq.DEFAULT_SEQUENCE); 
  2612.    -- 
  2613.  
  2614.    --  ------------------------------------------------------ 
  2615.    --                 TRANSPORT_MULTICAST_MAPPING (eXtension QoS) 
  2616.    --  ------------------------------------------------------ 
  2617.  
  2618.    TRANSPORTMULTICASTMAPPING_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportMulticastMapping"); 
  2619.    --  <defgroup>TransportMulticastMappingQosGroupDocs</defgroup> 
  2620.    --  <dref>TRANSPORTMULTICASTMAPPING_QOS_POLICY_NAME</dref> 
  2621.  
  2622.    type TransportMulticastMappingQosPolicy is record 
  2623.       Value : TransportMulticastMapping_Seq.Sequence; 
  2624.    end record with 
  2625.      Convention => C; 
  2626.    --  <dref>TransportMulticastMappingQosPolicy</dref> 
  2627.    --  <dref name="Value">TransportMulticastMappingQosPolicy_value</dref> 
  2628.  
  2629.    --  TRANSPORT_MULTICAST_MAPPING_QOS_POLICY_DEFAULT : constant TransportMulticastMappingQosPolicy := 
  2630.    --                                      (Value => TransportMulticastMapping_Seq.DEFAULT_SEQUENCE); 
  2631.  
  2632.  
  2633.    --  ------------------------------------------------------ 
  2634.    --                 TRANSPORT_ENCAPSULATION (eXtension QoS) 
  2635.    --  ------------------------------------------------------ 
  2636.  
  2637.    TRANSPORTENCAPSULATION_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportEncapsulation"); 
  2638.    --  <defgroup internal="true">TransportEncapsulationQosGroupDocs</defgroup> 
  2639.    --  <dref internal="true">TRANSPORTENCAPSULATION_QOS_POLICY_NAME</dref> 
  2640.  
  2641.    type TransportEncapsulationQosPolicy is record 
  2642.       Value : aliased TransportEncapsulationSettings_Seq.Sequence; 
  2643.    end record with 
  2644.      Convention => C; 
  2645.    --  <dref internal="true">TransportEncapsulationQosPolicy</dref> 
  2646.    --  <dref internal="true" name="Value">TransportEncapsulationQosPolicy_value</dref> 
  2647.  
  2648.    --     TRANSPORT_ENCAPSULATION_QOS_POLICY_DEFAULT : constant TransportEncapsulationQosPolicy := 
  2649.    --                   (Value => TransportEncapsulationSettings_Seq.DEFAULT_SEQUENCE); 
  2650.  
  2651.    --  ------------------------------------------------------ 
  2652.    --                 DISCOVERY (eXtension QoS) 
  2653.    --  ------------------------------------------------------ 
  2654.  
  2655.    DISCOVERY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Discovery"); 
  2656.    --  <defgroup>DiscoveryQosGroupDocs</defgroup> 
  2657.    --  <dref>DISCOVERY_QOS_POLICY_NAME</dref> 
  2658.    --  <defgroup>NDDS_DISCOVERY_PEERS</defgroup> 
  2659.  
  2660.    type DiscoveryQosPolicy is record 
  2661.       Enabled_Transports                          : aliased String_Seq.Sequence; 
  2662.       Initial_Peers                               : aliased String_Seq.Sequence; 
  2663.       Multicast_Receive_Addresses                 : aliased String_Seq.Sequence; 
  2664.       Metatraffic_Transport_Priority              : aliased Long := 0; 
  2665.       Accept_Unknown_Peers                        : aliased DDS.Boolean := True; 
  2666.       Enable_Endpoint_Discovery                   : aliased DDS.Boolean := True; 
  2667.    end record with 
  2668.      Convention => C; 
  2669.    --  <dref>DiscoveryQosPolicy</dref> 
  2670.    --  <dref name="Enabled_Transports">DiscoveryQosPolicy_enabled_transports</dref> 
  2671.    --  <dref name="Initial_Peers">DiscoveryQosPolicy_initial_peers</dref> 
  2672.    --  <dref name="Multicast_Receive_Addresses">DiscoveryQosPolicy_multicast_receive_addresses</dref> 
  2673.    --  <dref name="Metatraffic_Transport_Priority">DiscoveryQosPolicy_metatraffic_transport_priority</dref> 
  2674.    --  <dref name="Accept_Unknown_Peers">DiscoveryQosPolicy_accept_unknown_peers</dref> 
  2675.    --  <dref name="Enable_Endpoint_Discovery">DiscoveryQosPolicy_enable_endpoint_discovery</dref> 
  2676.  
  2677.    --     DISCOVERY_QOS_POLICY_DEFAULT : constant  DiscoveryQosPolicy := 
  2678.    --                                      (Enabled_Transports             => String_Seq.DEFAULT_SEQUENCE, 
  2679.    --                                       Initial_Peers                  => String_Seq.DEFAULT_SEQUENCE, 
  2680.    --                                       Multicast_Receive_Addresses    => String_Seq.DEFAULT_SEQUENCE, 
  2681.    --                                       Metatraffic_Transport_Priority => 0, 
  2682.    --                                       Accept_Unknown_Peers           => TRUE, 
  2683.    --                                       Spare1                         => False, 
  2684.    --                                       Spare2                         => False, 
  2685.    --                                       Spare3                         => False); 
  2686.  
  2687.    --  ------------------------------------------------------ 
  2688.    --                 Discovery_ParticipantInformation 
  2689.    --  ------------------------------------------------------ 
  2690.  
  2691.    type Discovery_ParticipantInformation is record 
  2692.       Participant_Discovery_Id         : aliased Long := 0; 
  2693.       Participant_Discovery_Version    : aliased Long := 0; 
  2694.       Participant_Discovery_Vendor_Id  : aliased Long := 0; 
  2695.       Participant_Discovery_Parameters : aliased Octet_Seq.Sequence; 
  2696.    end record with 
  2697.      Convention => C; 
  2698.    --  <dref internal="true">Discovery_ParticipantInformation</dref> 
  2699.    --  <dref internal="true" name="Participant_Discovery_Id">Discovery_ParticipantInformation_participant_discovery_id</dref> 
  2700.    --  <dref internal="true" name="Participant_Discovery_Version">Discovery_ParticipantInformation_participant_discovery_version</dref> 
  2701.    --  <dref internal="true" name="Participant_Discovery_Vendor_Id">Discovery_ParticipantInformation_participant_discovery_vendor_id</dref> 
  2702.    --  <dref internal="true" name="Participant_Discovery_Parameters">Discovery_ParticipantInformation_participant_parameters</dref> 
  2703.  
  2704.    type Discovery_ParticipantInformation_Access is access all Discovery_ParticipantInformation; 
  2705.    type Discovery_ParticipantInformation_Array is array 
  2706.      (Natural range <>) of aliased Discovery_ParticipantInformation; 
  2707.    procedure Initialize (Self  : in out Discovery_ParticipantInformation); 
  2708.    procedure Finalize (Self  : in out Discovery_ParticipantInformation); 
  2709.    procedure Copy (Dst : in out Discovery_ParticipantInformation; 
  2710.                    Src : in Discovery_ParticipantInformation); 
  2711.  
  2712.    package Discovery_ParticipantInformationSeq is new DDS_Support.Sequences_Generic 
  2713.      (Discovery_ParticipantInformation, 
  2714.       Discovery_ParticipantInformation_Access, 
  2715.       DDS.Natural, 
  2716.       1, 
  2717.       Discovery_ParticipantInformation_Array); 
  2718.    --  <dref internal="true">Discovery_ParticipantInformationSeq</dref> 
  2719.  
  2720.    --  ------------------------------------------------------ 
  2721.    --                 Discovery_EndpointInformation 
  2722.    --  ------------------------------------------------------ 
  2723.  
  2724.    type Discovery_EndpointInformation is record 
  2725.       Endpoint_Discovery_Id         : aliased Long := 0; 
  2726.       Endpoint_Discovery_Version    : aliased Long := 0; 
  2727.       Endpoint_Discovery_Vendor_Id  : aliased Long := 0; 
  2728.       Endpoint_Discovery_Parameters : aliased Octet_Seq.Sequence; 
  2729.    end record with 
  2730.      Convention => C; 
  2731.    --  <dref internal="true">Discovery_EndpointInformation</dref> 
  2732.    --  <dref internal="true" name="Endpoint_Discovery_Id">Discovery_EndpointInformation_participant_discovery_id</dref> 
  2733.    --  <dref internal="true" name="Endpoint_Discovery_Version">Discovery_EndpointInformation_participant_discovery_version</dref> 
  2734.    --  <dref internal="true" name="Endpoint_Discovery_Vendor_Id">Discovery_EndpointInformation_participant_discovery_vendor_id</dref> 
  2735.    --  <dref internal="true" name="Endpoint_Discovery_Parameters">Discovery_EndpointInformation_participant_parameters</dref> 
  2736.  
  2737.    type Discovery_EndpointInformation_Access is access all Discovery_EndpointInformation; 
  2738.    type Discovery_EndpointInformation_Array is array 
  2739.      (Natural range <>) of aliased Discovery_EndpointInformation; 
  2740.    procedure Initialize (Self  : in out Discovery_EndpointInformation); 
  2741.    procedure Finalize (Self  : in out Discovery_EndpointInformation); 
  2742.    procedure Copy (Dst : in out Discovery_EndpointInformation; 
  2743.                    Src : in Discovery_EndpointInformation); 
  2744.  
  2745.    package Discovery_EndpointInformationSeq is new DDS_Support.Sequences_Generic 
  2746.      (Discovery_EndpointInformation, 
  2747.       Discovery_EndpointInformation_Access, 
  2748.       DDS.Natural, 
  2749.       1, 
  2750.       Discovery_EndpointInformation_Array); 
  2751.    --  <dref internal="true">Discovery_EndpointInformationSeq</dref> 
  2752.  
  2753.    --  ------------------------------------------------------ 
  2754.    --                 TRANSPORTBUILTIN (eXtension QoS) 
  2755.    --  ------------------------------------------------------ 
  2756.  
  2757.    TRANSPORTBUILTIN_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TransportBuiltin"); 
  2758.    --  <defgroup>TransportBuiltinQosGroupDocs</defgroup> 
  2759.    --  <dref>TRANSPORTBUILTIN_QOS_POLICY_NAME</dref> 
  2760.  
  2761.    type TransportBuiltinKind is new Unsigned_Long; 
  2762.    --  <dref>TransportBuiltinKind</dref> 
  2763.  
  2764.    TRANSPORTBUILTIN_UDPv4 : constant TransportBuiltinKind := 2 ** 0; 
  2765.    --  <dref>TransportBuiltinKind_TRANSPORTBUILTIN_UDPv4</dref> 
  2766.  
  2767.    TRANSPORTBUILTIN_SHMEM : constant TransportBuiltinKind := 2 ** 1; 
  2768.    --  <dref>TransportBuiltinKind_TRANSPORTBUILTIN_SHMEM</dref> 
  2769.  
  2770.    TRANSPORTBUILTIN_INTRA : constant TransportBuiltinKind := 2 ** 2; 
  2771.    --  <dref internal="true">TransportBuiltinKind_TRANSPORTBUILTIN_INTRA</dref> 
  2772.  
  2773.    TRANSPORTBUILTIN_UDPv6 : constant TransportBuiltinKind := 2 ** 3; 
  2774.    --  <dref>TransportBuiltinKind_TRANSPORTBUILTIN_UDPv6</dref> 
  2775.  
  2776.    TRANSPORTBUILTIN_INTRA_ALIAS : constant DDS.String := To_DDS_String ("builtin.intra"); 
  2777.    --  <dref internal="true">TransportBuiltinKind_INTRA_ALIAS</dref> 
  2778.  
  2779.    TRANSPORTBUILTIN_SHMEM_ALIAS : constant DDS.String := To_DDS_String ("builtin.shmem"); 
  2780.    --  <dref>TransportBuiltinKind_SHMEM_ALIAS</dref> 
  2781.  
  2782.  
  2783.    TRANSPORTBUILTIN_UDPv4_ALIAS : constant DDS.String := To_DDS_String ("builtin.udpv4"); 
  2784.    --  <dref>TransportBuiltinKind_UDPv4_ALIAS</dref> 
  2785.  
  2786.  
  2787.    TRANSPORTBUILTIN_UDPv6_ALIAS : constant DDS.String := To_DDS_String ("builtin.udpv"); 
  2788.    --  <dref>TransportBuiltinKind_UDPv6_ALIAS</dref> 
  2789.  
  2790.  
  2791.    subtype TransportBuiltinKindMask is TransportBuiltinKind; 
  2792.    --  <dref>TransportBuiltinKindMask</dref> 
  2793.  
  2794.    TRANSPORTBUILTIN_MASK_NONE : constant TransportBuiltinKindMask := 0; 
  2795.    --  <dref>TransportBuiltinKindMask_NONE</dref> 
  2796.  
  2797.    TRANSPORTBUILTIN_MASK_DEFAULT : constant TransportBuiltinKindMask := 
  2798.                                      (TRANSPORTBUILTIN_UDPv4 or TRANSPORTBUILTIN_SHMEM); 
  2799.    --  <dref>TransportBuiltinKindMask_DEFAULT</dref> 
  2800.  
  2801.    TRANSPORTBUILTIN_MASK_ALL  : constant TransportBuiltinKindMask := 16#FFFF_FFFF#; 
  2802.    --  <dref>TransportBuiltinKindMask_ALL</dref> 
  2803.  
  2804.    type TransportBuiltinQosPolicy is record 
  2805.       Mask : TransportBuiltinKindMask; 
  2806.    end record with 
  2807.      Convention => C; 
  2808.    --  <dref>TransportBuiltinQosPolicy</dref> 
  2809.    --  <dref name="Mask">TransportBuiltinQosPolicy_mask</dref> 
  2810.  
  2811.    TRANSPORT_BUILTIN_QOS_POLICY_DEFAULT : constant TransportBuiltinQosPolicy := 
  2812.                                             (Mask => TRANSPORTBUILTIN_MASK_DEFAULT); 
  2813.    --  <dref internal="true"></dref> 
  2814.  
  2815.    --  ------------------------------------------------------ 
  2816.    --                 WIRE_PROTOCOL (eXtension QoS) 
  2817.    --  ------------------------------------------------------ 
  2818.  
  2819.    type RtpsWellKnownPorts_T is record 
  2820.       Port_Base                     : aliased Long := 7400; 
  2821.       Domain_Id_Gain                : aliased Long := 10; 
  2822.       Participant_Id_Gain           : aliased Long := 1000; 
  2823.       Builtin_Multicast_Port_Offset : aliased Long := 2; 
  2824.       Builtin_Unicast_Port_Offset   : aliased Long := 0; 
  2825.       User_Multicast_Port_Offset    : aliased Long := 1; 
  2826.       User_Unicast_Port_Offset      : aliased Long := 3; 
  2827.    end record with 
  2828.      Convention => C; 
  2829.    --  <defgroup>WireProtocolQosGroupDocs</defgroup> 
  2830.    --  <dref>RtpsWellKnownPorts_t</dref> 
  2831.    --  <dref name="Port_Base">RtpsWellKnownPorts_t_port_base</dref> 
  2832.    --  <dref name="Domain_Id_Gain">RtpsWellKnownPorts_t_domain_id_gain</dref> 
  2833.    --  <dref name="Participant_Id_Gain">RtpsWellKnownPorts_t_participant_id_gain</dref> 
  2834.    --  <dref name="Builtin_Multicast_Port_Offset">RtpsWellKnownPorts_t_builtin_multicast_port_offset</dref> 
  2835.    --  <dref name="Builtin_Unicast_Port_Offset">RtpsWellKnownPorts_t_builtin_unicast_port_offset</dref> 
  2836.    --  <dref name="User_Multicast_Port_Offset">RtpsWellKnownPorts_t_user_multicast_port_offset</dref> 
  2837.    --  <dref name="User_Unicast_Port_Offset">RtpsWellKnownPorts_t_user_unicast_port_offset</dref> 
  2838.  
  2839.    RTI_BACKWARDS_COMPATIBLE_RTPS_WELL_KNOWN_PORTS : constant RtpsWellKnownPorts_T 
  2840.      := (Port_Base                     =>  7400, 
  2841.          Domain_Id_Gain                =>  10, 
  2842.          Participant_Id_Gain           =>  1000, 
  2843.          Builtin_Multicast_Port_Offset =>  2, 
  2844.          Builtin_Unicast_Port_Offset   =>  0, 
  2845.          User_Multicast_Port_Offset    =>  1, 
  2846.          User_Unicast_Port_Offset      =>  3); 
  2847.    --  <dref>RTI_BACKWARDS_COMPATIBLE_RTPS_WELL_KNOWN_PORTS</dref> 
  2848.  
  2849.    INTEROPERABLE_RTPS_WELL_KNOWN_PORTS : constant RtpsWellKnownPorts_T 
  2850.      := (Port_Base                     =>  7400, 
  2851.          Domain_Id_Gain                =>  250, 
  2852.          Participant_Id_Gain           =>  2, 
  2853.          Builtin_Multicast_Port_Offset =>  0, 
  2854.          Builtin_Unicast_Port_Offset   =>  10, 
  2855.          User_Multicast_Port_Offset    =>  1, 
  2856.          User_Unicast_Port_Offset      =>  11); 
  2857.    --  <dref>INTEROPERABLE_RTPS_WELL_KNOWN_PORTS</dref> 
  2858.  
  2859.  
  2860.    RTPS_WELL_KNOWN_PORTS_DEFAULT : constant RtpsWellKnownPorts_T := 
  2861.                                      (Port_Base                     => 7400, 
  2862.                                       Domain_Id_Gain                => 10, 
  2863.                                       Participant_Id_Gain           => 1000, 
  2864.                                       Builtin_Multicast_Port_Offset => 2, 
  2865.                                       Builtin_Unicast_Port_Offset   => 0, 
  2866.                                       User_Multicast_Port_Offset    => 1, 
  2867.                                       User_Unicast_Port_Offset      => 3); 
  2868.    --  <dref internal="true"></dref> 
  2869.  
  2870.    type RtpsReservedPortKind is new Unsigned_Long; 
  2871.    --  <dref>RtpsReservedPortKind</dref> 
  2872.  
  2873.    RTPS_RESERVED_PORT_BUILTIN_UNICAST   : constant RtpsReservedPortKind := 2#0001#; 
  2874.    --  <dref>RtpsReservedPortKind_BUILTIN_UNICAST</dref> 
  2875.  
  2876.    RTPS_RESERVED_PORT_BUILTIN_MULTICAST : constant RtpsReservedPortKind := 2#0010#; 
  2877.    --  <dref>RtpsReservedPortKind_BUILTIN_MULTICAST</dref> 
  2878.  
  2879.    RTPS_RESERVED_PORT_USER_UNICAST      : constant RtpsReservedPortKind := 2#0100#; 
  2880.    --  <dref>RtpsReservedPortKind_USER_UNICAST</dref> 
  2881.  
  2882.    RTPS_RESERVED_PORT_USER_MULTICAST    : constant RtpsReservedPortKind := 2#1000#; 
  2883.    --  <dref>RtpsReservedPortKind_USER_MULTICAST</dref> 
  2884.  
  2885.    subtype RtpsReservedPortKindMask is RtpsReservedPortKind; 
  2886.    --  <dref>RtpsReservedPortKindMask</dref> 
  2887.  
  2888.    RTPS_RESERVED_PORT_MASK_DEFAULT : constant RtpsReservedPortKindMask := 
  2889.                                        (RTPS_RESERVED_PORT_BUILTIN_UNICAST or RTPS_RESERVED_PORT_BUILTIN_MULTICAST or 
  2890.                                                                             RTPS_RESERVED_PORT_USER_UNICAST); 
  2891.    --  <dref>RTPS_RESERVED_PORT_MASK_DEFAULT</dref> 
  2892.  
  2893.    RTPS_RESERVED_PORT_MASK_NONE  : constant RtpsReservedPortKindMask := 0; 
  2894.    --  <dref>RTPS_RESERVED_PORT_MASK_NONE</dref> 
  2895.  
  2896.    RTPS_RESERVED_PORT_MASK_ALL   : constant RtpsReservedPortKindMask := 16#FFFF_FFFF#; 
  2897.    --  <dref>RTPS_RESERVED_PORT_MASK_ALL</dref> 
  2898.  
  2899.    WIREPROTOCOL_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("WireProtocol"); 
  2900.    --  <dref>WIREPROTOCOL_QOS_POLICY_NAME</dref> 
  2901.  
  2902.  
  2903.    type WireProtocolQosPolicyAutoKind is new Unsigned_Long; 
  2904.    --  <dref>WireProtocolQosPolicyAutoKind</dref> 
  2905.  
  2906.    RTPS_AUTO_ID_FROM_IP : constant WireProtocolQosPolicyAutoKind := 0; 
  2907.    --  <dref>WireProtocolQosPolicyAutoKind_RTPS_AUTO_ID_FROM_IP</dref> 
  2908.  
  2909.    RTPS_AUTO_ID_FROM_MAC : constant WireProtocolQosPolicyAutoKind := 1; 
  2910.    --  <dref>WireProtocolQosPolicyAutoKind_RTPS_AUTO_ID_FROM_MAC</dref> 
  2911.  
  2912.    RTPS_AUTO_ID    : constant Unsigned_Long := 0; 
  2913.  
  2914.    type WireProtocolQosPolicy is record 
  2915.       Participant_Id          : aliased Long := -1; 
  2916.       Rtps_Host_Id            : aliased Unsigned_Long := RTPS_AUTO_ID; 
  2917.       Rtps_App_Id             : aliased Unsigned_Long := RTPS_AUTO_ID; 
  2918.       Rtps_Instance_Id        : aliased Unsigned_Long := RTPS_AUTO_ID; 
  2919.       Rtps_Well_Known_Ports   : aliased RtpsWellKnownPorts_T := RTPS_WELL_KNOWN_PORTS_DEFAULT; 
  2920.       Rtps_Reserved_Port_Mask : aliased Long := 0; 
  2921.       Rtps_Auto_Id_Kind       : aliased WireProtocolQosPolicyAutoKind := RTPS_AUTO_ID_FROM_IP; 
  2922.       Compute_Crc             : aliased Boolean := False; 
  2923.       Check_Crc               : aliased Boolean := False; 
  2924.    end record with 
  2925.      Convention => C; 
  2926.    --  <dref>WireProtocolQosPolicy</dref> 
  2927.    --  <dref name="Participant_Id">WireProtocolQosPolicy_participant_id</dref> 
  2928.    --  <dref name="Rtps_Host_Id">WireProtocolQosPolicy_rtps_host_id</dref> 
  2929.    --  <dref name="Rtps_App_Id">WireProtocolQosPolicy_rtps_app_id</dref> 
  2930.    --  <dref name="Rtps_Instance_Id">WireProtocolQosPolicy_rtps_instance_id</dref> 
  2931.    --  <dref name="Rtps_Well_Known_Ports">WireProtocolQosPolicy_rtps_well_known_ports</dref> 
  2932.    --  <dref name="rtps_reserved_port_mask">WireProtocolQosPolicy_rtps_reserved_port_mask</dref> 
  2933.    --  <dref name="rtps_auto_id_kind">WireProtocolQosPolicy_rtps_auto_id_kind</dref> 
  2934.  
  2935.    --  <dref>WireProtocolQosPolicy_RTPS_AUTO_ID</dref> 
  2936.  
  2937.    WIRE_PROTOCOL_QOS_POLICY_DEFAULT : constant WireProtocolQosPolicy := 
  2938.                                         (Participant_Id          => -1, -- Automatic 
  2939.                                          Rtps_Host_Id            => RTPS_AUTO_ID, 
  2940.                                          Rtps_App_Id             => RTPS_AUTO_ID, 
  2941.                                          Rtps_Instance_Id        => RTPS_AUTO_ID, 
  2942.                                          Rtps_Well_Known_Ports   => RTPS_WELL_KNOWN_PORTS_DEFAULT, 
  2943.                                          Rtps_Reserved_Port_Mask => 2#0000_0000_0000_0000#, 
  2944.                                          Rtps_Auto_Id_Kind       => RTPS_AUTO_ID_FROM_IP, 
  2945.                                          Compute_Crc             => False, 
  2946.                                          Check_Crc               => False); 
  2947.    --  <dref internal="true"></dref> 
  2948.  
  2949.    --  ------------------------------------------------------ 
  2950.    --                 Locator_t 
  2951.    --  ------------------------------------------------------ 
  2952.  
  2953.    LOCATOR_ADDRESS_LENGTH_MAX  : constant Unsigned_Long := 16; 
  2954.    --  <dref>Locator_t_ADDRESS_LENGTH_MAX</dref> 
  2955.  
  2956.    type Locator_Address_Array_T is array (0 .. LOCATOR_ADDRESS_LENGTH_MAX - 1) of Octet; 
  2957.  
  2958.    type Locator_T is record 
  2959.       Kind           : aliased Long := 0; 
  2960.       Port           : aliased Unsigned_Long := 0; 
  2961.       Address        : aliased Locator_Address_Array_T := (others => 0); 
  2962.       Encapsulations : aliased EncapsulationId_Seq.Sequence; 
  2963.    end record with 
  2964.      Convention => C; 
  2965.    --  <dref>Locator_t</dref> 
  2966.    --  <dref name="Kind">Locator_t_kind</dref> 
  2967.    --  <dref name="Port">Locator_t_port</dref> 
  2968.    --  <dref name="Address">Locator_t_address</dref> 
  2969.    --  <dref internal="true" name="Encapsulations">Locator_t_encapsulations</dref> 
  2970.  
  2971.    type Locator_T_Access is access all Locator_T; 
  2972.    type Locator_T_Array is array (Natural range <>) of aliased Locator_T; 
  2973.    procedure Initialize (Self  : in out Locator_T); 
  2974.    procedure Finalize (Self  : in out Locator_T); 
  2975.    procedure Copy (Dst : in out Locator_T; Src : in Locator_T); 
  2976.  
  2977.    package Locator_Seq is new DDS_Support.Sequences_Generic 
  2978.      (Locator_T, 
  2979.       Locator_T_Access, 
  2980.       DDS.Natural, 
  2981.       1, 
  2982.       Locator_T_Array); 
  2983.    --  <dref>LocatorSeq</dref> 
  2984.  
  2985.    LOCATOR_INVALID : constant Locator_T := 
  2986.                        (Kind           => -1, 
  2987.                         Port           => 0, 
  2988.                         Address        => (others => 00), 
  2989.                         Encapsulations => EncapsulationId_Seq.DEFAULT_SEQUENCE); 
  2990.    --  <dref>Locator_t_INVALID</dref> 
  2991.  
  2992.    LOCATOR_KIND_INVALID : constant Long := -1; 
  2993.    --  <dref>Locator_t_KIND_INVALID</dref> 
  2994.  
  2995.    LOCATOR_PORT_INVALID : constant Unsigned_Long := 0; 
  2996.    --  <dref>Locator_t_PORT_INVALID</dref> 
  2997.  
  2998.    LOCATOR_ADDRESS_INVALID : constant Locator_Address_Array_T := (others => 0); 
  2999.    --  <dref>Locator_t_ADDRESS_INVALID</dref> 
  3000.  
  3001.    LOCATOR_KIND_ANY : constant Long := 0; 
  3002.    --  <dref internal="true">Locator_t_KIND_ANY</dref> 
  3003.  
  3004.    LOCATOR_KIND_UDPv4 : constant Long := 1; 
  3005.    --  <dref>Locator_t_KIND_UDPv4</dref> 
  3006.  
  3007.  
  3008.    LOCATOR_KIND_SHMEM  : constant Long := 2; 
  3009.    --  <dref>Locator_t_KIND_SHMEM</dref> 
  3010.  
  3011.    LOCATOR_KIND_INTRA  : constant Long := 3; 
  3012.    --  <dref internal="true">Locator_t_KIND_INTRA</dref> 
  3013.  
  3014.    LOCATOR_KIND_UDPv6 : constant Long := 5; 
  3015.    --  <dref>Locator_t_KIND_UDPv6</dref> 
  3016.  
  3017.    LOCATOR_KIND_DTLS : constant Long := 6; 
  3018.    --  <dref internal="true">Locator_t_KIND_DTLS</dref> 
  3019.  
  3020.    LOCATOR_KIND_WAN : constant Long := 7; 
  3021.    --  <dref internal="true">Locator_t_KIND_WAN</dref> 
  3022.  
  3023.    LOCATOR_KIND_TCPV4_LAN : constant Long := 8; 
  3024.    --  <dref internal="true">Locator_t_KIND_TCPV4_LAN</dref> 
  3025.  
  3026.    LOCATOR_KIND_TCPV4_WAN : constant Long := 9; 
  3027.    --  <dref internal="true">Locator_t_KIND_TCPV4_WAN</dref> 
  3028.  
  3029.    LOCATOR_KIND_TLSV4_LAN : constant Long := 10; 
  3030.    --  <dref internal="true">Locator_t_KIND_TLSV4_LAN</dref> 
  3031.  
  3032.    LOCATOR_KIND_TLSV4_WAN : constant Long := 11; 
  3033.    --  <dref internal="true">Locator_t_KIND_TLSV4_WAN</dref> 
  3034.  
  3035.    LOCATOR_KIND_RESERVED : constant Long := 1000; 
  3036.    --  <dref internal>Locator_t_KIND_RESERVED</dref> 
  3037.  
  3038.    --  ------------------------------------------------------ 
  3039.    --                 ProtocolVersion_t 
  3040.    --  ------------------------------------------------------ 
  3041.  
  3042.    type ProtocolVersion_T  is record 
  3043.       Major : aliased Octet := 0; 
  3044.       Minor : aliased Octet := 0; 
  3045.    end record with 
  3046.      Convention => C; 
  3047.    --  <dref>ProtocolVersion_t</dref> 
  3048.    --  <dref name="Major">ProtocolVersion_t_major</dref> 
  3049.    --  <dref name="Minor">ProtocolVersion_t_minor</dref> 
  3050.  
  3051.    PROTOCOL_VERSION_DEFAULT : constant ProtocolVersion_T := 
  3052.                                 (Major => 0, 
  3053.                                  Minor => 0); 
  3054.    --  <dref internal="true"></dref> 
  3055.  
  3056.    PROTOCOLVERSION_1_0      : constant ProtocolVersion_T := 
  3057.                                 (Major => 1, 
  3058.                                  Minor => 0); 
  3059.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_1_0</dref> 
  3060.  
  3061.    PROTOCOLVERSION_1_1      : constant ProtocolVersion_T := 
  3062.                                 (Major => 1, 
  3063.                                  Minor => 1); 
  3064.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_1_1</dref> 
  3065.  
  3066.    PROTOCOLVERSION_1_2      : constant ProtocolVersion_T := 
  3067.                                 (Major => 1, 
  3068.                                  Minor => 2); 
  3069.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_1_2</dref> 
  3070.  
  3071.    PROTOCOLVERSION_2_0      : constant ProtocolVersion_T := 
  3072.                                 (Major => 2, 
  3073.                                  Minor => 0); 
  3074.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_2_0</dref> 
  3075.  
  3076.    PROTOCOLVERSION_2_1      : constant ProtocolVersion_T := 
  3077.                                 (Major => 2, 
  3078.                                  Minor => 1); 
  3079.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION_2_1</dref> 
  3080.  
  3081.    PROTOCOLVERSION          : constant ProtocolVersion_T := 
  3082.                                 (Major => 2, 
  3083.                                  Minor => 1); 
  3084.    --  <dref>ProtocolVersion_t_PROTOCOLVERSION</dref> 
  3085.  
  3086.    --  ------------------------------------------------------ 
  3087.    --                 Version_t 
  3088.    --  ------------------------------------------------------ 
  3089.  
  3090.    VENDOR_ID_LENGTH_MAX     : constant := 2; 
  3091.    --  <dref>VendorId_t_LENGTH_MAX</dref> 
  3092.  
  3093.    type VendorId_Array_T is array (0 .. VENDOR_ID_LENGTH_MAX - 1) of Octet; 
  3094.  
  3095.    type VendorId_T is record 
  3096.       VendorId : aliased VendorId_Array_T := (others => 0); 
  3097.    end record with 
  3098.      Convention => C; 
  3099.    --  <dref>VendorId_t</dref> 
  3100.    --  <dref name="VendorId">VendorId_t_vendorId</dref> 
  3101.  
  3102.    VENDOR_ID_DEFAULT : constant  VendorId_T := (VendorId => (0, 0)); 
  3103.    --  <dref internal="true"></dref> 
  3104.  
  3105.    VENDORID_UNKNOWN  : constant  VendorId_T := (VendorId => (0, 0)); 
  3106.    --  <dref internal="true"></dref> 
  3107.  
  3108.    --  ------------------------------------------------------ 
  3109.    --                 ProductVersion_t 
  3110.    --  ------------------------------------------------------ 
  3111.  
  3112.    type ProductVersion_T is record 
  3113.       Major    : aliased Char := Char (ASCII.NUL); 
  3114.       Minor    : aliased Char := Char (ASCII.NUL); 
  3115.       Release  : aliased Char := '0'; 
  3116.       Revision : aliased Char := Char (ASCII.NUL); 
  3117.    end record with 
  3118.      Convention => C; 
  3119.    --  <dref>ProductVersion_t</dref> 
  3120.    --  <dref name="Major">ProductVersion_t_major</dref> 
  3121.    --  <dref name="Minor">ProductVersion_t_minor</dref> 
  3122.    --  <dref name="Release">ProductVersion_t_release</dref> 
  3123.    --  <dref name="Revision">ProductVersion_t_revision</dref> 
  3124.  
  3125.    PRODUCTVERSION_UNKNOWN : constant ProductVersion_T := 
  3126.                               (Major    => Char (ASCII.NUL), 
  3127.                                Minor    => Char (ASCII.NUL), 
  3128.                                Release  => '0', 
  3129.                                Revision => Char (ASCII.NUL)); 
  3130.    --  <dref>ProductVersion_t_UNKNOWN</dref> 
  3131.  
  3132.    --  ---------------------------------------------------------- 
  3133.    --                 DataReaderResourceLimitsInstanceReplacementSettings 
  3134.    --  ---------------------------------------------------------- 
  3135.  
  3136.    type DataReaderResourceLimitsInstanceReplacementSettings is record 
  3137.       Alive_Instance_Removal      : aliased Unsigned_Long; 
  3138.       Disposed_Instance_Removal   : aliased Unsigned_Long; 
  3139.       No_Writers_Instance_Removal : aliased Unsigned_Long; 
  3140.    end record with 
  3141.      Convention => C; 
  3142.    --  <dref>DataReaderResourceLimitsInstanceReplacementSettings</dref> 
  3143.    --  <dref name="Alive_Instance_Removal">DataReaderResourceLimitsInstanceReplacementSettings_alive_instance_removal</dref> 
  3144.    --  <dref name="Disposed_Instance_Removal">DataReaderResourceLimitsInstanceReplacementSettings_disposed_instance_removal</dref> 
  3145.    --  <dref name="No_Writers_Instance_Removal">DataReaderResourceLimitsInstanceReplacementSettings_no_writers_instance_removal</dref> 
  3146.  
  3147.    DATAREADER_RESOURCELIMITS_INSTANCEREPLACEMENT_SETTINGS_DEFAULT 
  3148.       : constant DataReaderResourceLimitsInstanceReplacementSettings := (0, 0, 1); 
  3149.  
  3150.    --  ---------------------------------------------------------- 
  3151.    --                 DATA_READER_RESOURCE_LIMITS (eXtension QoS) 
  3152.    --  ---------------------------------------------------------- 
  3153.  
  3154.    DATAREADERRESOURCELIMITS_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DataReaderResourceLimits"); 
  3155.    --  <defgroup>DataReaderResourceLimitsQosGroupDocs</defgroup> 
  3156.    --  <dref>DATAREADERRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3157.  
  3158.    type DataReaderResourceLimitsQosPolicy is record 
  3159.       Max_Remote_Writers                          : aliased Long := -1; 
  3160.       Max_Remote_Writers_Per_Instance             : aliased Long := -1; 
  3161.       Max_Samples_Per_Remote_Writer               : aliased Long := -1; 
  3162.       Max_Infos                                   : aliased Long := -1; 
  3163.       Initial_Remote_Writers                      : aliased Long := 2; 
  3164.       Initial_Remote_Writers_Per_Instance         : aliased Long := 2; 
  3165.       Initial_Infos                               : aliased Long := 32; 
  3166.       Initial_Outstanding_Reads                   : aliased Long := 2; 
  3167.       Max_Outstanding_Reads                       : aliased Long := -1; 
  3168.       Max_Samples_Per_Read                        : aliased Long := 1024; 
  3169.       Disable_Fragmentation_Support               : aliased DDS.Boolean := False; 
  3170.       Max_Fragmented_Samples                      : aliased Long := 1024; 
  3171.       Initial_Fragmented_Samples                  : aliased Long := 4; 
  3172.       Max_Fragmented_Samples_Per_Remote_Writer    : aliased Long := 256; 
  3173.       Max_Fragments_Per_Sample                    : aliased Long := 512; 
  3174.       Dynamically_Allocate_Fragmented_Samples     : aliased DDS.Boolean := False; 
  3175.       Max_Total_Instances                         : aliased Long := 32; 
  3176.       Max_Remote_Virtual_Writers                  : aliased Long := -1; 
  3177.       Initial_Remote_Virtual_Writers              : aliased Long := 2; 
  3178.       Max_Remote_Virtual_Writers_Per_Instance     : aliased Long := -1; 
  3179.       Initial_Remote_Virtual_Writers_Per_Instance : aliased Long := 2; 
  3180.       Max_Remote_Writers_Per_Sample               : aliased Long := 3; 
  3181.       Max_Query_Condition_Filters                 : aliased Long := 4; 
  3182.       Max_App_Ack_Response_Length                 : aliased Long := 1; 
  3183.       Keep_Minimum_State_For_Instances            : aliased DDS.Boolean := True; 
  3184.       Initial_Topic_Queries                       : aliased Long := 1; 
  3185.       Max_Topic_Queries                           : aliased Long := -1; 
  3186.       Shmem_Ref_Transfer_Mode_Attached_Segment_Allocation : aliased AllocationSettings_T := AllocationSettings_T_AUTO; 
  3187.       Instance_Replacement                        : aliased DataReaderResourceLimitsInstanceReplacementSettings := DATAREADER_RESOURCELIMITS_INSTANCEREPLACEMENT_SETTINGS_DEFAULT; 
  3188.    end record with 
  3189.      Convention => C; 
  3190.    --  <dref>DataReaderResourceLimitsQosPolicy</dref> 
  3191.    --  <dref name="Max_Remote_Writers">DataReaderResourceLimitsQosPolicy_max_remote_writers</dref> 
  3192.    --  <dref name="Max_Remote_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_max_remote_writers_per_instance</dref> 
  3193.    --  <dref name="Max_Samples_Per_Remote_Writer">DataReaderResourceLimitsQosPolicy_max_samples_per_remote_writer</dref> 
  3194.    --  <dref name="Max_Infos">DataReaderResourceLimitsQosPolicy_max_infos</dref> 
  3195.    --  <dref name="Initial_Remote_Writers">DataReaderResourceLimitsQosPolicy_initial_remote_writers</dref> 
  3196.    --  <dref name="Initial_Remote_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_initial_remote_writers_per_instance</dref> 
  3197.    --  <dref name="Initial_Infos">DataReaderResourceLimitsQosPolicy_initial_infos</dref> 
  3198.    --  <dref name="Initial_Outstanding_Reads">DataReaderResourceLimitsQosPolicy_initial_outstanding_reads</dref> 
  3199.    --  <dref name="Max_Outstanding_Reads">DataReaderResourceLimitsQosPolicy_max_outstanding_reads</dref> 
  3200.    --  <dref name="Max_Samples_Per_Read">DataReaderResourceLimitsQosPolicy_max_samples_per_read</dref> 
  3201.    --  <dref name="Disable_Fragmentation_Support">DataReaderResourceLimitsQosPolicy_disable_fragmentation_support</dref> 
  3202.    --  <dref name="Max_Fragmented_Samples">DataReaderResourceLimitsQosPolicy_max_fragmented_samples</dref> 
  3203.    --  <dref name="Initial_Fragmented_Samples">DataReaderResourceLimitsQosPolicy_initial_fragmented_samples</dref> 
  3204.    --  <dref name="Max_Fragmented_Samples_Per_Remote_Writer">DataReaderResourceLimitsQosPolicy_max_fragmented_samples_per_remote_writer</dref> 
  3205.    --  <dref name="Max_Fragments_Per_Samples">DataReaderResourceLimitsQosPolicy_max_fragments_per_sample</dref> 
  3206.    --  <dref name="Dynamically_Allocate_Fragmented_Samples">DataReaderResourceLimitsQosPolicy_dynamically_allocate_fragmented_samples</dref> 
  3207.    --  <dref name="Max_Total_Instances">DataReaderResourceLimitsQosPolicy_max_total_instances</dref> 
  3208.    --  <dref name="Max_Remote_Virtual_Writers">DataReaderResourceLimitsQosPolicy_max_remote_virtual_writers</dref> 
  3209.    --  <dref name="Initial_Remote_Virtual_Writers">DataReaderResourceLimitsQosPolicy_initial_remote_virtual_writers</dref> 
  3210.    --  <dref name="Max_Remote_Virtual_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_max_remote_virtual_writers_per_instance</dref> 
  3211.    --  <dref name="Initial_Remote_Virtual_Writers_Per_Instance">DataReaderResourceLimitsQosPolicy_initial_remote_virtual_writers_per_instance</dref> 
  3212.    --  <dref name="Max_Remote_Writers_Per_Sample">DataReaderResourceLimitsQosPolicy_max_remote_writers_per_sample</dref> 
  3213.    --  <dref name="Max_Query_Condition_Filters">DataReaderResourceLimitsQosPolicy_max_query_condition_filters</dref> 
  3214.    --  <dref name="Max_App_Ack_Response_Length">DataReaderResourceLimitsQosPolicy_max_app_ack_response_length</dref> 
  3215.    --  <dref name="Keep_Minimum_State_For_Instances">DataReaderResourceLimitsQosPolicy_keep_minimum_state_for_instances</dref> 
  3216.    --  <dref internal="true" name="Initial_Topic_Queries">DataReaderResourceLimitsQosPolicy_initial_topic_queries</dref> 
  3217.    --  <dref internal="true" name="Max_Topic_Queries">DataReaderResourceLimitsQosPolicy_max_topic_queries</dref> 
  3218.    --  <dref internal="true" name="Shmem_Ref_Transfer_Mode_Attached_Segment_Allocation">DataReaderResourceLimitsQosPolicy_shmem_ref_transfer_mode_attached_segment_allocation</dref> 
  3219.    --  <dref internal="true" name="Instance_Replacement">DataReaderResourceLimitsQosPolicy_instance_replacement</dref> 
  3220.  
  3221.    AUTO_MAX_TOTAL_INSTANCES : constant Long := 0; 
  3222.    --  <dref>AUTO_MAX_TOTAL_INSTANCES</dref> 
  3223.  
  3224.    DATA_READER_RESOURCE_LIMITS_QOS_POLICY_DEFAULT :   constant DataReaderResourceLimitsQosPolicy := 
  3225.                                                       (Max_Remote_Writers                          => -1, 
  3226.                                                        Max_Remote_Writers_Per_Instance             => -1, 
  3227.                                                        Max_Samples_Per_Remote_Writer               => -1, 
  3228.                                                        Max_Infos                                   => -1, 
  3229.                                                        Initial_Remote_Writers                      =>  2, 
  3230.                                                        Initial_Remote_Writers_Per_Instance         => 2, 
  3231.                                                        Initial_Infos                               => 32, 
  3232.                                                        Initial_Outstanding_Reads                   => 2, 
  3233.                                                        Max_Outstanding_Reads                       =>  -1, 
  3234.                                                        Max_Samples_Per_Read                        =>  1024, 
  3235.                                                        Disable_Fragmentation_Support               =>  False, 
  3236.                                                        Max_Fragmented_Samples                      =>  1024, 
  3237.                                                        Initial_Fragmented_Samples                  =>  4, 
  3238.                                                        Max_Fragmented_Samples_Per_Remote_Writer    =>  256, 
  3239.                                                        Max_Fragments_Per_Sample                    =>  512, 
  3240.                                                        Dynamically_Allocate_Fragmented_Samples     => False, 
  3241.                                                        Max_Total_Instances                         => 32, 
  3242.                                                        Max_Remote_Virtual_Writers                  => -1, 
  3243.                                                        Initial_Remote_Virtual_Writers              => 2, 
  3244.                                                        Max_Remote_Virtual_Writers_Per_Instance     => -1, 
  3245.                                                        Initial_Remote_Virtual_Writers_Per_Instance => 2, 
  3246.                                                        Max_Remote_Writers_Per_Sample               => 3, 
  3247.                                                        Max_Query_Condition_Filters                 => 4, 
  3248.                                                        Max_App_Ack_Response_Length                 => 1, 
  3249.                                                        Keep_Minimum_State_For_Instances            => True, 
  3250.                                                        Initial_Topic_Queries                       => 1, 
  3251.                                                        Max_Topic_Queries                           => -1, 
  3252.                                                        Shmem_Ref_Transfer_Mode_Attached_Segment_Allocation => AllocationSettings_T_AUTO, 
  3253.                                                        Instance_Replacement                        => DATAREADER_RESOURCELIMITS_INSTANCEREPLACEMENT_SETTINGS_DEFAULT); 
  3254.    --  <dref internal="true"></dref> 
  3255.  
  3256.    --  ---------------------------------------------------------- 
  3257.    --                 DATA_WRITER_RESOURCE_LIMITS (eXtension QoS) 
  3258.    --  ---------------------------------------------------------- 
  3259.  
  3260.    DATAWRITERRESOURCELIMITS_QOS_POLICY_NAME       : constant DDS.String := To_DDS_String ("DataWriterResourceLimits"); 
  3261.    --  <defgroup>DataWriterResourceLimitsQosGroupDocs</defgroup> 
  3262.    --  <dref>DATAWRITERRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3263.  
  3264.    type DataWriterResourceLimitsInstanceReplacementKind is new Unsigned_Long; 
  3265.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind</dref> 
  3266.  
  3267.    UNREGISTERED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 0; 
  3268.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_UNREGISTERED_INSTANCE_REPLACEMENT</dref> 
  3269.  
  3270.    ALIVE_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 1; 
  3271.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_ALIVE_INSTANCE_REPLACEMENT</dref> 
  3272.  
  3273.    DISPOSED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 2; 
  3274.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_DISPOSED_INSTANCE_REPLACEMENT</dref> 
  3275.  
  3276.    ALIVE_THEN_DISPOSED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 3; 
  3277.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_ALIVE_THEN_DISPOSED_INSTANCE_REPLACEMENT</dref> 
  3278.  
  3279.    DISPOSED_THEN_ALIVE_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 4; 
  3280.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_DISPOSED_THEN_ALIVE_INSTANCE_REPLACEMENT</dref> 
  3281.  
  3282.    ALIVE_OR_DISPOSED_INSTANCE_REPLACEMENT : constant DataWriterResourceLimitsInstanceReplacementKind := 5; 
  3283.    --  <dref>DataWriterResourceLimitsInstanceReplacementKind_ALIVE_OR_DISPOSED_INSTANCE_REPLACEMENT</dref> 
  3284.  
  3285.    type DataWriterResourceLimitsQosPolicy is record 
  3286.       Initial_Concurrent_Blocking_Threads : aliased DDS.Long := 1; 
  3287.       Max_Concurrent_Blocking_Threads     : aliased DDS.Long := -1; 
  3288.       Max_Remote_Reader_Filters           : aliased DDS.Long := 32; 
  3289.       Initial_Batches                     : aliased DDS.Long := 8; 
  3290.       Max_Batches                         : aliased DDS.Long := -1; 
  3291.       Cookie_Max_Length                   : aliased DDS.Long := -1; 
  3292.       Instance_Replacement                : aliased DataWriterResourceLimitsInstanceReplacementKind := UNREGISTERED_INSTANCE_REPLACEMENT; 
  3293.       Replace_Empty_Instances             : aliased DDS.Boolean := False; 
  3294.       Autoregister_Instances              : aliased DDS.Boolean := False; 
  3295.       Initial_Virtual_Writers             : aliased DDS.Long :=  1; 
  3296.       Max_Virtual_Writers                 : aliased DDS.Long := -1; 
  3297.       Max_Remote_Readers                  : aliased DDS.Long := -1; 
  3298.       Max_App_Ack_Remote_Readers          : aliased DDS.Long := -1; 
  3299.       Initial_Active_Topic_Queries        : aliased DDS.Long :=  1; 
  3300.       Max_Topic_Queries                   : aliased DDS.Long := -1; 
  3301.       Writer_Loaned_Sample_Allocation     : aliased AllocationSettings_T := AllocationSettings_T_AUTO; 
  3302.       Initialize_Writer_Loaned_Sample     : aliased DDS.Boolean := False; 
  3303.    end record with Convention => C; 
  3304.    --  <dref>DataWriterResourceLimitsQosPolicy</dref> 
  3305.    --  <dref name="Initial_Concurrent_Blocking_Threads">DataWriterResourceLimitsQosPolicy_initial_concurrent_blocking_threads</dref> 
  3306.    --  <dref name="Max_Concurrent_Blocking_Threads">DataWriterResourceLimitsQosPolicy_max_concurrent_blocking_threads</dref> 
  3307.    --  <dref name="Max_Remote_Reader_Filters">DataWriterResourceLimitsQosPolicy_max_remote_reader_filters</dref> 
  3308.    --  <dref name="Initial_Batches">DataWriterResourceLimitsQosPolicy_initial_batches</dref> 
  3309.    --  <dref name="Max_Batches">DataWriterResourceLimitsQosPolicy_max_batches</dref> 
  3310.    --  <dref name="Cookie_Max_Length">DataWriterResourceLimitsQosPolicy_cookie_max_length</dref> 
  3311.    --  <dref name="Instance_Replacement">DataWriterResourceLimitsQosPolicy_instance_replacement</dref> 
  3312.    --  <dref name="Replace_Empty_Instances">DataWriterResourceLimitsQosPolicy_replace_empty_instances</dref> 
  3313.    --  <dref name="Autoregister_Instances">DataWriterResourceLimitsQosPolicy_autoregister_instances</dref> 
  3314.    --  <dref name="Initial_Virtual_Writers">DataWriterResourceLimitsQosPolicy_initial_virtual_writers</dref> 
  3315.    --  <dref name="Max_Virtual_Writers">DataWriterResourceLimitsQosPolicy_max_virtual_writers</dref> 
  3316.    --  <dref name="Max_Remote_Readers">DataWriterResourceLimitsQosPolicy_max_remote_readers</dref> 
  3317.    --  <dref name="Max_App_Ack_Remote_Readers">DataWriterResourceLimitsQosPolicy_max_app_ack_remote_readers</dref> 
  3318.    --  <dref internal="true" name="Initial_Active_Topic_Queries">DataWriterResourceLimitsQosPolicy_initial_active_topic_queries</dref> 
  3319.    --  <dref internal="true" name="Max_Topic_Queries">DataWriterResourceLimitsQosPolicy_max_topic_queries</dref> 
  3320.    --  <dref internal="true" name="Writer_Loaned_Sample_Allocation">DataWriterResourceLimitsQosPolicy_writer_loaned_sample_allocation</dref> 
  3321.    --  <dref internal="true" name="Initialize_Writer_Loaned_Sample">DataWriterResourceLimitsQosPolicy_initialize_writer_loaned_sample</dref> 
  3322.  
  3323.    DATA_WRITER_RESOURCE_LIMITS_QOS_POLICY_DEFAULT : constant DataWriterResourceLimitsQosPolicy := 
  3324.                                                       (Initial_Concurrent_Blocking_Threads => 1, 
  3325.                                                        Max_Concurrent_Blocking_Threads     => -1, 
  3326.                                                        Max_Remote_Reader_Filters           => 32, 
  3327.                                                        Initial_Batches                     => 8, 
  3328.                                                        Max_Batches                         => -1, 
  3329.                                                        Cookie_Max_Length                   => -1, 
  3330.                                                        Instance_Replacement                => UNREGISTERED_INSTANCE_REPLACEMENT, 
  3331.                                                        Replace_Empty_Instances             => False, 
  3332.                                                        Autoregister_Instances              => False, 
  3333.                                                        Initial_Virtual_Writers             =>  1, 
  3334.                                                        Max_Virtual_Writers                 => -1, 
  3335.                                                        Max_Remote_Readers                  => -1, 
  3336.                                                        Max_App_Ack_Remote_Readers          => -1, 
  3337.                                                        Initial_Active_Topic_Queries        =>  1, 
  3338.                                                        Max_Topic_Queries                   => -1, 
  3339.                                                        Writer_Loaned_Sample_Allocation     => AllocationSettings_T_AUTO, 
  3340.                                                        Initialize_Writer_Loaned_Sample     => False); 
  3341.    --  <dref internal="true"></dref> 
  3342.  
  3343.    --  ---------------------------------------------------------- 
  3344.    --                 SERVICE (eXtension QoS) 
  3345.    --  ---------------------------------------------------------- 
  3346.  
  3347.    SERVICE_QOS_POLICY_NAME                        : constant DDS.String := To_DDS_String ("Service"); 
  3348.    --  <defgroup>ServiceQosGroupDocs</defgroup> 
  3349.    --  <dref internal="true">SERVICE_QOS_POLICY_NAME</dref> 
  3350.  
  3351.    type ServiceQosPolicyKind is new Unsigned_Long; 
  3352.    --  <dref>ServiceQosPolicyKind</dref> 
  3353.  
  3354.    NO_SERVICE_QOS : constant ServiceQosPolicyKind := 0; 
  3355.    --  <dref>ServiceQosPolicyKind_NO_SERVICE_QOS</dref> 
  3356.  
  3357.    PERSISTENCE_SERVICE_QOS : constant ServiceQosPolicyKind := 1; 
  3358.    --  <dref>ServiceQosPolicyKind_PERSISTENCE_SERVICE_QOS</dref> 
  3359.  
  3360.    QUEUING_SERVICE_QOS : constant ServiceQosPolicyKind := 2; 
  3361.    --  <dref>ServiceQosPolicyKind_QUEUING_SERVICE_QOS</dref> 
  3362.  
  3363.    ROUTING_SERVICE_QOS : constant ServiceQosPolicyKind := 3; 
  3364.    --  <dref>ServiceQosPolicyKind_ROUTING_SERVICE_QOS</dref> 
  3365.  
  3366.    RECORDING_SERVICE_QOS : constant ServiceQosPolicyKind := 4; 
  3367.    --  <dref>ServiceQosPolicyKind_RECORDING_SERVICE_QOS</dref> 
  3368.  
  3369.    REPLAY_SERVICE_QOS : constant ServiceQosPolicyKind := 5; 
  3370.    --  <dref>ServiceQosPolicyKind_REPLAY_SERVICE_QOS</dref> 
  3371.  
  3372.    DATABASE_INTEGRATION_SERVICE_QOS : constant ServiceQosPolicyKind := 6; 
  3373.    --  <dref>ServiceQosPolicyKind_DATABASE_INTEGRATION_SERVICE_QOS</dref> 
  3374.  
  3375.    DDS_WEB_INTEGRATION_SERVICE_QOS : constant ServiceQosPolicyKind := 7; 
  3376.    --  <dref>ServiceQosPolicyKind_WEB_INTEGRATION_SERVICE_QOS</dref> 
  3377.  
  3378.    type ServiceQosPolicy is record 
  3379.       Kind : ServiceQosPolicyKind; 
  3380.    end record  with Convention => C; 
  3381.    --  <dref>ServiceQosPolicy</dref> 
  3382.    --  <dref name="Kind">ServiceQosPolicy_kind</dref> 
  3383.  
  3384.    SERVICE_QOS_POLICY_DEFAULT : constant ServiceQosPolicy := 
  3385.                                   (Kind => NO_SERVICE_QOS); 
  3386.    --  <dref internal="true"></dref> 
  3387.  
  3388.    --  ---------------------------------------------------------- 
  3389.    --                 PUBLISHER_PROTOCOL (eXtension QoS) 
  3390.    --  ---------------------------------------------------------- 
  3391.  
  3392.    PUBLISHERPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("PublisherProtocol"); 
  3393.    --  <defgroup internal="true">PublisherProtocolQosGroupDocs</defgroup> 
  3394.    --  <dref internal="true">PUBLISHERPROTOCOL_QOS_POLICY_NAME</dref> 
  3395.  
  3396.    type PublisherProtocolQosPolicy is record 
  3397.       Vendor_Specific_Entity : DDS.Boolean := False; 
  3398.    end record with Convention => C; 
  3399.    --  <dref internal="true">PublisherProtocolQosPolicy</dref> 
  3400.    --  <dref internal="true" name="vendor_specific_entity"a>PublisherProtocolQosPolicy_vendor_specific_entity</dref> 
  3401.  
  3402.    PUBLISHER_PROTOCOL_QOS_POLICY_DEFAULT : constant PublisherProtocolQosPolicy := 
  3403.                                              (Vendor_Specific_Entity => False); 
  3404.    --  <dref internal="true"></dref> 
  3405.  
  3406.    --  ---------------------------------------------------------- 
  3407.    --                 SUBSCRIBER_PROTOCOL (eXtension QoS) 
  3408.    --  ---------------------------------------------------------- 
  3409.  
  3410.    SUBSCRIBERPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("SubscriberProtocol"); 
  3411.    --  <defgroup internal="true">SubscriberProtocolQosGroupDocs</defgroup> 
  3412.    --  <dref internal="true">SUBSCRIBERPROTOCOL_QOS_POLICY_NAME</dref> 
  3413.  
  3414.    type SubscriberProtocolQosPolicy is record 
  3415.       Vendor_Specific_Entity : DDS.Boolean := False; 
  3416.    end record with Convention => C; 
  3417.    --  <dref internal="true">SubscriberProtocolQosPolicy</dref> 
  3418.    --  <dref internal="true" name="vendor_specific_entity"a>SubscriberProtocolQosPolicy_vendor_specific_entity</dref> 
  3419.  
  3420.  
  3421.    SUBSCRIBER_PROTOCOL_QOS_POLICY_DEFAULT : constant SubscriberProtocolQosPolicy := 
  3422.                                               (Vendor_Specific_Entity => False); 
  3423.    --  <dref internal="true"></dref> 
  3424.  
  3425.    --  ---------------------------------------------------------- 
  3426.    --                 DATAREADER_PROTOCOL (eXtension QoS) 
  3427.    --  ---------------------------------------------------------- 
  3428.  
  3429.    DATAREADERPROTOCOL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DataReaderProtocol"); 
  3430.    --  <defgroup>DataReaderProtocolQosGroupDocs</defgroup> 
  3431.    --  <dref>DATAREADERPROTOCOL_QOS_POLICY_NAME</dref> 
  3432.  
  3433.    type DataReaderProtocolQosPolicy is record 
  3434.       Virtual_Guid                                : aliased Guid_T; 
  3435.       Rtps_Object_Id                              : aliased Unsigned_Long := RTPS_AUTO_ID; 
  3436.       Expects_Inline_Qos                          : aliased DDS.Boolean := False; 
  3437.       Disable_Positive_Acks                       : aliased DDS.Boolean := False; 
  3438.       Propagate_Dispose_Of_Unregistered_Instances : aliased DDS.Boolean := False; 
  3439.       Propagate_Unregister_Of_Disposed_Instances  : aliased DDS.Boolean := False; 
  3440.       Rtps_Reliable_Reader                        : aliased RtpsReliableReaderProtocol_T := RTPS_RELIABLE_READER_PROTOCOL_DEFAULT; 
  3441.       Vendor_Specific_Entity                      : aliased DDS.Boolean := False; 
  3442.       Meta_Entity                                 : aliased DDS.Boolean := False; 
  3443.    end record with Convention => C; 
  3444.    --  <dref>DataReaderProtocolQosPolicy</dref> 
  3445.    --  <dref name="Virtual_Guid">DataReaderProtocolQosPolicy_virtual_guid</dref> 
  3446.    --  <dref name="Rtps_Object_Id">DataReaderProtocolQosPolicy_rtps_object_id</dref> 
  3447.    --  <dref name="Expects_Inline_Qos">DataReaderProtocolQosPolicy_expects_inline_qos</dref> 
  3448.    --  <dref name="disable_positive_acks">DataReaderProtocolQosPolicy_disable_positive_acks</dref> 
  3449.    --  <dref name="propagate_dispose_of_unregistered_instances">DataReaderProtocolQosPolicy_propagate_dispose_of_unregistered_instances</dref> 
  3450.    --  <dref name="propagate_unregister_of_disposed_instances">DataReaderProtocolQosPolicy_propagate_unregister_of_disposed_instances</dref> 
  3451.    --  <dref name="Rtps_Reliable_Reader">DataReaderProtocolQosPolicy_rtps_reliable_reader</dref> 
  3452.    --  <dref internal="true" name="vendor_specific_entity">DataReaderProtocolQosPolicy_vendor_specific_entity</dref> 
  3453.    --  <dref internal="true" name="Meta_Entity">DataReaderProtocolQosPolicy_Meta_Entity</dref> 
  3454.  
  3455.    DATA_READER_PROTOCOL_QOS_POLICY_DEFAULT : constant DataReaderProtocolQosPolicy := 
  3456.                                                (Virtual_Guid                                => (Value => (others => 0)), 
  3457.                                                 Rtps_Object_Id                              => RTPS_AUTO_ID, 
  3458.                                                 Expects_Inline_Qos                          => False, 
  3459.                                                 Disable_Positive_Acks                       => False, 
  3460.                                                 Propagate_Dispose_Of_Unregistered_Instances => False, 
  3461.                                                 Propagate_Unregister_Of_Disposed_Instances  => False, 
  3462.                                                 Rtps_Reliable_Reader                        => RTPS_RELIABLE_READER_PROTOCOL_DEFAULT, 
  3463.                                                 Vendor_Specific_Entity                      => False, 
  3464.                                                 Meta_Entity                                 => False); 
  3465.    --  <dref internal="true"></dref> 
  3466.  
  3467.    --  ---------------------------------------------------------- 
  3468.    --                 DATAWRITER_PROTOCOL (eXtension QoS) 
  3469.    --  ---------------------------------------------------------- 
  3470.  
  3471.    DATAWRITERPROTOCOL_QOS_POLICY_NAME      : constant DDS.String := To_DDS_String ("DataWriterProtocol"); 
  3472.    --  <defgroup>DataWriterProtocolQosGroupDocs</defgroup> 
  3473.    --  <dref>DATAWRITERPROTOCOL_QOS_POLICY_NAME</dref> 
  3474.  
  3475.    type DataWriterProtocolQosPolicy is record 
  3476.       Virtual_Guid                       : aliased Guid_T; 
  3477.       Rtps_Object_Id                     : aliased Unsigned_Long := RTPS_AUTO_ID; 
  3478.       Push_On_Write                      : aliased DDS.Boolean := False; 
  3479.       Disable_Positive_Acks              : aliased DDS.Boolean := False; 
  3480.       Disable_Inline_Keyhash             : aliased DDS.Boolean := False; 
  3481.       Serialize_Key_With_Dispose         : aliased DDS.Boolean := False; 
  3482.       Propagate_App_Ack_With_No_Response : aliased DDS.Boolean := True; 
  3483.       Rtps_Reliable_Writer               : aliased RtpsReliableWriterProtocol_T := RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT; 
  3484.       Initial_Virtual_Sequence_Number    : aliased DDS.SequenceNumber_T := (-2147483648, 16#FFFF_FFFF#); 
  3485.       Vendor_Specific_Entity             : aliased DDS.Boolean := False; 
  3486.    end record with Convention => C; 
  3487.    --  <dref>DataWriterProtocolQosPolicy</dref> 
  3488.    --  <dref name="Virtual_Guid">DataWriterProtocolQosPolicy_virtual_guid</dref> 
  3489.    --  <dref name="Rtps_Object_Id">DataWriterProtocolQosPolicy_rtps_object_id</dref> 
  3490.    --  <dref name="Push_On_Write">DataWriterProtocolQosPolicy_push_on_write</dref> 
  3491.    --  <dref name="Disable_Positive_Acks">DataWriterProtocolQosPolicy_disable_positive_acks</dref> 
  3492.    --  <dref name="Disable_Inline_Keyhash">DataWriterProtocolQosPolicy_disable_inline_keyhash</dref> 
  3493.    --  <dref name="Serialize_Key_With_Dispose">DataWriterProtocolQosPolicy_serialize_key_with_dispose</dref> 
  3494.    --  <dref name="Propagate_App_Ack_With_No_Response">DataWriterProtocolQosPolicy_propagate_app_ack_with_no_response</dref> 
  3495.    --  <dref name="Rtps_Reliable_Writer">DataWriterProtocolQosPolicy_rtps_reliable_writer</dref> 
  3496.    --  <dref name="Initial_Virtual_Sequence_Number">DataWriterProtocolQosPolicy_initial_virtual_sequence_number</dref> 
  3497.    --  <dref internal="true" name="Vendor_Specific_Entity">DataWriterProtocolQosPolicy_vendor_specific_entity</dref> 
  3498.  
  3499.    DATA_WRITER_PROTOCOL_QOS_POLICY_DEFAULT : constant DataWriterProtocolQosPolicy := 
  3500.                                                (Virtual_Guid                       => (Value => (others => 0)), 
  3501.                                                 Rtps_Object_Id                     => RTPS_AUTO_ID, 
  3502.                                                 Push_On_Write                      => True, 
  3503.                                                 Disable_Positive_Acks              => False, 
  3504.                                                 Disable_Inline_Keyhash             => False, 
  3505.                                                 Serialize_Key_With_Dispose         => False, 
  3506.                                                 Propagate_App_Ack_With_No_Response => True, 
  3507.                                                 Rtps_Reliable_Writer               => RTPS_RELIABLE_WRITER_PROTOCOL_DEFAULT, 
  3508.                                                 Initial_Virtual_Sequence_Number    => (-2147483648, 16#FFFF_FFFF#), 
  3509.                                                 Vendor_Specific_Entity             => False); 
  3510.    --  <dref internal="true"></dref> 
  3511.  
  3512.    --  ---------------------------------------------------------- 
  3513.    --                 SYSTEM_RESOURCE_LIMITS (eXtension QoS) 
  3514.    --  ---------------------------------------------------------- 
  3515.  
  3516.    SYSTEMRESOURCELIMITS_QOS_POLICY_NAME    : constant DDS.String := To_DDS_String ("SystemResourceLimits"); 
  3517.    --  <defgroup>SystemResourceLimitsQosGroupDocs</defgroup> 
  3518.    --  <dref>SYSTEMRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3519.  
  3520.    type SystemResourceLimitsQosPolicy is record 
  3521.       Max_Objects_Per_Thread : Long := 1024; 
  3522.    end record with Convention => C; 
  3523.    --  <dref>SystemResourceLimitsQosPolicy</dref> 
  3524.    --  <dref name="Max_Objects_Per_Thread">SystemResourceLimitsQosPolicy_max_objects_per_thread</dref> 
  3525.  
  3526.    SYSTEM_RESOURCE_LIMITS_QOS_POLICY_DEFAULT : constant SystemResourceLimitsQosPolicy := 
  3527.                                                  (Max_Objects_Per_Thread => 1024); 
  3528.    --  <dref internal="true"></dref> 
  3529.  
  3530.    --  ---------------------------------------------------------- 
  3531.    --                 DOMAIN_PARTICIPANT_RESOURCE_LIMITS (eXtension QoS) 
  3532.    --  ---------------------------------------------------------- 
  3533.  
  3534.    DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_NAME :  constant DDS.String := To_DDS_String ("DomainParticipantResourceLimits"); 
  3535.    --  <defgroup>DomainParticipantResourceLimitsQosGroupDocs</defgroup> 
  3536.    --  <dref>DOMAINPARTICIPANTRESOURCELIMITS_QOS_POLICY_NAME</dref> 
  3537.  
  3538.    DomainParticipantResourceLimitsQosPolicy_MATCH_INIT : constant DDS.Long := 32; 
  3539.  
  3540.    type DomainParticipantResourceLimitsIgnoredEntityReplacementKind is new Unsigned_Long; 
  3541.    --  <dref>DomainParticipantResourceLimitsIgnoredEntityReplacementKind</dref> 
  3542.  
  3543.    NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT : 
  3544.    constant DomainParticipantResourceLimitsIgnoredEntityReplacementKind := 0; 
  3545.    --  <dref>DomainParticipantResourceLimitsIgnoredEntityReplacementKind_NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT</dref> 
  3546.  
  3547.    DDS_NOT_ALIVE_FIRST_IGNORED_ENTITY_REPLACEMENT : 
  3548.    constant DomainParticipantResourceLimitsIgnoredEntityReplacementKind := 1; 
  3549.    --  <dref>DomainParticipantResourceLimitsIgnoredEntityReplacementKind_NOT_ALIVE_FIRST_IGNORED_ENTITY_REPLACEMENT</dref> 
  3550.  
  3551.    type DomainParticipantResourceLimitsQosPolicy is record 
  3552.       Local_Writer_Allocation                               : aliased AllocationSettings_T := (16, -1, -1); 
  3553.       Local_Reader_Allocation                               : aliased AllocationSettings_T := (16, -1, -1); 
  3554.       Local_Publisher_Allocation                            : aliased AllocationSettings_T := (4, -1, -1); 
  3555.       Local_Subscriber_Allocation                           : aliased AllocationSettings_T := (4, -1, -1); 
  3556.       Local_Topic_Allocation                                : aliased AllocationSettings_T := (16, -1, -1); 
  3557.       Remote_Writer_Allocation                              : aliased AllocationSettings_T := (64, -1, -1); 
  3558.       Remote_Reader_Allocation                              : aliased AllocationSettings_T := (64, -1, -1); 
  3559.       Remote_Participant_Allocation                         : aliased AllocationSettings_T := (16, -1, -1); 
  3560.       Matching_Writer_Reader_Pair_Allocation                : aliased AllocationSettings_T := (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1); 
  3561.       Matching_Reader_Writer_Pair_Allocation                : aliased AllocationSettings_T := (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1); 
  3562.       Ignored_Entity_Allocation                             : aliased AllocationSettings_T := (8, -1, -1); 
  3563.       Content_Filtered_Topic_Allocation                     : aliased AllocationSettings_T := (4, -1, -1); 
  3564.       Content_Filter_Allocation                             : aliased AllocationSettings_T := (4, -1, -1); 
  3565.       Read_Condition_Allocation                             : aliased AllocationSettings_T := (4, -1, -1); 
  3566.       Query_Condition_Allocation                            : aliased AllocationSettings_T := (4, -1, -1); 
  3567.       Outstanding_Asynchronous_Sample_Allocation            : aliased AllocationSettings_T := (64, -1, -1); 
  3568.       Flow_Controller_Allocation                            : aliased AllocationSettings_T := (4, -1, -1); 
  3569.       Local_Writer_Hash_Buckets                             : aliased Long := 4; 
  3570.       Local_Reader_Hash_Buckets                             : aliased Long := 4; 
  3571.       Local_Publisher_Hash_Buckets                          : aliased Long := 1; 
  3572.       Local_Subscriber_Hash_Buckets                         : aliased Long := 1; 
  3573.       Local_Topic_Hash_Buckets                              : aliased Long := 4; 
  3574.       Remote_Writer_Hash_Buckets                            : aliased Long := 16; 
  3575.       Remote_Reader_Hash_Buckets                            : aliased Long := 16; 
  3576.       Remote_Participant_Hash_Buckets                       : aliased Long := 4; 
  3577.       Matching_Writer_Reader_Pair_Hash_Buckets              : aliased Long := 32; 
  3578.       Matching_Reader_Writer_Pair_Hash_Buckets              : aliased Long := 32; 
  3579.       Ignored_Entity_Hash_Buckets                           : aliased Long := 1; 
  3580.       Content_Filtered_Topic_Hash_Buckets                   : aliased Long := 1; 
  3581.       Content_Filter_Hash_Buckets                           : aliased Long := 1; 
  3582.       Flow_Controller_Hash_Buckets                          : aliased Long := 1; 
  3583.       Max_Gather_Destinations                               : aliased Long := 8; 
  3584.       Participant_User_Data_Max_Length                      : aliased Long := 256; 
  3585.       Inter_Participant_Data_Max_Length                     : aliased Long := 256; 
  3586.       Topic_Data_Max_Length                                 : aliased Long := 256; 
  3587.       Publisher_Group_Data_Max_Length                       : aliased Long := 256; 
  3588.       Subscriber_Group_Data_Max_Length                      : aliased Long := 256; 
  3589.       Writer_User_Data_Max_Length                           : aliased Long := 256; 
  3590.       Reader_User_Data_Max_Length                           : aliased Long := 256; 
  3591.       Max_Partitions                                        : aliased Long := 64; 
  3592.       Max_Partition_Cumulative_Characters                   : aliased Long := 256; 
  3593.       Default_Partition_Matches_All                         : aliased Boolean := False; 
  3594.       Allow_No_Partitions                                   : aliased Boolean := False; 
  3595.       Type_Code_Max_Serialized_Length                       : aliased Long := 0; 
  3596.       Type_Object_Max_Serialized_Length                     : aliased Long := 8192; 
  3597.       Serialized_Type_Object_Dynamic_Allocation_Threshold   : aliased Long := 8192; 
  3598.       Type_Object_Max_Deserialized_Length                   : aliased Long := -1; 
  3599.       Deserialized_Type_Object_Dynamic_Allocation_Threshold : aliased Long := 4096; 
  3600.       Contentfilter_Property_Max_Length                     : aliased Long := 256; 
  3601.       Channel_Seq_Max_Length                                : aliased Long := 32; 
  3602.       Channel_Filter_Expression_Max_Length                  : aliased Long := 256; 
  3603.       Participant_Property_List_Max_Length                  : aliased Long := 32; 
  3604.       Participant_Property_String_Max_Length                : aliased Long := 4096; 
  3605.       Writer_Property_List_Max_Length                       : aliased Long := 32; 
  3606.       Writer_Property_String_Max_Length                     : aliased Long := 1024; 
  3607.       Reader_Property_List_Max_Length                       : aliased Long := 32; 
  3608.       Reader_Property_String_Max_Length                     : aliased Long := 1024; 
  3609.       Plugin_Info_Parameter_Max_Length                      : aliased Long := 265; 
  3610.       Max_Endpoint_Groups                                   : aliased Long := 32; 
  3611.       Max_Endpoint_Group_Cumulative_Characters              : aliased Long := 1024; 
  3612.       Transport_Info_List_Max_Length                        : aliased Long := 12; 
  3613.       Ignored_Entity_Replacement_Kind                       : aliased DomainParticipantResourceLimitsIgnoredEntityReplacementKind 
  3614.         := NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT; 
  3615.       Remote_Topic_Query_Allocation                         : aliased AllocationSettings_T := (1, -1, -1); 
  3616.       Remote_Topic_Query_Hash_Buckets                       : aliased Long := 1; 
  3617.       Writer_Data_Tag_List_Max_Length                       : aliased Long := 0; 
  3618.       Writer_Data_Tag_String_Max_Length                     : aliased Long := 0; 
  3619.       Reader_Data_Tag_List_Max_Length                       : aliased Long := 0; 
  3620.       Reader_Data_Tag_String_Max_Length                     : aliased Long := 0; 
  3621.       Shmem_Ref_Transfer_Mode_Max_Segments                  : aliased Unsigned_Long 
  3622.         := RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRES_SHMEM_REF_TRANSFER_MODE_MAX_SEGMENTS; 
  3623.    end record with Convention => C; 
  3624.    --  <dref>DomainParticipantResourceLimitsQosPolicy</dref> 
  3625.    --  <dref name="local_writer_allocation">DomainParticipantResourceLimitsQosPolicy_local_writer_allocation</dref> 
  3626.    --  <dref name="local_reader_allocation">DomainParticipantResourceLimitsQosPolicy_local_reader_allocation</dref> 
  3627.    --  <dref name="local_publisher_allocation">DomainParticipantResourceLimitsQosPolicy_local_publisher_allocation</dref> 
  3628.    --  <dref name="local_subscriber_allocation">DomainParticipantResourceLimitsQosPolicy_local_subscriber_allocation</dref> 
  3629.    --  <dref name="local_topic_allocation">DomainParticipantResourceLimitsQosPolicy_local_topic_allocation</dref> 
  3630.    --  <dref name="remote_writer_allocation">DomainParticipantResourceLimitsQosPolicy_remote_writer_allocation</dref> 
  3631.    --  <dref name="remote_reader_allocation">DomainParticipantResourceLimitsQosPolicy_remote_reader_allocation</dref> 
  3632.    --  <dref name="remote_partiicpant_allocation">DomainParticipantResourceLimitsQosPolicy_remote_participant_allocation</dref> 
  3633.    --  <dref name="matching_writer_reader_pair_allocation">DomainParticipantResourceLimitsQosPolicy_matching_writer_reader_pair_allocation</dref> 
  3634.    --  <dref name="matching_reader_writer_pair_allocation">DomainParticipantResourceLimitsQosPolicy_matching_reader_writer_pair_allocation</dref> 
  3635.    --  <dref name="ignored_entity_allocation">DomainParticipantResourceLimitsQosPolicy_ignored_entity_allocation</dref> 
  3636.    --  <dref name="content_filtered_topic_allocation">DomainParticipantResourceLimitsQosPolicy_content_filtered_topic_allocation</dref> 
  3637.    --  <dref name="content_filter_allocation">DomainParticipantResourceLimitsQosPolicy_content_filter_allocation</dref> 
  3638.    --  <dref name="read_condition_allocation">DomainParticipantResourceLimitsQosPolicy_read_condition_allocation</dref> 
  3639.    --  <dref name="query_condition_allocation">DomainParticipantResourceLimitsQosPolicy_query_condition_allocation</dref> 
  3640.    --  <dref name="outstanding_asynchronous_sample_allocation">DomainParticipantResourceLimitsQosPolicy_outstanding_asynchronous_sample_allocation</dref> 
  3641.    --  <dref name="flow_controller_allocation">DomainParticipantResourceLimitsQosPolicy_flow_controller_allocation</dref> 
  3642.    --  <dref name="local_writer_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_writer_hash_buckets</dref> 
  3643.    --  <dref name="local_reader_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_reader_hash_buckets</dref> 
  3644.    --  <dref name="local_publisher_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_publisher_hash_buckets</dref> 
  3645.    --  <dref name="local_subscriber_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_subscriber_hash_buckets</dref> 
  3646.    --  <dref name="local_topic_hash_buckets">DomainParticipantResourceLimitsQosPolicy_local_topic_hash_buckets</dref> 
  3647.    --  <dref name="remote_writer_hash_buckets">DomainParticipantResourceLimitsQosPolicy_remote_writer_hash_buckets</dref> 
  3648.    --  <dref name="remote_reader_hash_buckets">DomainParticipantResourceLimitsQosPolicy_remote_reader_hash_buckets</dref> 
  3649.    --  <dref name="remote_participant_hash_buckets">DomainParticipantResourceLimitsQosPolicy_remote_participant_hash_buckets</dref> 
  3650.    --  <dref name="matching_writer_reader_pair_hash_buckets">DomainParticipantResourceLimitsQosPolicy_matching_writer_reader_pair_hash_buckets</dref> 
  3651.    --  <dref name="matching_reader_writer_pair_hash_buckets">DomainParticipantResourceLimitsQosPolicy_matching_reader_writer_pair_hash_buckets</dref> 
  3652.    --  <dref name="ignored_entity_hash_buckets">DomainParticipantResourceLimitsQosPolicy_ignored_entity_hash_buckets</dref> 
  3653.    --  <dref name="content_filtered_topic_hash_buckets">DomainParticipantResourceLimitsQosPolicy_content_filtered_topic_hash_buckets</dref> 
  3654.    --  <dref name="content_filter_hash_buckets">DomainParticipantResourceLimitsQosPolicy_content_filter_hash_buckets</dref> 
  3655.    --  <dref name="flow_controller_hash_buckets">DomainParticipantResourceLimitsQosPolicy_flow_controller_hash_buckets</dref> 
  3656.    --  <dref name="max_gather_destinations">DomainParticipantResourceLimitsQosPolicy_max_gather_destinations</dref> 
  3657.    --  <dref name="participant_user_data_max_length">DomainParticipantResourceLimitsQosPolicy_participant_user_data_max_length</dref> 
  3658.    --  <dref internal="true" name="inter_participant_data_max_length">DomainParticipantResourceLimitsQosPolicy_inter_participant_data_max_length</dref> 
  3659.    --  <dref name="topic_data_max_length">DomainParticipantResourceLimitsQosPolicy_topic_data_max_length</dref> 
  3660.    --  <dref name="publisher_group_data_max_length">DomainParticipantResourceLimitsQosPolicy_publisher_group_data_max_length</dref> 
  3661.    --  <dref name="subscriber_group_data_max_length">DomainParticipantResourceLimitsQosPolicy_subscriber_group_data_max_length</dref> 
  3662.    --  <dref name="writer_user_data_max_length">DomainParticipantResourceLimitsQosPolicy_writer_user_data_max_length</dref> 
  3663.    --  <dref name="reader_user_data_max_length">DomainParticipantResourceLimitsQosPolicy_reader_user_data_max_length</dref> 
  3664.    --  <dref name="max_partitions">DomainParticipantResourceLimitsQosPolicy_max_partitions</dref> 
  3665.    --  <dref name="max_partition_cumulative_characters">DomainParticipantResourceLimitsQosPolicy_max_partition_cumulative_characters</dref> 
  3666.    --  <dref internal="true" name="default_partition_matches_all">DomainParticipantResourceLimitsQosPolicy_default_partition_matches_all</dref> 
  3667.    --  <dref internal="true" name="allow_no_partitions">DomainParticipantResourceLimitsQosPolicy_allow_no_partitions</dref> 
  3668.    --  <dref name="type_code_max_serialized_length">DomainParticipantResourceLimitsQosPolicy_type_code_max_serialized_length</dref> 
  3669.    --  <dref name="Type_Object_Max_Serialized_Length">DomainParticipantResourceLimitsQosPolicy_type_object_max_serialized_length</dref> 
  3670.    --  <dref internal="true" name="Serialized_Type_Object_Dynamic_Allocation_Threshold">DomainParticipantResourceLimitsQosPolicy_serialized_type_object_dynamic_allocation_threshold</dref> 
  3671.    --  <dref name="Type_Object_Max_Deserialized_Length">DomainParticipantResourceLimitsQosPolicy_type_object_max_deserialized_length</dref> 
  3672.    --  <dref name="Deserialized_Type_Object_Dynamic_Allocation_Threshold">DomainParticipantResourceLimitsQosPolicy_deserialized_type_object_dynamic_allocation_threshold</dref> 
  3673.    --  <dref name="contentfilter_property_max_length">DomainParticipantResourceLimitsQosPolicy_contentfilter_property_max_length</dref> 
  3674.    --  <dref name="channel_seq_max_length">DomainParticipantResourceLimitsQosPolicy_channel_seq_max_length</dref> 
  3675.    --  <dref name="channel_filter_expression_max_length">DomainParticipantResourceLimitsQosPolicy_channel_filter_expression_max_length</dref> 
  3676.    --  <dref name="participant_property_list_max_length">DomainParticipantResourceLimitsQosPolicy_participant_property_list_max_length</dref> 
  3677.    --  <dref name="participant_property_string_max_length">DomainParticipantResourceLimitsQosPolicy_participant_property_string_max_length</dref> 
  3678.    --  <dref name="writer_property_list_max_length">DomainParticipantResourceLimitsQosPolicy_writer_property_list_max_length</dref> 
  3679.    --  <dref name="writer_property_string_max_length">DomainParticipantResourceLimitsQosPolicy_writer_property_string_max_length</dref> 
  3680.    --  <dref name="reader_property_list_max_length">DomainParticipantResourceLimitsQosPolicy_reader_property_list_max_length</dref> 
  3681.    --  <dref name="reader_property_string_max_length">DomainParticipantResourceLimitsQosPolicy_reader_property_string_max_length</dref> 
  3682.    --  <dref internal="true" name="plugin_info_parameter_max_length">DomainParticipantResourceLimitsQosPolicy_plugin_info_parameter_max_length</dref> 
  3683.    --  <dref name="max_endpoint_groups">DomainParticipantResourceLimitsQosPolicy_max_endpoint_groups</dref> 
  3684.    --  <dref name="max_endpoint_group_cumulative_characters">DomainParticipantResourceLimitsQosPolicy_max_endpoint_group_cumulative_characters</dref> 
  3685.    --  <dref name="transport_info_list_max_length">DomainParticipantResourceLimitsQosPolicy_transport_info_list_max_length</dref> 
  3686.    --  <dref name="ignored_entity_replacement_kind">DomainParticipantResourceLimitsQosPolicy_ignored_entity_replacement_kind</dref> 
  3687.    --  <dref internal="true" name="Remote_Topic_Query_Allocation">DomainParticipantResourceLimitsQosPolicy_remote_topic_query_allocation</dref> 
  3688.    --  <dref internal="true" name="Remote_Topic_Query_Hash_Buckets">DomainParticipantResourceLimitsQosPolicy_remote_topic_query_hash_buckets</dref> 
  3689.    --  <dref internal="true" name="Writer_Data_Tag_List_Max_Length">DomainParticipantResourceLimitsQosPolicy_writer_data_tag_list_max_length</dref> 
  3690.    --  <dref internal="true" name="Writer_Data_Tag_String_Max_Length">DomainParticipantResourceLimitsQosPolicy_writer_data_tag_string_max_length</dref> 
  3691.    --  <dref internal="true" name="Reader_Data_Tag_List_Max_Length">DomainParticipantResourceLimitsQosPolicy_reader_data_tag_list_max_length</dref> 
  3692.    --  <dref internal="true" name="Reader_Data_Tag_String_Max_Length">DomainParticipantResourceLimitsQosPolicy_reader_data_tag_string_max_length</dref> 
  3693.    --  <dref internal="true" name="Shmem_Ref_Transfer_Mode_Max_Segments">DomainParticipantResourceLimitsQosPolicy_shmem_ref_transfer_mode_max_segments</dref> 
  3694.  
  3695.    DOMAIN_PARTICIPANT_RESOURCE_LIMITS_QOS_POLICY_DEFAULT : 
  3696.    constant DomainParticipantResourceLimitsQosPolicy := 
  3697.                                                              (Local_Writer_Allocation                               => (16, -1, -1), 
  3698.                                                               Local_Reader_Allocation                               => (16, -1, -1), 
  3699.                                                               Local_Publisher_Allocation                            => (4, -1, -1), 
  3700.                                                               Local_Subscriber_Allocation                           => (4, -1, -1), 
  3701.                                                               Local_Topic_Allocation                                => (16, -1, -1), 
  3702.                                                               Remote_Writer_Allocation                              => (64, -1, -1), 
  3703.                                                               Remote_Reader_Allocation                              => (64, -1, -1), 
  3704.                                                               Remote_Participant_Allocation                         => (16, -1, -1), 
  3705.                                                               Matching_Writer_Reader_Pair_Allocation                => 
  3706.                                                                 (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1), 
  3707.                                                               Matching_Reader_Writer_Pair_Allocation                => 
  3708.                                                                 (DomainParticipantResourceLimitsQosPolicy_MATCH_INIT, -1, -1), 
  3709.                                                               Ignored_Entity_Allocation                             => (8, -1, -1), 
  3710.                                                               Content_Filtered_Topic_Allocation                     => (4, -1, -1), 
  3711.                                                               Content_Filter_Allocation                             => (4, -1, -1), 
  3712.                                                               Read_Condition_Allocation                             => (4, -1, -1), 
  3713.                                                               Query_Condition_Allocation                            => (4, -1, -1), 
  3714.                                                               Outstanding_Asynchronous_Sample_Allocation            => (64, -1, -1), 
  3715.                                                               Flow_Controller_Allocation                            => (4, -1, -1), 
  3716.                                                               Local_Writer_Hash_Buckets                             => 4, 
  3717.                                                               Local_Reader_Hash_Buckets                             => 4, 
  3718.                                                               Local_Publisher_Hash_Buckets                          => 1, 
  3719.                                                               Local_Subscriber_Hash_Buckets                         => 1, 
  3720.                                                               Local_Topic_Hash_Buckets                              => 4, 
  3721.                                                               Remote_Writer_Hash_Buckets                            => 16, 
  3722.                                                               Remote_Reader_Hash_Buckets                            => 16, 
  3723.                                                               Remote_Participant_Hash_Buckets                       => 4, 
  3724.                                                               Matching_Writer_Reader_Pair_Hash_Buckets              => 32, 
  3725.                                                               Matching_Reader_Writer_Pair_Hash_Buckets              => 32, 
  3726.                                                               Ignored_Entity_Hash_Buckets                           => 1, 
  3727.                                                               Content_Filtered_Topic_Hash_Buckets                   => 1, 
  3728.                                                               Content_Filter_Hash_Buckets                           => 1, 
  3729.                                                               Flow_Controller_Hash_Buckets                          => 1, 
  3730.                                                               Max_Gather_Destinations                               => 8, 
  3731.                                                               Participant_User_Data_Max_Length                      => 256, 
  3732.                                                               Inter_Participant_Data_Max_Length                     => 256, 
  3733.                                                               Topic_Data_Max_Length                                 => 256, 
  3734.                                                               Publisher_Group_Data_Max_Length                       => 256, 
  3735.                                                               Subscriber_Group_Data_Max_Length                      => 256, 
  3736.                                                               Writer_User_Data_Max_Length                           => 256, 
  3737.                                                               Reader_User_Data_Max_Length                           => 256, 
  3738.                                                               Max_Partitions                                        => 64, 
  3739.                                                               Max_Partition_Cumulative_Characters                   => 256, 
  3740.                                                               Default_Partition_Matches_All                         => False, 
  3741.                                                               Allow_No_Partitions                                   => False, 
  3742.                                                               Type_Code_Max_Serialized_Length                       => 0, 
  3743.                                                               Type_Object_Max_Serialized_Length                     => 8192, 
  3744.                                                               Serialized_Type_Object_Dynamic_Allocation_Threshold   => 8192, 
  3745.                                                               Type_Object_Max_Deserialized_Length                   => -1, 
  3746.                                                               Deserialized_Type_Object_Dynamic_Allocation_Threshold => 4096, 
  3747.                                                               Contentfilter_Property_Max_Length                     => 256, 
  3748.                                                               Channel_Seq_Max_Length                                => 32, 
  3749.                                                               Channel_Filter_Expression_Max_Length                  => 256, 
  3750.                                                               Participant_Property_List_Max_Length                  => 32, 
  3751.                                                               Participant_Property_String_Max_Length                => 1024, 
  3752.                                                               Writer_Property_List_Max_Length                       => 32, 
  3753.                                                               Writer_Property_String_Max_Length                     => 1024, 
  3754.                                                               Reader_Property_List_Max_Length                       => 32, 
  3755.                                                               Reader_Property_String_Max_Length                     => 1024, 
  3756.                                                               Plugin_Info_Parameter_Max_Length                      => 256, 
  3757.                                                               Max_Endpoint_Groups                                   => 32, 
  3758.                                                               Max_Endpoint_Group_Cumulative_Characters              => 1024, 
  3759.                                                               Transport_Info_List_Max_Length                        => 12, 
  3760.                                                               Ignored_Entity_Replacement_Kind                       => NO_REPLACEMENT_IGNORED_ENTITY_REPLACEMENT, 
  3761.                                                               Remote_Topic_Query_Allocation                         => (1, -1, -1), 
  3762.                                                               Remote_Topic_Query_Hash_Buckets                       => 1, 
  3763.                                                               Writer_Data_Tag_List_Max_Length                       => 0, 
  3764.                                                               Writer_Data_Tag_String_Max_Length                     => 0, 
  3765.                                                               Reader_Data_Tag_List_Max_Length                       => 0, 
  3766.                                                               Reader_Data_Tag_String_Max_Length                     => 0, 
  3767.                                                               Shmem_Ref_Transfer_Mode_Max_Segments                  => RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRES_SHMEM_REF_TRANSFER_MODE_MAX_SEGMENTS); 
  3768.    --  <dref internal="true"></dref> 
  3769.  
  3770.  
  3771.    --  ---------------------------------------------------------- 
  3772.    --                 EVENT (eXtension QoS) 
  3773.    --  ---------------------------------------------------------- 
  3774.  
  3775.    EVENT_QOS_POLICY_NAME                                 : constant DDS.String := To_DDS_String ("Event"); 
  3776.    --  <defgroup>EventQosGroupDocs</defgroup> 
  3777.    --  <dref>EVENT_QOS_POLICY_NAME</dref> 
  3778.  
  3779.    type EventQosPolicy is record 
  3780.       Thread        : aliased ThreadSettings_T; 
  3781.       Initial_Count : aliased Long := 256; 
  3782.       Max_Count     : aliased Long := -1; 
  3783.    end record with Convention => C; 
  3784.    --  <dref>EventQosPolicy</dref> 
  3785.    --  <dref name="Thread">EventQosPolicy_thread</dref> 
  3786.    --  <dref name="Initial_Count">EventQosPolicy_initial_count</dref> 
  3787.    --  <dref name="Max_Count">EventQosPolicy_max_count</dref> 
  3788.  
  3789.    --        EVENT_QOS_POLICY_DEFAULT : constant EventQosPolicy := 
  3790.    --                                     (Thread        => THREAD_SETTINGS_DEFAULT, 
  3791.    --                                      Initial_Count => 256, 
  3792.    --                                      Max_Count     => -1); 
  3793.  
  3794.    --  ---------------------------------------------------------- 
  3795.    --                 DATABASE (eXtension QoS) 
  3796.    --  ---------------------------------------------------------- 
  3797.  
  3798.    DATABASE_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Database"); 
  3799.    --  <defgroup>DatabaseQosGroupDocs</defgroup> 
  3800.    --  <dref>DATABASE_QOS_POLICY_NAME</dref> 
  3801.  
  3802.    type DatabaseQosPolicy is record 
  3803.       Thread                      : aliased ThreadSettings_T; 
  3804.       Shutdown_Timeout            : aliased Duration_T := (15, 0); 
  3805.       Cleanup_Period              : aliased Duration_T := (61, 0); 
  3806.       Shutdown_Cleanup_Period     : aliased Duration_T := (1, 0); 
  3807.       Initial_Records             : aliased Long := 1024; 
  3808.       Max_Skiplist_Level          : aliased Long := 7; 
  3809.       Table_Allocation_Block_Size : aliased Long := 48; 
  3810.       Max_Weak_References         : aliased Long := -1; 
  3811.       Initial_Weak_References     : aliased Long := 2049; 
  3812.    end record with Convention => C; 
  3813.    --  <dref>DatabaseQosPolicy</dref> 
  3814.    --  <dref name="Thread">DatabaseQosPolicy_thread</dref> 
  3815.    --  <dref name="Shutdown_Timeout">DatabaseQosPolicy_shutdown_timeout</dref> 
  3816.    --  <dref name="Cleanup_Period">DatabaseQosPolicy_cleanup_period</dref> 
  3817.    --  <dref name="Shutdown_Cleanup_Period">DatabaseQosPolicy_shutdown_cleanup_period</dref> 
  3818.    --  <dref name="Initial_Records">DatabaseQosPolicy_initial_records</dref> 
  3819.    --  <dref name="Max_Skiplist_Level">DatabaseQosPolicy_max_skiplist_level</dref> 
  3820.    --  <dref internal="true" name="Table_Allocation_Block_Sizee">DatabaseQosPolicy_table_allocation_block_size</dref> 
  3821.    --  <dref name="Max_Weak_References">DatabaseQosPolicy_max_weak_references</dref> 
  3822.    --  <dref name="Initial_Weak_References">DatabaseQosPolicy_initial_weak_references</dref> 
  3823.  
  3824.    --     DATABASE_QOS_POLICY_DEFAULT :  constant DatabaseQosPolicy := 
  3825.    --                                     (Thread                      => THREAD_SETTINGS_DEFAULT, 
  3826.    --                                      Shutdown_Timeout            => (15, 0), 
  3827.    --                                      Cleanup_Period              => (61, 0), 
  3828.    --                                      Shutdown_Cleanup_Period     => (1, 0), 
  3829.    --                                      Initial_Records             => 1024, 
  3830.    --                                      Max_Skiplist_Level          => 7, 
  3831.    --                                      Table_Allocation_Block_Size => 48, 
  3832.    --                                      Max_Weak_References         => -1, 
  3833.    --                                      Initial_Weak_References     => 2049); 
  3834.  
  3835.    --  ---------------------------------------------------------- 
  3836.    --                 RECEIVER_POOL (eXtension QoS) 
  3837.    --  ---------------------------------------------------------- 
  3838.  
  3839.    RECEIVERPOOL_QOS_POLICY_NAME : DDS.String := To_DDS_String ("ReceiverPool"); 
  3840.    --  <defgroup>ReceiverPoolQosGroupDocs</defgroup> 
  3841.    --  <dref>RECEIVERPOOL_QOS_POLICY_NAME</dref> 
  3842.  
  3843.    ReceiverPoolQosPolicy_MAX_RECEIVE_THREADS_DEFAULT : constant Long := -1; 
  3844.  
  3845.    type ReceiverPoolQosPolicy is record 
  3846.       Thread                  : aliased ThreadSettings_T; 
  3847.       Initial_Receive_Threads : aliased Long := 4; 
  3848.       Max_Receive_Threads     : aliased Long := ReceiverPoolQosPolicy_MAX_RECEIVE_THREADS_DEFAULT; 
  3849.       Buffer_Size             : aliased Long := 9216; 
  3850.       Buffer_Alignment        : aliased Long := 16; 
  3851.       Is_Timestamp_Enabled    : aliased DDS.Boolean := True; 
  3852.    end record with Convention => C; 
  3853.    --  <dref>ReceiverPoolQosPolicy</dref> 
  3854.    --  <dref name="Thread">ReceiverPoolQosPolicy_thread</dref> 
  3855.    --  <dref internal="true" name="Initial_Receive_Threads">ReceiverPoolQosPolicy_initial_receive_threads</dref> 
  3856.    --  <dref internal="true" name="Max_Receive_Threads">ReceiverPoolQosPolicy_max_receive_threads</dref> 
  3857.    --  <dref name="Buffer_Size">ReceiverPoolQosPolicy_buffer_size</dref> 
  3858.    --  <dref name="Buffer_Alignment">ReceiverPoolQosPolicy_buffer_alignment</dref> 
  3859.    --  <dref internal="true" name="Is_Timestamp_Enabled">ReceiverPoolQosPolicy_is_timestamp_enabled</dref> 
  3860.  
  3861.  
  3862.    --     RECEIVER_POOL_QOS_POLICY_DEFAULT : constant ReceiverPoolQosPolicy := 
  3863.    --                                          (Thread                  => THREAD_SETTINGS_DEFAULT, 
  3864.    --                                           Initial_Receive_Threads => 4, 
  3865.    --                                           Max_Receive_Threads     => ReceiverPoolQosPolicy_MAX_RECEIVE_THREADS_DEFAULT, 
  3866.    --                                           Buffer_Size             => 9216, 
  3867.    --                                           Buffer_Alignment        => 16, 
  3868.    --                                           Is_Timestamp_Enabled    => TRUE); 
  3869.  
  3870.    --  ---------------------------------------------------------- 
  3871.    --                  BuiltinTopicReaderResourceLimits_t 
  3872.    --  ---------------------------------------------------------- 
  3873.  
  3874.    type BuiltinTopicReaderResourceLimits_T is record 
  3875.       Initial_Samples                          : aliased Long := 64; 
  3876.       Max_Samples                              : aliased Long := -1; 
  3877.       Initial_Infos                            : aliased Long := 64; 
  3878.       Max_Infos                                : aliased Long := -1; 
  3879.       Initial_Outstanding_Reads                : aliased Long := 2; 
  3880.       Max_Outstanding_Reads                    : aliased Long := -1; 
  3881.       Max_Samples_Per_Read                     : aliased Long := 1024; 
  3882.       Disable_Fragmentation_Support            : aliased DDS.Boolean := False; 
  3883.       Max_Fragmented_Samples                   : aliased Long := 1024; 
  3884.       Initial_Fragmented_Samples               : aliased Long := 4; 
  3885.       Max_Fragmented_Samples_Per_Remote_Writer : aliased Long := 256; 
  3886.       Max_Fragments_Per_Sample                 : aliased Long := 512; 
  3887.       Dynamically_Allocate_Fragmented_Samples  : aliased DDS.Boolean := False; 
  3888.    end record with Convention => C; 
  3889.    --  <dref>BuiltinTopicReaderResourceLimits_t</dref> 
  3890.    --  <dref name="Initial_Samples">BuiltinTopicReaderResourceLimits_t_initial_samples</dref> 
  3891.    --  <dref name="Max_Samples">BuiltinTopicReaderResourceLimits_t_max_samples</dref> 
  3892.    --  <dref name="Initial_Infos">BuiltinTopicReaderResourceLimits_t_initial_infos</dref> 
  3893.    --  <dref name="Max_Infos">BuiltinTopicReaderResourceLimits_t_max_infos</dref> 
  3894.    --  <dref name="Initial_Outstanding_Reads">BuiltinTopicReaderResourceLimits_t_initial_outstanding_reads</dref> 
  3895.    --  <dref name="Max_Outstanding_Reads">BuiltinTopicReaderResourceLimits_t_max_outstanding_reads</dref> 
  3896.    --  <dref name="Max_Samples_Per_Read">BuiltinTopicReaderResourceLimits_t_max_samples_per_read</dref> 
  3897.    --  <dref name="Disable_Fragmentation_Support">BuiltinTopicReaderResourceLimits_t_disable_fragmentation_support</dref> 
  3898.    --  <dref name="Max_Fragmented_Samples">BuiltinTopicReaderResourceLimits_t_max_fragmented_samples</dref> 
  3899.    --  <dref name="Initial_Fragmented_Samples">BuiltinTopicReaderResourceLimits_t_initial_fragmented_samples</dref> 
  3900.    --  <dref name="Max_Fragmented_Samples_Per_Remote_Writer">BuiltinTopicReaderResourceLimits_t_max_fragmented_samples_per_remote_writer</dref> 
  3901.    --  <dref name="Max_Fragments_Per_Sample">BuiltinTopicReaderResourceLimits_t_max_fragments_per_sample</dref> 
  3902.    --  <dref name="Dynamically_allocate_Fragmented_Samples">BuiltinTopicReaderResourceLimits_t_dynamically_allocate_fragmented_samples</dref> 
  3903.  
  3904.    BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT : constant BuiltinTopicReaderResourceLimits_T := 
  3905.                                                     (Initial_Samples                          => 64, 
  3906.                                                      Max_Samples                              => -1, 
  3907.                                                      Initial_Infos                            => 64, 
  3908.                                                      Max_Infos                                => -1, 
  3909.                                                      Initial_Outstanding_Reads                => 2, 
  3910.                                                      Max_Outstanding_Reads                    => -1, 
  3911.                                                      Max_Samples_Per_Read                     => 1024, 
  3912.                                                      Disable_Fragmentation_Support            => False, 
  3913.                                                      Max_Fragmented_Samples                   => 1024, 
  3914.                                                      Initial_Fragmented_Samples               => 4, 
  3915.                                                      Max_Fragmented_Samples_Per_Remote_Writer => 256, 
  3916.                                                      Max_Fragments_Per_Sample                 => 512, 
  3917.                                                      Dynamically_Allocate_Fragmented_Samples  => False); 
  3918.    --  <dref internal="true"></dref> 
  3919.  
  3920.    BUILTIN_TOPIC_KEY_TYPE_NATIVE_LENGTH         : constant := 4; 
  3921.    --  <dref internal="true"></dref> 
  3922.  
  3923.    type  BuiltinTopicKey_Array_T is array 
  3924.      (0 .. BUILTIN_TOPIC_KEY_TYPE_NATIVE_LENGTH - 1) of Builtin_Topic_Key_Type_Native; 
  3925.  
  3926.    type BuiltinTopicKey_T is record 
  3927.       Value : BuiltinTopicKey_Array_T := (others => 0); 
  3928.    end record with Convention => C; 
  3929.    --  <defgroup>BuiltInTopicCommonGroupDocs</defgroup> 
  3930.    --  <dref>BuiltinTopicKey_t</dref> 
  3931.    --  <dref name="Value">BuiltinTopicKey_t_value</dref> 
  3932.  
  3933.    type BuiltinTopicKey_T_Access is access all BuiltinTopicKey_T; 
  3934.  
  3935.    BuiltinTopicKey_T_INITIALIZER : constant BuiltinTopicKey_T := 
  3936.                                      (Value => (0, 0, 0, 0)); 
  3937.    --  <dref internal="true"></dref> 
  3938.  
  3939.    function BuiltinTopicKey_Equals (A : in BuiltinTopicKey_T_Access; 
  3940.                                     B : in BuiltinTopicKey_T_Access) 
  3941.                                     return DDS.Boolean; 
  3942.    --  <dref internal="true"></dref> 
  3943.  
  3944.    --  ---------------------------------------------------------- 
  3945.    --                  PUBLISHMODE (eXtension QoS) 
  3946.    --  ---------------------------------------------------------- 
  3947.  
  3948.    PUBLISHMODE_QOS_POLICY_NAME   : constant DDS.String := To_DDS_String ("PublishMode"); 
  3949.    --  <defgroup>PublishModeQosGroupDocs</defgroup> 
  3950.    --  <dref>PUBLISHMODE_QOS_POLICY_NAME</dref> 
  3951.  
  3952.    type PublishModeQosPolicyKind is new Unsigned_Long; 
  3953.    --  <dref>PublishModeQosPolicyKind</dref> 
  3954.  
  3955.    SYNCHRONOUS_PUBLISH_MODE_QOS  : constant PublishModeQosPolicyKind := 0; 
  3956.    --  <dref>PublishModeQosPolicyKind_SYNCHRONOUS_PUBLISH_MODE_QOS</dref> 
  3957.  
  3958.    ASYNCHRONOUS_PUBLISH_MODE_QOS : constant PublishModeQosPolicyKind := 1; 
  3959.    --  <dref>PublishModeQosPolicyKind_ASYNCHRONOUS_PUBLISH_MODE_QOS</dref> 
  3960.  
  3961.    PUBLICATION_PRIORITY_UNDEFINED : constant Long := 0; 
  3962.    --  <dref>PUBLICATION_PRIORITY_UNDEFINED</dref> 
  3963.  
  3964.    PUBLICATION_PRIORITY_AUTOMATIC : constant Long := -1; 
  3965.    --  <dref>PUBLICATION_PRIORITY_AUTOMATIC</dref> 
  3966.  
  3967.    type PublishModeQosPolicy is record 
  3968.       Kind                 : aliased PublishModeQosPolicyKind := SYNCHRONOUS_PUBLISH_MODE_QOS; 
  3969.       Flow_Controller_Name : aliased DDS.String; 
  3970.       Priority             : aliased Long := PUBLICATION_PRIORITY_UNDEFINED; 
  3971.    end record with Convention => C; 
  3972.    --  <dref>PublishModeQosPolicy</dref> 
  3973.    --  <dref name="Kind">PublishModeQosPolicy_kind</dref> 
  3974.    --  <dref name="Flow_Controller_Name">PublishModeQosPolicy_flow_controller_name</dref> 
  3975.    --  <dref name="Priority">PublishModeQosPolicy_priority</dref> 
  3976.  
  3977.    PUBLISH_MODE_QOS_POLICY_DEFAULT : constant PublishModeQosPolicy := 
  3978.                                        (Kind                      => SYNCHRONOUS_PUBLISH_MODE_QOS, 
  3979.                                         Flow_Controller_Name      => (Data => DDS.NULL_STRING.Data), 
  3980.                                         Priority                  => PUBLICATION_PRIORITY_UNDEFINED 
  3981.                                        ); 
  3982.    --  <dref internal="true"></dref> 
  3983.  
  3984.    --  ---------------------------------------------------------- 
  3985.    --                  DISCOVERY_CONFIG (eXtension QoS) 
  3986.    --  ---------------------------------------------------------- 
  3987.  
  3988.    DISCOVERYCONFIG_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DiscoveryConfig"); 
  3989.    --  <defgroup>DiscoveryConfigQosGroupDocs</defgroup> 
  3990.    --  <dref>DISCOVERYCONFIG_QOS_POLICY_NAME</dref> 
  3991.  
  3992.    type DiscoveryConfigBuiltinPluginKind is new DDS.Unsigned_Long; 
  3993.    --  <dref>DiscoveryConfigBuiltinPluginKind</dref> 
  3994.  
  3995.    subtype DiscoveryConfigBuiltinPluginKindMask is  DiscoveryConfigBuiltinPluginKind; 
  3996.    --  <dref>DiscoveryConfigBuiltinPluginKindMask</dref> 
  3997.  
  3998.    DISCOVERYCONFIG_BUILTIN_SPDP  : constant  DiscoveryConfigBuiltinPluginKindMask := 2#0001#; 
  3999.    --  <dref internal="true">DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_SPDP</dref> 
  4000.  
  4001.    DISCOVERYCONFIG_BUILTIN_SEDP  : constant  DiscoveryConfigBuiltinPluginKindMask := 2#0010#; 
  4002.    --  <dref internal="true">DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_SEDP</dref> 
  4003.  
  4004.    DISCOVERYCONFIG_BUILTIN_SDP   : constant  DiscoveryConfigBuiltinPluginKindMask := 
  4005.                                      (DISCOVERYCONFIG_BUILTIN_SPDP or DISCOVERYCONFIG_BUILTIN_SEDP); 
  4006.    --  <dref>DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_SDP</dref> 
  4007.  
  4008.    DISCOVERYCONFIG_BUILTIN_EDS   : constant  DiscoveryConfigBuiltinPluginKindMask := 2#0100#; 
  4009.    --  <dref internal="true">DiscoveryConfigBuiltinPluginKind_DISCOVERYCONFIG_BUILTIN_EDS</dref> 
  4010.  
  4011.    DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_ALL     : 
  4012.    constant  DiscoveryConfigBuiltinPluginKindMask := 16#EFFF#; 
  4013.    --  <dref>DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_ALL</dref> 
  4014.  
  4015.    DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_NONE    : 
  4016.    constant  DiscoveryConfigBuiltinPluginKindMask := 0; 
  4017.    --  <dref>DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_NONE</dref> 
  4018.  
  4019.    DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_DEFAULT : 
  4020.    constant  DiscoveryConfigBuiltinPluginKindMask := DISCOVERYCONFIG_BUILTIN_SDP; 
  4021.    --  <dref>DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_DEFAULT</dref> 
  4022.  
  4023.    type DiscoveryPluginPromiscuityKind is new Unsigned_Long; 
  4024.    --  <dref internal="true">DiscoveryPluginPromiscouityKind</dref> 
  4025.  
  4026.    DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY : constant DiscoveryPluginPromiscuityKind := 1; 
  4027.    --  <dref internal="true">DiscoveryPluginPromiscouityKind_DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY</dref> 
  4028.  
  4029.    DISCOVERYPLUGIN_DISCOVER_ALL_REMOTE_ENTITIES_PROMISCUITY : constant DiscoveryPluginPromiscuityKind := 16#FFFF#; 
  4030.    --  <dref internal="true">DiscoveryPluginPromiscouityKind_DISCOVERYPLUGIN_DISCOVER_ALL_REMOTE_ENTITIES_PROMISCUITY</dref> 
  4031.  
  4032.    type RemoteParticipantPurgeKind is new Unsigned_Long; 
  4033.    --  <dref>RemoteParticipantPurgeKind</dref> 
  4034.  
  4035.    LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE : constant RemoteParticipantPurgeKind := 0; 
  4036.    --  <dref>RemoteParticipantPurgeKind_LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE</dref> 
  4037.  
  4038.    NO_REMOTE_PARTICIPANT_PURGE   : constant RemoteParticipantPurgeKind := 1; 
  4039.    --  <dref>RemoteParticipantPurgeKind_NO_REMOTE_PARTICIPANT_PURGE</dref> 
  4040.  
  4041.    type DiscoveryBuiltinReaderFragmentationResourceLimits_T is record 
  4042.       Disable_Fragmentation_Support            : aliased DDS.Boolean := False; 
  4043.       Max_Fragmented_Samples                   : aliased Long := 1024; 
  4044.       Initial_Fragmented_Samples               : aliased Long := 4; 
  4045.       Max_Fragmented_Samples_Per_Remote_Writer : aliased Long := 256; 
  4046.       Max_Fragments_Per_Sample                 : aliased Long := 512; 
  4047.       Dynamically_Allocate_Fragmented_Samples  : aliased DDS.Boolean := False; 
  4048.    end record with Convention => C; 
  4049.    --  <dref internal="true">DiscoveryBuiltinReaderFragmentationResourceLimits_t</dref> 
  4050.    --  <dref internal="true" name="Disable_Fragmentation_Support">DiscoveryBuiltinReaderFragmentationResourceLimits_t_disable_fragmentation_support</dref> 
  4051.    --  <dref internal="true" name="Max_Fragmented_Samples">DiscoveryBuiltinReaderFragmentationResourceLimits_t_max_fragmented_samples</dref> 
  4052.    --  <dref internal="true" name="Initial_Fragmented_Samples">DiscoveryBuiltinReaderFragmentationResourceLimits_t_initial_fragmented_samples</dref> 
  4053.    --  <dref internal="true" name="Max_Fragmented_Per_Samples_Per_Remote_Writer">DiscoveryBuiltinReaderFragmentationResourceLimits_t_max_fragmented_per_samples_per_remote_writer</dref> 
  4054.    --  <dref internal="true" name="Max_Fragments_Per_Sample">DiscoveryBuiltinReaderFragmentationResourceLimits_t_max_fragments_per_sample</dref> 
  4055.    --  <dref internal="true" name="Dynamically_Allocate_Fragmented_Samples">DiscoveryBuiltinReaderFragmentationResourceLimits_t_dynamically_allocate_fragmented_samples</dref> 
  4056.  
  4057.  
  4058.    DISCOVERY_BUILTIN_READER_FRAGMENTATION_RESOURCE_LIMITS_DEFAULT : constant DiscoveryBuiltinReaderFragmentationResourceLimits_T := 
  4059.                                                                       (Disable_Fragmentation_Support            => False, 
  4060.                                                                        Max_Fragmented_Samples                   => 1024, 
  4061.                                                                        Initial_Fragmented_Samples               => 4, 
  4062.                                                                        Max_Fragmented_Samples_Per_Remote_Writer => 256, 
  4063.                                                                        Max_Fragments_Per_Sample                 => 512, 
  4064.                                                                        Dynamically_Allocate_Fragmented_Samples  => False); 
  4065.    --  <dref internal="true"></dref> 
  4066.  
  4067.    --  ---------------------------------------------------------- 
  4068.    --                  TYPESUPPORT (eXtension QoS) 
  4069.    --  ---------------------------------------------------------- 
  4070.  
  4071.    TYPESUPPORT_QOS_POLICY_NAME                                    : constant DDS.String := To_DDS_String ("TypeSupport"); 
  4072.    --  <defgroup>TypeSupportQosGroupDocs</defgroup> 
  4073.    --  <dref>TYPESUPPORT_QOS_POLICY_NAME</dref> 
  4074.  
  4075.    type CdrPaddingKind is 
  4076.      (ZERO_CDR_PADDING, 
  4077.       NOT_SET_CDR_PADDING, 
  4078.       AUTO_CDR_PADDING); 
  4079.    pragma Convention (C, CdrPaddingKind); 
  4080.    --  <dref>CdrPaddingKind</dref> 
  4081.    --  <dref name="ZERO_CDR_PADDING">CdrPaddingKind_ZERO_CDR_PADDING</dref> 
  4082.    --  <dref name="NOT_SET_CDR_PADDING">CdrPaddingKind_NOT_SET_CDR_PADDING</dref> 
  4083.    --  <dref name="AUTO_CDR_PADDING">CdrPaddingKind_AUTO_CDR_PADDING</dref> 
  4084.  
  4085.  
  4086.    type TypeSupportQosPolicy is record 
  4087.       Plugin_Data      : aliased DDS_Support.Void_Ptr; 
  4088.       Cdr_Padding_Kind : aliased CdrPaddingKind; 
  4089.    end record with Convention => C; 
  4090.    --  <dref>TypeSupportQosPolicy</dref> 
  4091.    --  <dref name="Plugin_Data">TypeSupportQosPolicy_plugin_data</dref> 
  4092.    --  <dref name="cdr_padding_kind">TypeSupportQosPolicy_cdr_padding_kind</dref> 
  4093.  
  4094.    TYPESUPPORT_QOS_POLICY_DEFAULT : constant TypeSupportQosPolicy := 
  4095.                                       (Plugin_Data      => System.Null_Address, 
  4096.                                        Cdr_Padding_Kind => AUTO_CDR_PADDING); 
  4097.    --  <dref internal="true"></dref> 
  4098.  
  4099.    --  ---------------------------------------------------------- 
  4100.    --                  ASYNCHRONOUS_PUBLISHER (eXtension QoS) 
  4101.    --  ---------------------------------------------------------- 
  4102.  
  4103.    type ThreadBlockingKind is new Unsigned_Long; 
  4104.    --  <defgroup>AsynchronousPublisherQosGroupDocs</defgroup> 
  4105.    --  <dref internal="true">ThreadBlockingKind</dref> 
  4106.  
  4107.    SEMAPHORE_BLOCKING_KIND       : constant ThreadBlockingKind := 0; 
  4108.    --  <dref internal="true">ThreadBlockingKind_SEMAPHORE_BLOCKING_KIND</dref> 
  4109.  
  4110.    SPIN_BLOCKING_KIND            : constant ThreadBlockingKind := 1; 
  4111.    --  <dref internal="true">ThreadBlockingKind_SPIN_BLOCKING_KIND</dref> 
  4112.  
  4113.    ASYNCHRONOUSPUBLISHER_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("AsynchronousPublisher"); 
  4114.    --  <dref>ASYNCHRONOUSPUBLISHER_QOS_POLICY_NAME</dref> 
  4115.  
  4116.    type AsynchronousPublisherQosPolicy is record 
  4117.       Disable_Asynchronous_Write       : aliased DDS.Boolean := False; 
  4118.       Thread                           : aliased ThreadSettings_T; 
  4119.       Disable_Asynchronous_Batch       : aliased Boolean  := False; 
  4120.       Asynchronous_Batch_Thread        : aliased ThreadSettings_T; 
  4121.       Asynchronous_Batch_Blocking_Kind : aliased ThreadBlockingKind := 0; 
  4122.       Disable_Topic_Query_Publication  : aliased DDS.Boolean := False; 
  4123.       Topic_Query_Publication_Thread   : aliased ThreadSettings_T; 
  4124.    end record with Convention => C; 
  4125.    --  <dref>AsynchronousPublisherQosPolicy</dref> 
  4126.    --  <dref name="Disable_Asynchronous_Write">AsynchronousPublisherQosPolicy_disable_asynchronous_write</dref> 
  4127.    --  <dref name="Thread">AsynchronousPublisherQosPolicy_thread</dref> 
  4128.    --  <dref name="disable_asynchronous_batch">AsynchronousPublisherQosPolicy_disable_asynchronous_batch</dref> 
  4129.    --  <dref internal="true" name="asynchronous_batch_blocking_kind">AsynchronousPublisherQosPolicy_asynchronous_batch_blocking_kind</dref> 
  4130.    --  <dref internal="true" name="Disable_Topic_Query_Publication">AsynchronousPublisherQosPolicy_disable_topic_query_publication</dref> 
  4131.    --  <dref internal="true" name="Topic_Query_Publication_Thread">AsynchronousPublisherQosPolicy_topic_query_publication_thread</dref> 
  4132.  
  4133.  
  4134.    --     ASYNCHRONOUS_PUBLISHER_QOS_POLICY_DEFAULT : constant AsynchronousPublisherQosPolicy := 
  4135.    --                                                   (Disable_Asynchronous_Write       => FALSE, 
  4136.    --                                                    Thread                           => THREAD_SETTINGS_DEFAULT, 
  4137.    --                                                    disable_asynchronous_batch       => False, 
  4138.    --                                                    asynchronous_batch_thread        => THREAD_SETTINGS_DEFAULT, 
  4139.    --                                                    asynchronous_batch_blocking_kind => 0); 
  4140.  
  4141.  
  4142.    type DiscoveryConfigQosPolicy is record 
  4143.       Participant_Liveliness_Lease_Duration                  : aliased Duration_T := (100, 0); 
  4144.       Participant_Liveliness_Assert_Period                   : aliased Duration_T := (30, 0); 
  4145.       Remote_Participant_Purge_Kind                          : aliased RemoteParticipantPurgeKind := LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE; 
  4146.       Max_Liveliness_Loss_Detection_Period                   : aliased Duration_T := (60, 0); 
  4147.       Initial_Participant_Announcements                      : aliased Long := 5; 
  4148.       Min_Initial_Participant_Announcement_Period            : aliased Duration_T := (1, 0); 
  4149.       Max_Initial_Participant_Announcement_Period            : aliased Duration_T := (1, 0); 
  4150.       Participant_Reader_Resource_Limits                     : aliased BuiltinTopicReaderResourceLimits_T := BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT; 
  4151.       Publication_Reader                                     : aliased RtpsReliableReaderProtocol_T := RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT; 
  4152.       Publication_Reader_Resource_Limits                     : aliased BuiltinTopicReaderResourceLimits_T; 
  4153.       Subscription_Reader                                    : aliased RtpsReliableReaderProtocol_T; 
  4154.       Subscription_Reader_Resource_Limits                    : aliased BuiltinTopicReaderResourceLimits_T; 
  4155.       Publication_Writer                                     : aliased RtpsReliableWriterProtocol_T; 
  4156.       Publication_Writer_Data_Lifecycle                      : aliased WriterDataLifecycleQosPolicy; 
  4157.       Subscription_Writer                                    : aliased RtpsReliableWriterProtocol_T; 
  4158.       Subscription_Writer_Data_Lifecycle                     : aliased WriterDataLifecycleQosPolicy; 
  4159.       Endpoint_Plugin_Redundancy_Level                       : aliased Long; 
  4160.       Builtin_Discovery_Plugins                              : aliased DiscoveryConfigBuiltinPluginKindMask; 
  4161.       Participant_Message_Reader_Reliability_Kind            : aliased ReliabilityQosPolicyKind; 
  4162.       Participant_Message_Reader                             : aliased RtpsReliableReaderProtocol_T; 
  4163.       Participant_Message_Writer                             : aliased RtpsReliableWriterProtocol_T; 
  4164.       Publication_Writer_Publish_Mode                        : aliased PublishModeQosPolicy; 
  4165.       Subscription_Writer_Publish_Mode                       : aliased PublishModeQosPolicy; 
  4166.       Asynchronous_Publisher                                 : aliased AsynchronousPublisherQosPolicy; 
  4167.       Default_Domain_Announcement_Period                     : aliased Duration_T; 
  4168.       Ignore_Default_Domain_Announcements                    : aliased Boolean; 
  4169.       Service_Request_Writer                                 : aliased RtpsReliableWriterProtocol_T; 
  4170.       Service_Request_Writer_Data_Lifecycle                  : aliased WriterDataLifecycleQosPolicy; 
  4171.       Service_Request_Writer_Publish_Mode                    : aliased PublishModeQosPolicy; 
  4172.       Service_Request_Reader                                 : aliased RtpsReliableReaderProtocol_T; 
  4173.       Locator_Reachability_Assert_Period                     : aliased Duration_T; 
  4174.       Locator_Reachability_Lease_Duration                    : aliased Duration_T; 
  4175.       Locator_Reachability_Change_Detection_Period           : aliased Duration_T; 
  4176.       Secure_Volatile_Writer                                 : aliased RtpsReliableWriterProtocol_T; 
  4177.       Secure_Volatile_Writer_Publish_Mode                    : aliased PublishModeQosPolicy; 
  4178.       Secure_Volatile_Reader                                 : aliased RtpsReliableReaderProtocol_T; 
  4179.       Endpoint_Type_Object_LB_Serialization_Threshold        : aliased Long; 
  4180.       Dns_Tracker_Polling_Period                             : aliased Duration_T; 
  4181.       --- <<Private data>> 
  4182.       Sedp_Rely_On_Spdp_Only                                 : aliased Boolean; 
  4183.       Publication_Writer_Latency_Budget                      : aliased LatencyBudgetQosPolicy; 
  4184.       Publication_Writer_Push_On_Write                       : aliased Boolean; 
  4185.       Subscription_Writer_Latency_Budget                     : aliased LatencyBudgetQosPolicy; 
  4186.       Subscription_Writer_Push_On_Write                      : aliased Boolean; 
  4187.       Participant_State_Writer                               : aliased RtpsReliableWriterProtocol_T; 
  4188.       Participant_State_Writer_Latency_Budget                : aliased LatencyBudgetQosPolicy; 
  4189.       Participant_State_Writer_Push_On_Write                 : aliased Boolean; 
  4190.       Participant_State_Writer_Publish_Mode                  : aliased PublishModeQosPolicy; 
  4191.       Participant_Proxy_Reader                               : aliased RtpsReliableReaderProtocol_T; 
  4192.       Participant_Proxy_Reader_Fragmentation_Resource_Limits : aliased DiscoveryBuiltinReaderFragmentationResourceLimits_T; 
  4193.       Plugin_Promiscuity_Kind                                : aliased DiscoveryPluginPromiscuityKind; 
  4194.    end record with Convention => C; 
  4195.    --  <dref>DiscoveryConfigQosPolicy</dref> 
  4196.    --  <dref name="participant_liveliness_lease_duration">DiscoveryConfigQosPolicy_participant_liveliness_lease_duration</dref> 
  4197.    --  <dref name="participant_liveliness_assert_period">DiscoveryConfigQosPolicy_participant_liveliness_assert_period</dref> 
  4198.    --  <dref name="remote_participant_purge_kind">DiscoveryConfigQosPolicy_remote_participant_purge_kind</dref> 
  4199.    --  <dref name="max_liveliness_loss_detection_period">DiscoveryConfigQosPolicy_max_liveliness_loss_detection_period</dref> 
  4200.    --  <dref name="initial_participant_announcements">DiscoveryConfigQosPolicy_initial_participant_announcements</dref> 
  4201.    --  <dref name="min_initial_participant_announcement_period">DiscoveryConfigQosPolicy_min_initial_participant_announcement_period</dref> 
  4202.    --  <dref name="max_initial_participant_announcement_period">DiscoveryConfigQosPolicy_max_initial_participant_announcement_period</dref> 
  4203.    --  <dref name="participant_reader_resource_limits">DiscoveryConfigQosPolicy_participant_reader_resource_limits</dref> 
  4204.    --  <dref name="publication_reader">DiscoveryConfigQosPolicy_publication_reader</dref> 
  4205.    --  <dref name="publication_reader_resource_limits">DiscoveryConfigQosPolicy_publication_reader_resource_limits</dref> 
  4206.    --  <dref name="subscription_reader">DiscoveryConfigQosPolicy_subscription_reader</dref> 
  4207.    --  <dref name="subscription_reader_resource_limits">DiscoveryConfigQosPolicy_subscription_reader_resource_limits</dref> 
  4208.    --  <dref name="publication_writer">DiscoveryConfigQosPolicy_publication_writer</dref> 
  4209.    --  <dref name="publication_writer_data_lifecycle">DiscoveryConfigQosPolicy_publication_writer_data_lifecycle</dref> 
  4210.    --  <dref name="subscription_writer">DiscoveryConfigQosPolicy_subscription_writer</dref> 
  4211.    --  <dref name="subscription_writer_data_lifecycle">DiscoveryConfigQosPolicy_subscription_writer_data_lifecycle</dref> 
  4212.    --  <dref internal="true" name="endpoint_plugin_redundancy_level">DiscoveryConfigQosPolicy_endpoint_plugin_redundancy_level</dref> 
  4213.    --  <dref name="Builtin_Discovery_Plugins">DiscoveryConfigQosPolicy_builtin_discovery_plugins</dref> 
  4214.    --  <dref name="Participant_Message_Reader_Reliability_Kind">DiscoveryConfigQosPolicy_participant_message_reader_reliability_kind</dref> 
  4215.    --  <dref name="participant_message_reader">DiscoveryConfigQosPolicy_participant_message_reader</dref> 
  4216.    --  <dref name="participant_message_writer">DiscoveryConfigQosPolicy_participant_message_writer</dref> 
  4217.    --  <dref name="Publication_Writer_Publish_Mode">DiscoveryConfigQosPolicy_publication_writer_publish_mode</dref> 
  4218.    --  <dref name="Subscription_Writer_Publish_Mode">DiscoveryConfigQosPolicy_subscription_writer_publish_mode</dref> 
  4219.    --  <dref name="Asynchronous_Publisher">DiscoveryConfigQosPolicy_asynchronous_publisher</dref> 
  4220.    --  <dref name="default_domain_announcement_period">DiscoveryConfigQosPolicy_default_domain_announcement_period</dref> 
  4221.    --  <dref name="ignore_default_domain_announcements">DiscoveryConfigQosPolicy_ignore_default_domain_announcements</dref> 
  4222.    --  <dref internal="true" name="Service_Request_Writer_Data_Lifecycle">DiscoveryConfigQosPolicy_Service_Request_Writer_Data_Lifecycle</dref> 
  4223.    --  <dref internal="true" name="Service_Request_Writer_Publish_Mode">DiscoveryConfigQosPolicy_Service_Request_Writer_Publish_Mode</dref> 
  4224.    --  <dref internal="true" name="Service_Request_Reader">DiscoveryConfigQosPolicy_Service_Request_Reader</dref> 
  4225.    --  <dref internal="true" name="Locator_Reachability_Assert_Period">DiscoveryConfigQosPolicy_Locator_Reachability_Assert_Period </dref> 
  4226.    --  <dref internal="true" name="Locator_Reachability_Lease_Duration">DiscoveryConfigQosPolicy_Locator_Reachability_Lease_Duration</dref> 
  4227.    --  <dref internal="true" name="Locator_Reachability_Change_Detection_Period">DiscoveryConfigQosPolicy_Locator_Reachability_Change_Detection_Period</dref> 
  4228.    --  <dref internal="true" name="Secure_Volatile_Writer">DiscoveryConfigQosPolicy_secure_volatile_writer</dref> 
  4229.    --  <dref internal="true" name="Secure_Volatile_Writer_Publish_Mode">DiscoveryConfigQosPolicy_secure_volatile_writer_publish_mode</dref> 
  4230.    --  <dref internal="true" name="Secure_Volatile_Reader">DiscoveryConfigQosPolicy_secure_volatile_reader</dref> 
  4231.    --  <dref internal="true" name="Endpoint_Type_Object_LB_Serialization_Threshold">DiscoveryConfigQosPolicy_Endpoint_Type_Object_LB_Serialization_Threshold</dref> 
  4232.    --  <dref internal="true" name="Dns_Tracker_Polling_Period">DiscoveryConfigQosPolicy_Dns_Tracker_Polling_Period</dref> 
  4233.    --  <dref internal="true" name="sedp_rely_on_spdp_only">DiscoveryConfigQosPolicy_publication_sedp_rely_on_spdp_only</dref> 
  4234.    --  <dref internal="true" name="publication_writer_latency_budget">DiscoveryConfigQosPolicy_publication_writer_latency_budget</dref> 
  4235.    --  <dref internal="true" name="publication_writer_push_on_write">DiscoveryConfigQosPolicy_publication_writer_push_on_write</dref> 
  4236.    --  <dref internal="true" name="subscription_writer_latency_budget">DiscoveryConfigQosPolicy_subscription_writer_latency_budget</dref> 
  4237.    --  <dref internal="true" name="subscription_writer_push_on_write">DiscoveryConfigQosPolicy_subscription_writer_push_on_write</dref> 
  4238.    --  <dref internal="true" name="participant_state_writer">DiscoveryConfigQosPolicy_participant_state_writer</dref> 
  4239.    --  <dref internal="true" name="participant_state_writer_latency_budget">DiscoveryConfigQosPolicy_participant_state_writer_latency_budget</dref> 
  4240.    --  <dref internal="true" name="participant_state_writer_push_on_write">DiscoveryConfigQosPolicy_participant_state_writer_push_on_write</dref> 
  4241.    --  <dref internal="true" name="participant_state_writer_publish_mode">DiscoveryConfigQosPolicy_participant_state_writer_publish_mode</dref> 
  4242.    --  <dref internal="true" name="participant_proxy_reader">DiscoveryConfigQosPolicy_participant_proxy_reader</dref> 
  4243.    --  <dref internal="true" name="participant_proxy_reader_fragmentation_resource_limits">DiscoveryConfigQosPolicy_participant_proxy_reader_fragmentation_resource_limits</dref> 
  4244.    --  <dref internal="true" name="plugin_promiscuity_kind">DiscoveryConfigQosPolicy_plugin_promiscuity_kind</dref> 
  4245.  
  4246.  
  4247.    --   DISCOVERY_CONFIG_QOS_POLICY_DEFAULT : constant DiscoveryConfigQosPolicy := 
  4248.    --                                           (participant_liveliness_lease_duration                  => (100, 0), 
  4249.    --                                            participant_liveliness_assert_period                   => (30, 0), 
  4250.    --                                            remote_participant_purge_kind                          => LIVELINESS_BASED_REMOTE_PARTICIPANT_PURGE, 
  4251.    --                                            max_liveliness_loss_detection_period                   => (60, 0), 
  4252.    --                                            initial_participant_announcements                      => 5, 
  4253.    --                                            min_initial_participant_announcement_period            => (1, 0), 
  4254.    --                                            max_initial_participant_announcement_period            => (1, 0), 
  4255.    --                                            participant_reader_resource_limits                     => 
  4256.    --                                              BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT, 
  4257.    --                                            publication_reader                                     => 
  4258.    --                                              RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4259.    --                                            publication_reader_resource_limits                     => 
  4260.    --                                              BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT, 
  4261.    --                                            subscription_reader                                    => 
  4262.    --                                              RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4263.    --                                            subscription_reader_resource_limits                    => 
  4264.    --                                              BUILTIN_TOPIC_READER_RESOURCE_LIMITS_DEFAULT, 
  4265.    --                                            publication_writer                                     => 
  4266.    --                                              RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4267.    --                                            publication_writer_data_lifecycle                      => 
  4268.    --                                              WRITER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT, 
  4269.    --                                            subscription_writer                                    => 
  4270.    --                                              RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4271.    --                                            subscription_writer_data_lifecycle                     => 
  4272.    --                                              WRITER_DATA_LIFECYCLE_QOS_POLICY_DEFAULT, 
  4273.    --                                            endpoint_plugin_redundancy_level                       => -1, 
  4274.    --                                            Builtin_Discovery_Plugins                              => 
  4275.    --                                              DISCOVERYCONFIG_BUILTIN_PLUGIN_MASK_DEFAULT, 
  4276.    --                                            participant_message_reader                             => 
  4277.    --                                              RTPS_PARTICIPANT_MESSAGE_READER_DISCOVERY_CONFIG_DEFAULT, 
  4278.    --                                            participant_message_writer                             => 
  4279.    --                                              RTPS_PARTICIPANT_MESSAGE_WRITER_DISCOVERY_CONFIG_DEFAULT, 
  4280.    --                                            Publication_Writer_Publish_mode                        => 
  4281.    --                                               (Kind                      => PUBLISH_MODE_QOS_POLICY_DEFAULT.Kind, 
  4282.    --                                                Flow_Controller_Name      => (data => PUBLISH_MODE_QOS_POLICY_DEFAULT.Flow_Controller_Name.data), 
  4283.    --                                                Priority                  => PUBLISH_MODE_QOS_POLICY_DEFAULT.Priority), 
  4284.    --                                            Subscription_Writer_Publish_mode                       => 
  4285.    --                                               (Kind                      => PUBLISH_MODE_QOS_POLICY_DEFAULT.Kind, 
  4286.    --                                                Flow_Controller_Name      => (data => PUBLISH_MODE_QOS_POLICY_DEFAULT.Flow_Controller_Name.data), 
  4287.    --                                                Priority                  => PUBLISH_MODE_QOS_POLICY_DEFAULT.Priority), 
  4288.    --                                            Asynchronous_Publisher                                 => 
  4289.    --                                                (Disable_Asynchronous_Write => FALSE, 
  4290.    --                                                 Thread                     => ( 
  4291.    --                                 (Mask         => THREAD_SETTINGS_OPTION_DEFAULT, 
  4292.    --                                  Priority     => Long (RTIDDS.Osapi_Thread.PRIORITY_DEFAULT), 
  4293.    --                                  Stack_Size   => Long (RTIDDS.Osapi_Thread.STACK_SIZE_DEFAULT), 
  4294.    --                                  Cpu_List     => DDS.Long_Seq.DEFAULT_SEQUENCE, 
  4295.    --                                  Cpu_Rotation => THREAD_SETTINGS_CPU_ROTATION_DEFAULT)), 
  4296.    --                                                 disable_asynchronous_batch => False, 
  4297.    --                                                 asynchronous_batch_thread  => ( 
  4298.    --                                 (Mask         => THREAD_SETTINGS_OPTION_DEFAULT, 
  4299.    --                                  Priority     => Long (RTIDDS.Osapi_Thread.PRIORITY_DEFAULT), 
  4300.    --                                  Stack_Size   => Long (RTIDDS.Osapi_Thread.STACK_SIZE_DEFAULT), 
  4301.    --                                  Cpu_List     => DDS.Long_Seq.DEFAULT_SEQUENCE, 
  4302.    --                                  Cpu_Rotation => THREAD_SETTINGS_CPU_ROTATION_DEFAULT)), 
  4303.    --                                                 asynchronous_batch_blocking_kind => 0), 
  4304.    --                                            --   /***************** HIDDEN FROM USER ********************************/ 
  4305.    --                                            sedp_rely_on_spdp_only                                 => False, 
  4306.    --                                            publication_writer_latency_budget                      => 
  4307.    --                                              LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  4308.    --                                            publication_writer_push_on_write                       => True, 
  4309.    --                                            subscription_writer_latency_budget                     => 
  4310.    --                                              LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  4311.    --                                            subscription_writer_push_on_write                      => True, 
  4312.    --                                            participant_state_writer 
  4313.    --                                                                                                   => RTPS_RELIABLE_WRITER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4314.    --                                            participant_state_writer_latency_budget                => 
  4315.    --                                              LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  4316.    --                                            participant_state_writer_push_on_write                 => True, 
  4317.    --                                            participant_state_writer_publish_mode                  => 
  4318.    --                                               (Kind                      => PUBLISH_MODE_QOS_POLICY_DEFAULT.Kind, 
  4319.    --                                                Flow_Controller_Name      => (data => PUBLISH_MODE_QOS_POLICY_DEFAULT.Flow_Controller_Name.data), 
  4320.    --                                                Priority                  => PUBLISH_MODE_QOS_POLICY_DEFAULT.Priority), 
  4321.    --                                            participant_proxy_reader                               => 
  4322.    --                                              RTPS_RELIABLE_READER_PROTOCOL_DISCOVERY_CONFIG_DEFAULT, 
  4323.    --                                            participant_proxy_reader_fragmentation_resource_limits => 
  4324.    --                                              DISCOVERY_BUILTIN_READER_FRAGMENTATION_RESOURCE_LIMITS_DEFAULT, 
  4325.    --                                            plugin_promiscuity_kind                                => 
  4326.    --                                              DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY); 
  4327.    --  <dref internal="true"></dref> 
  4328.  
  4329.    --  ---------------------------------------------------------- 
  4330.    --                  USEROBJECT (eXtension QoS) 
  4331.    --  ---------------------------------------------------------- 
  4332.  
  4333.    USEROBJECT_QOS_POLICY_NAME    : constant DDS.String := To_DDS_String ("UserObject"); 
  4334.    --  <defgroup internal="true">UserObjectQosGroupDocs</defgroup> 
  4335.    --  <dref internal="true">USEROBJECT_QOS_POLICY_NAME</dref> 
  4336.  
  4337.    type UserObjectQosPolicy is record 
  4338.       Participant_User_Object            : aliased UserObjectSettings_T; 
  4339.       Topic_User_Object                  : aliased UserObjectSettings_T; 
  4340.       Content_Filtered_Topic_User_Object : aliased UserObjectSettings_T; 
  4341.       Publisher_User_Object              : aliased UserObjectSettings_T; 
  4342.       Data_Writer_User_Object            : aliased UserObjectSettings_T; 
  4343.       Subscriber_User_Object             : aliased UserObjectSettings_T; 
  4344.       Data_Reader_User_Object            : aliased UserObjectSettings_T; 
  4345.       Read_Condition_User_Object         : aliased UserObjectSettings_T; 
  4346.       Query_Condition_User_Object        : aliased UserObjectSettings_T; 
  4347.       Index_Condition_User_Object        : aliased UserObjectSettings_T; 
  4348.       Flow_Controller_User_Object        : aliased UserObjectSettings_T; 
  4349.    end record with Convention => C; 
  4350.    --  <dref internal="true">UserObjectQosPolicy</dref> 
  4351.    --  <dref internal="true" name="Participant_User_Object">UserObjectQosPolicy_participant_user_object</dref> 
  4352.    --  <dref internal="true" name="Topic_User_Object">UserObjectQosPolicy_topic_user_object</dref> 
  4353.    --  <dref internal="true" name="Content_Filtered_Topic_User_Object">UserObjectQosPolic_content_filtered_topic_user_object</dref> 
  4354.    --  <dref internal="true" name="Publisher_User_Object">UserObjectQosPolicy_publisher_user_object</dref> 
  4355.    --  <dref internal="true" name="Data_Writer_User_Object">UserObjectQosPolicy_data_writer_user_object</dref> 
  4356.    --  <dref internal="true" name="Subscriber_User_Object">UserObjectQosPolicy_subscriber_user_object</dref> 
  4357.    --  <dref internal="true" name="Data_Reader_User_Object">UserObjectQosPolicy_data_reader_user_object</dref> 
  4358.    --  <dref internal="true" name="Read_Condition_User_Object">UserObjectQosPolicy_read_condition_user_object</dref> 
  4359.    --  <dref internal="true" name="Query_Condition_User_Object">UserObjectQosPolicy_query_condition_user_object</dref> 
  4360.    --  <dref internal="true" name="Index_Condition_User_Object">UserObjectQosPolicy_index_condition_user_object</dref> 
  4361.    --  <dref internal="true" name="Flow_Controller_User_Object">UserObjectQosPolicy_flow_controller_user_object</dref> 
  4362.  
  4363.    USER_OBJECT_QOS_POLICY_DEFAULT : constant UserObjectQosPolicy := 
  4364.                                       (others => (0, 0)); 
  4365.    --  <dref internal="true"></dref> 
  4366.  
  4367.    --  ---------------------------------------------------------- 
  4368.    --                  EXCLUSIVEAREA (eXtension QoS) 
  4369.    --  ---------------------------------------------------------- 
  4370.  
  4371.    EXCLUSIVEAREA_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("ExclusiveArea"); 
  4372.    --  <defgroup>ExclusiveAreaQosGroupDocs</defgroup> 
  4373.    --  <dref>EXCLUSIVEAREA_QOS_POLICY_NAME</dref> 
  4374.  
  4375.    type ExclusiveAreaQosPolicy is record 
  4376.       Use_Shared_Exclusive_Area : aliased DDS.Boolean; 
  4377.       Level                     : aliased DDS.Long; 
  4378.    end record with Convention => C; 
  4379.    --  <dref>ExclusiveAreaQosPolicy</dref> 
  4380.    --  <dref name="User_Shared_Exclusive_Area">ExclusiveAreaQosPolicy_use_shared_exclusive_area</dref> 
  4381.    --  <dref internal="true" name="Level">ExclusiveAreaQosPolicy_level</dref> 
  4382.  
  4383.    EXCLUSIVE_AREA_AUTO_LEVEL     : constant DDS.Long := -1; 
  4384.    --  <dref internal="true">ExclusiveAreaQosPolicy_AUTO_LEVEL</dref> 
  4385.  
  4386.    EXCLUSIVE_AREA_QOS_POLICY_DEFAULT : constant ExclusiveAreaQosPolicy := 
  4387.                                          (Use_Shared_Exclusive_Area => False, 
  4388.                                           Level                     => EXCLUSIVE_AREA_AUTO_LEVEL); 
  4389.    --  <dref internal="true"></dref> 
  4390.  
  4391.    --  ---------------------------------------------------------- 
  4392.    --                  DATAWRITERTRANSFERMODE 
  4393.    --  ---------------------------------------------------------- 
  4394.  
  4395.    DATAWRITERTRANSFERMODE_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("DataWriterTransferMode"); 
  4396.    --  <defgroup>DataWriterTransferModeQosGroupDocs</defgroup> 
  4397.    --  <dref>DATAWRITERTRANSFERMODE_QOS_POLICY_NAME</dref> 
  4398.  
  4399.    type DataWriterShmemRefTransferModeSettings is record 
  4400.       Enable_Data_Consistency_Check : aliased DDS.Boolean; 
  4401.    end record with Convention => C; 
  4402.    --  <dref>DataWriterShmemRefTransferModeSettings</dref> 
  4403.    --  <dref name="Enable_Data_Consistency_Check">DataWriterShmemRefTransferModeSettings_enable_data_consistency_check</dref> 
  4404.  
  4405.    DataWriterShmemRefTransferModeSettings_INITIALIZER : constant DataWriterShmemRefTransferModeSettings := 
  4406.       (Enable_Data_Consistency_Check => True); 
  4407.  
  4408.    type DataWriterShmemRefTransferModeSettings_Access is access all DataWriterShmemRefTransferModeSettings; 
  4409.  
  4410.    function DataWriterShmemRefTransferModeSettings_Equals 
  4411.       (Self  : in DataWriterShmemRefTransferModeSettings_Access; 
  4412.        Other : in DataWriterShmemRefTransferModeSettings_Access) 
  4413.       return DDS.Boolean; 
  4414.    --  <dref internal="true">DataWriterShmemRefTransferModeSettings_Equals</dref> 
  4415.  
  4416.    pragma Warnings (Off, DataWriterShmemRefTransferModeSettings_Equals); 
  4417.    pragma Import (C, DataWriterShmemRefTransferModeSettings_Equals, "DDS_DataWriterShmemRefTransferModeSettings_equals"); 
  4418.  
  4419.    type DataWriterTransferModeQosPolicy is record 
  4420.       Shmem_Ref_Settings : aliased DataWriterShmemRefTransferModeSettings; 
  4421.    end record with Convention => C; 
  4422.    --  <dref>DataWriterTransferModeQosPolicy</dref> 
  4423.    --  <dref name="Shmem_Ref_Settings">DataWriterTransferModeQosPolicy_shmem_ref_settings</dref> 
  4424.  
  4425.    DataWriterTransferModeQosPolicy_INITIALIZER : constant DataWriterTransferModeQosPolicy := 
  4426.       (Shmem_Ref_Settings => DataWriterShmemRefTransferModeSettings_INITIALIZER); 
  4427.  
  4428.    type DataWriterTransferModeQosPolicy_Access is access all DataWriterTransferModeQosPolicy; 
  4429.  
  4430.    function DataWriterTransferModeQosPolicy_equals 
  4431.       (Self  : in DataWriterTransferModeQosPolicy_Access; 
  4432.        Other : in DataWriterTransferModeQosPolicy_Access) 
  4433.       return DDS.Boolean; 
  4434.    --  <dref internal="true">DataWriterTransferModeQosPolicy_equals</dref> 
  4435.  
  4436.    pragma Warnings (Off, DataWriterTransferModeQosPolicy_equals); 
  4437.    pragma Import (C, DataWriterTransferModeQosPolicy_equals, "DDS_DataWriterTransferModeQosPolicy_equals"); 
  4438.  
  4439.    --  ---------------------------------------------------------- 
  4440.    --                  TOPICQUERYDISPATCH (eXtension QoS) 
  4441.    --  ---------------------------------------------------------- 
  4442.  
  4443.    TOPIC_QUERY_DISPATCH_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TopicQueryDispatch"); 
  4444.    --  <defgroup>TopicQueryDispatchQosGroupDocs</defgroup> 
  4445.    --  <dref>TOPICQUERYDISPATCH_QOS_POLICY_NAME</dref> 
  4446.  
  4447.    type TopicQueryDispatchQosPolicy is record 
  4448.       Enable                      : aliased DDS.Boolean; 
  4449.       Publication_Period          : aliased Duration_T; 
  4450.       Samples_Per_Period          : aliased DDS.Long; 
  4451.    end record with Convention => C; 
  4452.    --  <dref>TopicQueryDispatchQosPolicy</dref> 
  4453.    --  <dref name="Publication_Period">TopicQueryDispatchQosPolicy_publication_period</dref> 
  4454.    --  <dref name="Samples_Per_Period">TopicQueryDispatchQosPolicy_samples_per_period</dref> 
  4455.  
  4456.    TOPIC_QUERY_DISPATCH_QOS_POLICY_DEFAULT : constant TopicQueryDispatchQosPolicy := 
  4457.                                                ( 
  4458.                                                 Enable                      => False, 
  4459.                                                 Publication_Period          => (16#0000_0001#, 16#0000_0000#), 
  4460.                                                 Samples_Per_Period          => -1 
  4461.                                                ); 
  4462.    --  <dref internal="true"></dref> 
  4463.  
  4464.    --  ---------------------------------------------------------- 
  4465.    --                  BATCH (eXtension QoS) 
  4466.    --  ---------------------------------------------------------- 
  4467.  
  4468.    BATCH_QOS_POLICY_NAME         : constant DDS.String := To_DDS_String ("Batch"); 
  4469.    --  <defgroup>BatchQosGroupDocs</defgroup> 
  4470.    --  <dref>BATCH_QOS_POLICY_NAME</dref> 
  4471.  
  4472.    type BatchQosPolicy is record 
  4473.       Enable                      : aliased DDS.Boolean; 
  4474.       Max_Data_Bytes              : aliased DDS.Long; 
  4475.       Max_Meta_Data_Bytes         : aliased DDS.Long; 
  4476.       Max_Samples                 : aliased DDS.Long; 
  4477.       Max_Flush_Delay             : aliased Duration_T; 
  4478.       Source_Timestamp_Resolution : aliased Duration_T; 
  4479.       Thread_Safe_Write           : aliased DDS.Boolean; 
  4480.    end record with Convention => C; 
  4481.    --  <dref>BatchQosPolicy</dref> 
  4482.    --  <dref name="enable">BatchQosPolicy_enable</dref> 
  4483.    --  <dref name="max_data_bytes">BatchQosPolicy_max_data_bytes</dref> 
  4484.    --  <dref internal="true" name="max_meta_data_bytes">BatchQosPolicy_max_meta_data_bytes</dref> 
  4485.    --  <dref name="max_samples">BatchQosPolicy_max_samples</dref> 
  4486.    --  <dref name="max_flush_delay">BatchQosPolicy_max_flush_delay</dref> 
  4487.    --  <dref name="source_timestamp_resolution">BatchQosPolicy_source_timestamp_resolution</dref> 
  4488.    --  <dref name="thread_safe_write">BatchQosPolicy_thread_safe_write</dref> 
  4489.  
  4490.    BATCH_QOS_POLICY_DEFAULT      : constant BatchQosPolicy := 
  4491.                                      ( 
  4492.                                       Enable                      => False, 
  4493.                                       Max_Data_Bytes              => 1024, 
  4494.                                       Max_Meta_Data_Bytes         => LENGTH_UNLIMITED, 
  4495.                                       Max_Samples                 => LENGTH_UNLIMITED, 
  4496.                                       Max_Flush_Delay             => (16#7FFF_FFFF#, 16#7FFF_FFFF#), 
  4497.                                       Source_Timestamp_Resolution => (16#7FFF_FFFF#, 16#7FFF_FFFF#), 
  4498.                                       Thread_Safe_Write           => True 
  4499.                                      ); 
  4500.    --  <dref internal="true"></dref> 
  4501.  
  4502.    --  ---------------------------------------------------------- 
  4503.    --       TYPE_CONSISTENCY_ENFORCEMENT (XTYPES) 
  4504.    --  ---------------------------------------------------------- 
  4505.  
  4506.    TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("TypeConsistencyEnforcement"); 
  4507.    --  <defgroup>TypeConsistencyEnforcementQosGroupDocs</defgroup> 
  4508.    --  <dref>TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_NAME</dref> 
  4509.  
  4510.    type TypeConsistencyKind is new Unsigned_Long; 
  4511.    --  <dref>TypeConsistencyKind</dref> 
  4512.  
  4513.    DISALLOW_TYPE_COERCION        : constant TypeConsistencyKind := 0; 
  4514.    --  <dref>TypeConsistencyKind_DISALLOW_TYPE_COERCION</dref> 
  4515.  
  4516.    ALLOW_TYPE_COERCION           : constant TypeConsistencyKind := 1; 
  4517.    --  <dref>TypeConsistencyKind_ALLOW_TYPE_COERCION</dref> 
  4518.  
  4519.    AUTO_TYPE_COERCION            : constant TypeConsistencyKind := 2; 
  4520.    --  <dref>TypeConsistencyKind_AUTO_TYPE_COERCION</dref> 
  4521.  
  4522.    type TypeConsistencyEnforcementQosPolicy is record 
  4523.       Kind                      : aliased TypeConsistencyKind; 
  4524.       Ignore_Sequence_Bounds    : aliased Boolean; 
  4525.       Ignore_String_Bounds      : aliased Boolean; 
  4526.       Ignore_Member_Names       : aliased Boolean; 
  4527.       Prevent_Type_Widening     : aliased Boolean; 
  4528.       Force_Type_Validation     : aliased Boolean; 
  4529.       Ignore_Enum_Literal_Names : aliased Boolean; 
  4530.    end record with Convention => C; 
  4531.    --  <dref>TypeConsistencyEnforcementQosPolicy</dref> 
  4532.    --  <dref name="kind">TypeConsistencyEnforcementQosPolicy_kind</dref> 
  4533.    --  <dref name="Ignore_Sequence_Bounds">TypeConsistencyEnforcementQosPolicy_ignore_sequence_bounds</dref> 
  4534.    --  <dref name="Ignore_String_Bounds">TypeConsistencyEnforcementQosPolicy_ignore_string_bounds</dref> 
  4535.    --  <dref name="Ignore_Member_Names">TypeConsistencyEnforcementQosPolicy_ignore_member_names</dref> 
  4536.    --  <dref name="Prevent_Type_Widening">TypeConsistencyEnforcementQosPolicy_prevent_type_widening</dref> 
  4537.    --  <dref name="Force_Type_Validation">TypeConsistencyEnforcementQosPolicy_force_type_validation</dref> 
  4538.    --  <dref name="Ignore_Enum_Literal_Names">TypeConsistencyEnforcementQosPolicy_ignore_enum_literal_names</dref> 
  4539.  
  4540.    TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_DEFAULT : constant TypeConsistencyEnforcementQosPolicy := 
  4541.                                                        ( 
  4542.                                                         Kind => ALLOW_TYPE_COERCION, 
  4543.                                                         Ignore_Sequence_Bounds => False, 
  4544.                                                         Ignore_String_Bounds => False, 
  4545.                                                         Ignore_Member_Names => False, 
  4546.                                                         Prevent_Type_Widening => False, 
  4547.                                                         Force_Type_Validation => False, 
  4548.                                                         Ignore_Enum_Literal_Names => False 
  4549.                                                        ); 
  4550.    --  <dref internal="true"></dref> 
  4551.  
  4552.    --  ---------------------------------------------------------- 
  4553.    --                  LOCATORFILTER (eXtension QoS) 
  4554.    --  ---------------------------------------------------------- 
  4555.  
  4556.    type LocatorFilter_T is record 
  4557.       Locators          : aliased Locator_Seq.Sequence; 
  4558.       Filter_Expression : DDS.String; 
  4559.    end record with Convention => C; 
  4560.    --  <defgroup>LocatorFilterQosGroupDocs</defgroup> 
  4561.    --  <dref>LocatorFilter_t</dref> 
  4562.    --  <dref name="locators">LocatorFilter_t_locators</dref> 
  4563.    --  <dref name="filter_expression">LocatorFilter_t_filter_expression</dref> 
  4564.  
  4565.  
  4566.    type LocatorFilter_T_Access is access all LocatorFilter_T; 
  4567.    type LocatorFilter_T_Array is array 
  4568.      (Natural range <>) of aliased LocatorFilter_T; 
  4569.    procedure Initialize (Self : in out LocatorFilter_T); 
  4570.    procedure Finalize (Self : in out LocatorFilter_T); 
  4571.    procedure Copy (Dst : in out LocatorFilter_T; 
  4572.                    Src : in LocatorFilter_T); 
  4573.    package LocatorFilter_Seq is new DDS_Support.Sequences_Generic 
  4574.      (LocatorFilter_T, 
  4575.       LocatorFilter_T_Access, 
  4576.       DDS.Natural, 
  4577.       1, 
  4578.       LocatorFilter_T_Array); 
  4579.    --  <dref>LocatorFilterSeq</dref> 
  4580.  
  4581.    LOCATORFILTER_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("LocatorFilter"); 
  4582.    --  <dref>LOCATORFILTER_QOS_POLICY_NAME</dref> 
  4583.  
  4584.    type LocatorFilterQosPolicy is record 
  4585.       Locator_Filters : aliased DDS.LocatorFilter_Seq.Sequence; 
  4586.       Filter_Name     : aliased DDS.String; 
  4587.    end record with Convention => C; 
  4588.    --  <dref>LocatorFilterQosPolicy</dref> 
  4589.    --  <dref name="locator_filters">LocatorFilterQosPolicy_locator_filters</dref> 
  4590.    --  <dref name="filer_name">LocatorFilterQosPolicy_filter_name</dref> 
  4591.  
  4592.    --     LOCATOR_FILTER_QOS_POLICY_DEFAULT : constant LocatorFilterQosPolicy := 
  4593.    --       ( 
  4594.    --        locator_filters => DDS.LocatorFilter_Seq.DEFAULT_SEQUENCE, 
  4595.    --        filter_name => DDS.NULL_STRING 
  4596.    --       ); 
  4597.  
  4598.    --  ---------------------------------------------------------- 
  4599.    --                  MULTICHANNEL (eXtension QoS) 
  4600.    --  ---------------------------------------------------------- 
  4601.  
  4602.    type ChannelSettings_T is record 
  4603.       Multicast_Settings : aliased TransportMulticastSettings_Seq.Sequence; 
  4604.       Filter_Expression  : DDS.String; 
  4605.       Priority           : DDS.Long; 
  4606.    end record with Convention => C; 
  4607.    --  <defgroup>MultiChannelQosGroupDocs</defgroup> 
  4608.    --  <dref>ChannelSettings_t</dref> 
  4609.    --  <dref name="multicast_settings">ChannelSettings_t_multicast_settings</dref> 
  4610.    --  <dref name="filter_expression">ChannelSettings_t_filter_expression</dref> 
  4611.    --  <dref name="priority">ChannelSettings_t_priority</dref> 
  4612.  
  4613.    type ChannelSettings_T_Access is access all ChannelSettings_T; 
  4614.    type ChannelSettings_T_Array is array 
  4615.      (Natural range <>) of aliased ChannelSettings_T; 
  4616.    procedure Initialize (Self : in out ChannelSettings_T); 
  4617.    procedure Finalize (Self : in out ChannelSettings_T); 
  4618.    procedure Copy (Dst : in out ChannelSettings_T; 
  4619.                    Src : in ChannelSettings_T); 
  4620.  
  4621.    package ChannelSettings_Seq is new DDS_Support.Sequences_Generic 
  4622.      (ChannelSettings_T, 
  4623.       ChannelSettings_T_Access, 
  4624.       DDS.Natural, 
  4625.       1, 
  4626.       ChannelSettings_T_Array); 
  4627.    --  <dref>ChannelSettingsSeq</dref> 
  4628.  
  4629.    MULTICHANNEL_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("MultiChannel"); 
  4630.    --  <dref>MULTICHANNEL_QOS_POLICY_NAME</dref> 
  4631.  
  4632.    type MultiChannelQosPolicy is record 
  4633.       Channels    : aliased DDS.ChannelSettings_Seq.Sequence; 
  4634.       Filter_Name : aliased DDS.String; 
  4635.    end record with Convention => C; 
  4636.    --  <dref>MultiChannelQosPolicy</dref> 
  4637.    --  <dref name="channels">MultiChannelQosPolicy_channels</dref> 
  4638.    --  <dref name="filter_name">MultiChannelQosPolicy_filter_name</dref> 
  4639.  
  4640.  
  4641.    --     MULTICHANNEL_QOS_POLICY_DEFAULT : constant MultiChannelQosPolicy := 
  4642.    --       ( 
  4643.    --        channels    => DDS.ChannelSettings_Seq.DEFAULT_SEQUENCE, 
  4644.    --        filter_name => DDS.NULL_STRING 
  4645.    --       ); 
  4646.  
  4647.    --  ---------------------------------------------------------- 
  4648.    --                  PROPERTY (eXtension QoS) 
  4649.    --  ---------------------------------------------------------- 
  4650.  
  4651.    type Property_T is record 
  4652.       Name      : aliased DDS.String; 
  4653.       Value     : aliased DDS.String; 
  4654.       Propagate : aliased DDS.Boolean; 
  4655.    end record with Convention => C; 
  4656.    --  <defgroup>PropertyQosGroupDocs</defgroup> 
  4657.    --  <dref>Property_t</dref> 
  4658.    --  <dref name="Name">Property_t_name</dref> 
  4659.    --  <dref name="Value">Property_t_value</dref> 
  4660.    --  <dref name="Propagate">Property_t_propagate</dref> 
  4661.  
  4662.    type Property_T_Access is access all Property_T; 
  4663.  
  4664.    type Property_T_Array is array (Natural range <>) of aliased Property_T; 
  4665.    procedure Initialize (Self  : in out Property_T); 
  4666.    procedure Finalize (Self  : in out Property_T); 
  4667.    procedure Copy (Dst : in out Property_T; Src : in Property_T); 
  4668.  
  4669.    package Property_T_Seq is new DDS_Support.Sequences_Generic 
  4670.      (Property_T, 
  4671.       Property_T_Access, 
  4672.       DDS.Natural, 
  4673.       1, 
  4674.       Property_T_Array); 
  4675.    --  <dref>PropertySeq</dref> 
  4676.  
  4677.    type Property_T_Seq_Access is access all Property_T_Seq.Sequence; 
  4678.  
  4679.    PROPERTY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Property"); 
  4680.    --  <dref>PROPERTY_QOS_POLICY_NAME</dref> 
  4681.  
  4682.    type PropertyQosPolicy is record 
  4683.       Value :  aliased Property_T_Seq.Sequence; 
  4684.    end record with Convention => C; 
  4685.    --  <dref>PropertyQosPolicy</dref> 
  4686.    --  <dref name="Value">PropertyQosPolicy_value</dref> 
  4687.  
  4688.    type PropertyQosPolicy_Access is access all PropertyQosPolicy; 
  4689.  
  4690.    PROPERTY_QOS_POLICY_DEFAULT : constant PropertyQosPolicy := 
  4691.                                    (Value => Property_T_Seq.DEFAULT_SEQUENCE); 
  4692.  
  4693.  
  4694.  
  4695.    function Contains (P    : PropertyQosPolicy; 
  4696.                       Name : Standard.String) return Boolean; 
  4697.    function Contains (P    : PropertyQosPolicy; 
  4698.                       Name : DDS.String) return Boolean; 
  4699.  
  4700.    function Length (P : PropertyQosPolicy) return Natural; 
  4701.  
  4702.    procedure Append (P         : in out PropertyQosPolicy; 
  4703.                      Name      : Standard.String; 
  4704.                      Value     : Standard.String; 
  4705.                      Propagate : Boolean := False); 
  4706.    procedure Append (P         : in out PropertyQosPolicy; 
  4707.                      Name      : DDS.String; 
  4708.                      Value     : DDS.String; 
  4709.                      Propagate : Boolean := False); 
  4710.  
  4711.    procedure Delete (P : in out PropertyQosPolicy; Name : Standard.String); 
  4712.    procedure Delete (P : in out PropertyQosPolicy; Name : DDS.String); 
  4713.  
  4714.    function Get (P    : PropertyQosPolicy; 
  4715.                  Name : Standard.String) return Standard.String; 
  4716.    function Get (P    : PropertyQosPolicy; 
  4717.                  Name : DDS.String) return DDS.String; 
  4718.  
  4719.    procedure Add_Property (Policy    : in PropertyQosPolicy_Access; 
  4720.                            Name      : in Standard.String; 
  4721.                            Value     : in Standard.String; 
  4722.                            Propagate : in DDS.Boolean); 
  4723.    --  <dref>PropertyQosPolicyHelper_add_property</dref> 
  4724.  
  4725.    procedure Remove_Property (Policy    : in PropertyQosPolicy_Access; 
  4726.                               Name      : in Standard.String); 
  4727.    --  <dref>PropertyQosPolicyHelper_remove_property</dref> 
  4728.  
  4729.    --  ---------------------------------------------------------- 
  4730.    --                  WaitSetProperty_t 
  4731.    --  ---------------------------------------------------------- 
  4732.  
  4733.    type WaitSetProperty_T is record 
  4734.       Max_Event_Count : aliased Long; 
  4735.       Max_Event_Delay : aliased Duration_T; 
  4736.    end record with Convention => C; 
  4737.    --  <dref>WaitSetProperty_t</dref> 
  4738.    --  <dref name="max_event_count">WaitSetProperty_t_max_event_count</dref> 
  4739.    --  <dref name="max_event_delay">WaitSetProperty_t_max_event_delay</dref> 
  4740.  
  4741.  
  4742.    --  ---------------------------------------------------------- 
  4743.    --                  EndpointGroup_t 
  4744.    --  ---------------------------------------------------------- 
  4745.  
  4746.    type EndpointGroup_T is record 
  4747.       Role_Name    : aliased DDS.String; 
  4748.       Quorum_Count : aliased Integer := 0; 
  4749.    end record with Convention => C; 
  4750.    --  <dref>EndpointGroup_t</dref> 
  4751.    --  <dref name="role_name">EndpointGroup_t_role_name</dref> 
  4752.    --  <dref name="quorum_count">EndpointGroup_t_quorum_count</dref> 
  4753.  
  4754.    type EndpointGroup_T_Access is access all EndpointGroup_T; 
  4755.  
  4756.    type EndpointGroup_T_Array is array (Natural range <>) of aliased EndpointGroup_T; 
  4757.  
  4758.    pragma Convention (C, EndpointGroup_T_Array); 
  4759.  
  4760.    procedure Initialize (Self  : in out EndpointGroup_T); 
  4761.    procedure Finalize (Self  : in out EndpointGroup_T); 
  4762.    procedure Copy (Dst : in out EndpointGroup_T; Src : in EndpointGroup_T); 
  4763.  
  4764.    package EndpointGroup_T_Seq is new DDS_Support.Sequences_Generic 
  4765.      (Element        => EndpointGroup_T, 
  4766.       Element_Access => EndpointGroup_T_Access, 
  4767.       Index_Type     => Natural, 
  4768.       First_Element  => 1, 
  4769.       Element_Array  => EndpointGroup_T_Array); 
  4770.    --  <dref>EndpointGroupSeq</dref> 
  4771.  
  4772.    type EndpointGroup_T_Seq_Access is access all EndpointGroup_T_Seq.Sequence; 
  4773.  
  4774.    --  ---------------------------------------------------------- 
  4775.    --                  AvailabilityQosPolicy 
  4776.    --  ---------------------------------------------------------- 
  4777.  
  4778.    type AvailabilityQosPolicy is record 
  4779.       Enable_Required_Subscriptions          : aliased Boolean := False; 
  4780.       Max_Data_Availability_Waiting_Time     : aliased Duration_T := (1, 0); 
  4781.       Max_Endpoint_Availability_Waiting_Time : aliased Duration_T := (1, 0); 
  4782.       Required_Matched_Endpoint_Groups       : aliased EndpointGroup_T_Seq.Sequence; 
  4783.    end record with Convention => C; 
  4784.    --  <defgroup>AvailabilityQosGroupDocs</defgroup> 
  4785.    --  <dref >AvailabilityQosPolicy</dref> 
  4786.    --  <dref name="enable_required_subscriptions">AvailabilityQosPolicy_enable_required_subscriptions</dref> 
  4787.    --  <dref name="max_data_availability_waiting_time">AvailabilityQosPolicy_max_data_availability_waiting_time</dref> 
  4788.    --  <dref name="max_endpoint_availability_waiting_time">AvailabilityQosPolicy_max_endpoint_availability_waiting_time</dref> 
  4789.    --  <dref name="required_matched_endpoint_groups">AvailabilityQosPolicy_required_matched_endpoint_groups</dref> 
  4790.  
  4791.    AVAILABILITY_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("Availability"); 
  4792.    --  <dref>AVAILABILITY_QOS_POLICY_NAME</dref> 
  4793.  
  4794.    --  #define DDS_AVAILABILITY_QOS_POLICY_DEFAULT { 
  4795.    --  { 0xffffffffL, 0UL }, /* max_data_availability_waiting_time */\ 
  4796.    --  { 0xffffffffL, 0UL }, /* max_endpoint_availability_waiting_time */ \ 
  4797.    --  EndpointGroup_T_Seq.Sequence.DEFAULT_SEQUENCE /* required_matched_endpoint_groups */ \ 
  4798.  
  4799.    --  package QosPolicyCount_Seq is new DDS_Support.Sequences_Generic 
  4800.    --  (QosPolicyCount, 
  4801.    --   QosPolicyCount_Access, 
  4802.    --   DDS.Natural, 
  4803.    --   1, 
  4804.    --   QosPolicyCount_Array); 
  4805.    --  <dref>QosPolicyCountSeq</dref> 
  4806.  
  4807.    --  ---------------------------------------------------------- 
  4808.    --                  ContentFilterProperty_t 
  4809.    --  ---------------------------------------------------------- 
  4810.  
  4811.    type ContentFilterProperty_T is record 
  4812.       Content_Filter_Topic_Name : aliased DDS.String; 
  4813.       Related_Topic_Name        : aliased DDS.String; 
  4814.       Filter_Class_Name         : aliased DDS.String; 
  4815.       Filter_Expression         : aliased DDS.String; 
  4816.       Expression_Parameters     : aliased DDS.String_Seq.Sequence; 
  4817.    end record with Convention => C; 
  4818.    --  <dref>ContentFilterProperty_t</dref> 
  4819.    --  <dref name="Content_Filter_Topic_Name">ContentFilterProperty_t_content_filter_topic_name</dref> 
  4820.    --  <dref name="Related_Topic_Name">ContentFilterProperty_t_related_topic_name</dref> 
  4821.    --  <dref name="Filter_Class_Name">ContentFilterProperty_t_filter_class_name</dref> 
  4822.    --  <dref name="Filter_Expression">ContentFilterProperty_t_filter_expression</dref> 
  4823.    --  <dref name="Expression_Parameters">ContentFilterProperty_t_expression_parameters</dref> 
  4824.  
  4825.    --     CONTENT_FILTER_PROPERTY_DEFAULT : constant ContentFilterProperty_T := 
  4826.    --                                         (Content_Filter_Topic_Name => NULL_STRING, 
  4827.    --                                          Related_Topic_Name        => NULL_STRING, 
  4828.    --                                          Filter_Class_Name         => NULL_STRING, 
  4829.    --                                          Filter_Expression         => NULL_STRING, 
  4830.    --                                          Expression_Parameters     => String_Seq.DEFAULT_SEQUENCE); 
  4831.  
  4832.    --  ---------------------------------------------------------- 
  4833.    --                  ENTITY_NAME (eXtension QoS) 
  4834.    --  ---------------------------------------------------------- 
  4835.  
  4836.    ENTITYNAME_QOS_POLICY_NAME : constant DDS.String := To_DDS_String ("EntityName"); 
  4837.    --  <defgroup>EntityNameQosGroupDocs</defgroup> 
  4838.    --  <dref>ENTITYNAME_QOS_POLICY_NAME</dref> 
  4839.  
  4840.    type EntityNameQosPolicy is record 
  4841.       Name      : aliased DDS.String; 
  4842.       Role_Name : aliased DDS.String; 
  4843.    end record with Convention => C; 
  4844.    --  <dref>EntityNameQosPolicy</dref> 
  4845.    --  <dref name="Name">EntityNameQosPolicy_name</dref> 
  4846.    --  <dref name="Role_Name">EntityNameQosPolicy_role_name</dref> 
  4847.  
  4848.    ENTITY_NAME_QOS_POLICY_DEFAULT : constant EntityNameQosPolicy := 
  4849.                                       (Name      => (Data => DDS.NULL_STRING.Data), 
  4850.                                        Role_Name => (Data => DDS.NULL_STRING.Data)); 
  4851.    --  <dref internal="true"></dref> 
  4852.  
  4853.    --  ---------------------------------------------------------- 
  4854.    --                  LoggingQosPolicy 
  4855.    --  ---------------------------------------------------------- 
  4856.  
  4857.    LOGGING_QOS_POLICY_NAME        : constant DDS.String := To_DDS_String ("Logging"); 
  4858.    --  <defgroup>LoggingQosGroupDocs</defgroup> 
  4859.    --  <dref>LOGGING_QOS_POLICY_NAME</dref> 
  4860.  
  4861.    --  ---------------------------------------------------------- 
  4862.    --                  PROFILE (eXtension QoS) 
  4863.    --  ---------------------------------------------------------- 
  4864.  
  4865.    PROFILE_QOS_POLICY_NAME  : constant DDS.String := To_DDS_String ("Profile"); 
  4866.    --  <defgroup>ProfileQosGroupDocs</defgroup> 
  4867.    --  <dref>PROFILE_QOS_POLICY_NAME</dref> 
  4868.  
  4869.    type ProfileQosPolicy is record 
  4870.       String_Profile                  : aliased String_Seq.Sequence; 
  4871.       Url_Profile                     : aliased String_Seq.Sequence; 
  4872.       Ignore_User_Profile             : aliased Boolean := False; 
  4873.       Ignore_Environment_Profile      : aliased Boolean := False; 
  4874.       Ignore_Resource_Profile         : aliased Boolean := False; 
  4875.       String_Profile_Dtd              : aliased String_Seq.Sequence; 
  4876.       Ignore_Is_Default_Qos_Attribute :  aliased Boolean := False; 
  4877.    end record with Convention => C; 
  4878.    --  <dref>ProfileQosPolicy</dref> 
  4879.    --  <dref name="String_Profile">ProfileQosPolicy_string_profile</dref> 
  4880.    --  <dref name="Url_Profile">ProfileQosPolicy_url_profile</dref> 
  4881.    --  <dref name="Ignore_User_Profile">ProfileQosPolicy_ignore_user_profile</dref> 
  4882.    --  <dref name="Ignore_Envionrment_Profile">ProfileQosPolicy_ignore_environment_profile</dref> 
  4883.    --  <dref name="Ignore_Resource_Profile">ProfileQosPolicy_ignore_resource_profile</dref> 
  4884.    --  <dref internal="true" name="String_Profile_Dtd">ProfileQosPolicy_string_profile_dtd</dref> 
  4885.  
  4886.  
  4887.    --  ---------------------------------------------------------- 
  4888.    --                  SAMPLEIDENTITY 
  4889.    --  ---------------------------------------------------------- 
  4890.  
  4891.    type SampleIdentity_T is record 
  4892.       Writer_Guid     : aliased Guid_T; 
  4893.       Sequence_Number : aliased DDS.SequenceNumber_T; 
  4894.    end record with 
  4895.      Convention => C; 
  4896.    --  <defgroup>WriteParamsGroupDocs</defgroup> 
  4897.    --  <dref>SampleIdentity_t</dref> 
  4898.    --  <dref name="Writer_Guid">SampleIdentity_t_writer_guid</dref> 
  4899.    --  <dref name="Sequence_Number">SampleIdentity_t_sequence_number</dref> 
  4900.  
  4901.    AUTO_SAMPLE_IDENTITY           : constant SampleIdentity_T := 
  4902.                                       (Writer_Guid     => GUID_AUTO, 
  4903.                                        Sequence_Number => SEQUENCE_NUMBER_UNKNOWN); 
  4904.    --  <dref>SampleIdentity_t_AUTO_SAMPLE_IDENTITY</dref> 
  4905.  
  4906.  
  4907.    UNKNOWN_SAMPLE_IDENTITY        : constant SampleIdentity_T := 
  4908.                                       (Writer_Guid     => GUID_AUTO, 
  4909.                                        Sequence_Number => SEQUENCE_NUMBER_UNKNOWN); 
  4910.    --  <dref>SampleIdentity_t_UNKNOWN_SAMPLE_IDENTITY</dref> 
  4911.  
  4912.    --  ---------------------------------------------------------- 
  4913.    --                  Cookie_t 
  4914.    --  ---------------------------------------------------------- 
  4915.  
  4916.    type Cookie_T is record 
  4917.       Value : aliased Octet_Seq.Sequence; 
  4918.    end record with Convention => C; 
  4919.    --  <defgroup>CookieGroupDocs</defgroup> 
  4920.    --  <dref>Cookie_t</dref> 
  4921.    --  <dref name="Value">Cookie_t_value</dref> 
  4922.  
  4923.    function "=" (Left, Right : Cookie_T) return Standard.Boolean; 
  4924.  
  4925.    COOKIE_DEFAULT : constant Cookie_T := (Value => Octet_Seq.DEFAULT_SEQUENCE); 
  4926.  
  4927.    type Cookie_T_Access is access all Cookie_T; 
  4928.    type Cookie_T_Array is array (Natural range <>) of aliased Cookie_T; 
  4929.  
  4930.    procedure Initialize (Self  : in out Cookie_T); 
  4931.    procedure Finalize (Self  : in out Cookie_T); 
  4932.    procedure Copy (Dst : in out Cookie_T; Src : in Cookie_T); 
  4933.  
  4934.  
  4935.    package Cookie_T_Seq is new DDS_Support.Sequences_Generic 
  4936.      (Cookie_T, 
  4937.       Cookie_T_Access, 
  4938.       DDS.Natural, 
  4939.       1, 
  4940.       Cookie_T_Array); 
  4941.    --  <dref>CookieSeq</dref> 
  4942.  
  4943.  
  4944.    --  ---------------------------------------------------------- 
  4945.    --                  AckResponseData 
  4946.    --  ---------------------------------------------------------- 
  4947.  
  4948.    type AckResponseData_T is record 
  4949.       Value     : aliased Octet_Seq.Sequence; 
  4950.    end record with 
  4951.      Convention => C; 
  4952.    --  <dref>AckResponseData_t</dref> 
  4953.    --  <dref name="Value">AckResponseData_t_value</dref> 
  4954.  
  4955.    --  ---------------------------------------------------------- 
  4956.    --                  SampleFlag 
  4957.    --  ---------------------------------------------------------- 
  4958.  
  4959.    type SampleFlagBits is new Unsigned_Long; 
  4960.    --  <defgroup>SampleFlagGroupDocs</defgroup> 
  4961.    --  <dref>SampleFlagBits</dref> 
  4962.  
  4963.    REDELIVERED_SAMPLE : constant SampleFlagBits := 0; 
  4964.    --  <dref>SampleFlagBits_REDELIVERED_SAMPLE</dref> 
  4965.  
  4966.    INTERMEDIATE_REPLY_SEQUENCE_SAMPLE : constant SampleFlagBits := 1; 
  4967.    --  <dref>SampleFlagBits_INTERMEDIATE_REPLY_SEQUENCE_SAMPLE</dref> 
  4968.  
  4969.    REPLICATE_SAMPLE : constant SampleFlagBits := 2; 
  4970.    --  <dref>SampleFlagBits_REPLICATE_SAMPLE</dref> 
  4971.  
  4972.    LAST_SHARED_READER_QUEUE_SAMPLE : constant SampleFlagBits := 3; 
  4973.    --  <dref>SampleFlagBits_LAST_SHARED_READER_QUEUE_SAMPLE</dref> 
  4974.  
  4975.    type SampleFlag is new DDS.Long; 
  4976.    --  <dref>SampleFlag</dref> 
  4977.  
  4978.    --  ---------------------------------------------------------- 
  4979.    --                  WriteParams_t 
  4980.    --  ---------------------------------------------------------- 
  4981.  
  4982.    type WriteParams_T is record 
  4983.       Replace_Auto            : aliased DDS.Boolean  := False; 
  4984.       Identity                : aliased SampleIdentity_T := AUTO_SAMPLE_IDENTITY; 
  4985.       Related_Sample_Identity : aliased SampleIdentity_T := UNKNOWN_SAMPLE_IDENTITY; 
  4986.       Source_Timestamp        : aliased DDS.Time_T := (-1, 0); 
  4987.       Cookie                  : aliased DDS.Cookie_T := COOKIE_DEFAULT; 
  4988.       Handle                  : aliased DDS.InstanceHandle_T := Null_InstanceHandle_T; 
  4989.       Priority                : aliased Long := 0; 
  4990.       Flush_On_Write          : aliased DDS.Boolean := False; 
  4991.       Flag                    : aliased SampleFlag := 0; 
  4992.       Source_Guid             : aliased Guid_T := GUID_AUTO; 
  4993.       Related_Source_Guid     : aliased Guid_T := GUID_UNKNOWN; 
  4994.       Related_Reader_Guid     : aliased Guid_T := GUID_UNKNOWN; 
  4995.       Topic_Query_Guid        : aliased Guid_T := GUID_UNKNOWN; 
  4996.       Related_Epoch           : aliased DDS.SequenceNumber_T := SEQUENCE_NUMBER_ZERO; 
  4997.    end record with 
  4998.      Convention => C; 
  4999.    --  <dref>WriteParams</dref> 
  5000.    --  <dref>Shared_replace_auto</dref> 
  5001.    --  <dref name="Replace_Auto">WriteParams_replace_auto</dref> 
  5002.    --  <dref name="Identity">WriteParams_identity</dref> 
  5003.    --  <dref name="Related_Sample_Identity">WriteParams_related_sample_identity</dref> 
  5004.    --  <dref name="Source_Timestamp">WriteParams_source_timestamp</dref> 
  5005.    --  <dref name="Cookie">WriteParams_cookie</dref> 
  5006.    --  <dref name="Handle">WriteParams_handle</dref> 
  5007.    --  <dref name="Priority">WriteParams_priority</dref> 
  5008.    --  <dref internal="true" name="Flush_On_Write">WriteParams_flush_on_write</dref> 
  5009.    --  <dref name="Source_Guid">WriteParams_source_guid</dref> 
  5010.    --  <dref name="Related_Source_Guid">WriteParams_related_source_guid</dref> 
  5011.    --  <dref name="Related_Reader_Guid">WriteParams_related_reader_guid</dref> 
  5012.    --  <dref internal="true" name="Topic_Query_Guid">WriteParams_topic_query_guid</dref> 
  5013.    --  <dref internal="true" name="Related_Epoch">WriteParams_related_epoch</dref> 
  5014.  
  5015.    WRITEPARAMS_DEFAULT : constant WriteParams_T 
  5016.      := (Replace_Auto            => False, 
  5017.          Identity                => AUTO_SAMPLE_IDENTITY, 
  5018.          Related_Sample_Identity => UNKNOWN_SAMPLE_IDENTITY, 
  5019.          Source_Timestamp        => (Sec => -1, Nanosec =>  0), 
  5020.          Cookie                  => COOKIE_DEFAULT, 
  5021.          Handle                  => Null_InstanceHandle_T, 
  5022.          Priority                => 0, 
  5023.          Flush_On_Write          => False, 
  5024.          Flag                    => 0, 
  5025.          Source_Guid             => GUID_AUTO, 
  5026.          Related_Source_Guid     => GUID_UNKNOWN, 
  5027.          Related_Reader_Guid     => GUID_UNKNOWN, 
  5028.          Topic_Query_Guid        => GUID_UNKNOWN, 
  5029.          Related_Epoch           => SEQUENCE_NUMBER_ZERO 
  5030.         ); 
  5031.    --  <dref>WRITEPARAMS_DEFAULT</dref> 
  5032.  
  5033.    type WriteParams_T_Access is access all WriteParams_T; 
  5034.  
  5035.    procedure Initialize (Self : in out WriteParams_T); 
  5036.    procedure Finalize   (Self : in out WriteParams_T); 
  5037.    procedure Copy       (Dst  : in out WriteParams_T; Src : in WriteParams_T); 
  5038.  
  5039.    function WriteParams_Equals (Self : in WriteParams_T_Access; Other : in WriteParams_T_Access) 
  5040.                                 return DDS.Boolean; 
  5041.    pragma Warnings (Off, WriteParams_Equals); 
  5042.    pragma Import (C, WriteParams_Equals, "DDS_WriteParams_equals"); 
  5043.    --  <dref internal="true">WriteParams_equals</dref> 
  5044.  
  5045.    -- 
  5046.    --  From dds_c_typecode.h 
  5047.    -- 
  5048.  
  5049.    --  !!! Change name back to TypeCode when typecode object removed 
  5050.  
  5051.    type TypeCode is new RTIDDS.Low_Level.ndds_dds_c_dds_c_typecode_h.DDS_TypeCode; 
  5052.  
  5053.    type TypeCode_Access is access all TypeCode; 
  5054.  
  5055.    --  From dds_c_typeobject.h 
  5056.    -- 
  5057.  
  5058.    type TypeObject is private; 
  5059.  
  5060.    type TypeObject_Access is access all TypeObject; 
  5061.  
  5062.    -- 
  5063.    --  From dds_c_builtin.h 
  5064.    -- 
  5065.  
  5066.    BUILTIN_TOPIC_MAX_STRING_LENGTH : constant := 256; 
  5067.    --  <dref internal="true"></dref> 
  5068.  
  5069.    type Transport_ClassId_T is new Long; 
  5070.    type TransportInfo_T is record 
  5071.       Class_Id         : aliased Transport_ClassId_T := 0;  -- ndds/dds_c/dds_c_infrastructure.h:3672 
  5072.       Message_Size_Max : aliased Long := 1024;  -- ndds/dds_c/dds_c_infrastructure.h:3676 
  5073.    end record with Convention => C; 
  5074.    --  <dref>TransportInfo_t</dref> 
  5075.    --  <dref name="class_id">TransportInfo_t_class_id</dref> 
  5076.    --  <dref name="message_size_max">TransportInfo_t_message_size_max</dref> 
  5077.  
  5078.    type TransportInfo_Access is access all TransportInfo_T; 
  5079.    type TransportInfo_Array is array (Natural range <>) of aliased TransportInfo_T with Convention => C; 
  5080.  
  5081.  
  5082.    procedure Initialize (This : in out TransportInfo_T); 
  5083.    procedure Finalize (This : in out TransportInfo_T); 
  5084.    procedure Copy (Dst : in out TransportInfo_T; 
  5085.                    Src : in TransportInfo_T); 
  5086.  
  5087.    package TransportInfo_Seq is new DDS_Support.Sequences_Generic 
  5088.      (Element        => DDS.TransportInfo_T, 
  5089.       Element_Access => DDS.TransportInfo_Access, 
  5090.       Index_Type     => Natural, 
  5091.       First_Element  => 1, 
  5092.       Element_Array  => DDS.TransportInfo_Array); 
  5093.    --  <dref>TransportInfoSeq</dref> 
  5094.  
  5095.  
  5096.    --  ---------------------------------------------------------- 
  5097.    --                  ParticipantBuiltinTopicData 
  5098.    --  ---------------------------------------------------------- 
  5099.  
  5100.    PARTICIPANT_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipant"); 
  5101.    --  <dref>PARTICIPANT_TOPIC_NAME</dref> 
  5102.  
  5103.    PARTICIPANT_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipantSecure"); 
  5104.    --  <dref internal="true">PARTICIPANT_TRUSTED_TOPIC_NAME</dref> 
  5105.  
  5106.    PARTICIPANT_MESSAGE_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipantMessage"); 
  5107.    --  <dref internal="true">PARTICIPANT_MESSAGE_TOPIC_NAME</dref> 
  5108.  
  5109.    PARTICIPANT_MESSAGE_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSParticipantMessageSecure"); 
  5110.    --  <dref internal="true">PARTICIPANT_MESSAGE_TRUSTED_TOPIC_NAME</dref> 
  5111.  
  5112.    PARTICIPANT_PROXY_TOPIC_NAME : constant DDS.String := To_DDS_String ("DDSParticipantProxy"); 
  5113.    --  <dref internal="true">PARTICIPANT_PROXY_TOPIC_NAME</dref> 
  5114.  
  5115.    PARTICIPANT_STATE_TOPIC_NAME : constant DDS.String := To_DDS_String ("DDSParticipantState"); 
  5116.    --  <dref internal="true">PARTICIPANT_STATE_TOPIC_NAME</dref> 
  5117.  
  5118.    ParticipantBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_PARTICIPANT_TYPE_NAME); 
  5119.  
  5120.    type ParticipantBuiltinTopicData is record 
  5121.       Key                            : aliased BuiltinTopicKey_T; 
  5122.       User_Data                      : aliased UserDataQosPolicy; 
  5123.       --  --- Extensions: ---------------------------------------------------- 
  5124.       Property                       : aliased PropertyQosPolicy; 
  5125.       Rtps_Protocol_Version          : aliased ProtocolVersion_T; 
  5126.       Rtps_Vendor_Id                 : aliased VendorId_T; 
  5127.       Dds_Builtin_Endpoints          : aliased Unsigned_Long := 0; 
  5128.       Metatraffic_Unicast_Locators   : aliased Locator_Seq.Sequence; 
  5129.       Metatraffic_Multicast_Locators : aliased Locator_Seq.Sequence; 
  5130.       Default_Unicast_Locators       : aliased Locator_Seq.Sequence; 
  5131.       Lease_Duration                 : aliased Duration_T; 
  5132.       Product_Version                : aliased ProductVersion_T; 
  5133.       Plugin_Promiscuity_Kind        : aliased DiscoveryPluginPromiscuityKind := DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY; 
  5134.       Participant_Name               : aliased EntityNameQosPolicy; 
  5135.       Domain_Id                      : aliased DomainId_T := 0;  -- ndds/dds_c/dds_c_builtin.h:105 
  5136.       Transport_Info                 : aliased RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_TransportInfoSeq;  -- ndds/dds_c/dds_c_builtin.h:109 
  5137.       Reachability_Lease_Duration    : aliased Duration_T; 
  5138.       Vendor_Builtin_Endpoints       : aliased Unsigned_Long := 0; 
  5139.       Service                        : aliased ServiceQosPolicy; 
  5140.  
  5141.    end record with 
  5142.      Convention => C; 
  5143.    --  <module name="DDSBuiltInTopicModule" actualName="Built-in Topics">builtin</module> 
  5144.    --  <defgroup>ParticipantBuiltInTopicGroupDocs</defgroup> 
  5145.    --  <dref>ParticipantBuiltinTopicData</dref> 
  5146.    --  <dref name="Key">ParticipantBuiltinTopicData_key</dref> 
  5147.    --  <dref name="User_Data">ParticipantBuiltinTopicData_user_data</dref> 
  5148.    --  <dref name="Property">ParticipantBuiltinTopicData_property</dref> 
  5149.    --  <dref name="Rtps_Protocol_Version">ParticipantBuiltinTopicData_rtps_protocol_version</dref> 
  5150.    --  <dref name="Rtps_Vendor_Id">ParticipantBuiltinTopicData_rtps_vendor_id</dref> 
  5151.    --  <dref name="Dds_Builtin_Endpoints">ParticipantBuiltinTopicData_dds_builtin_endpoints</dref> 
  5152.    --  <dref internal="true" name="metatraffic_unicast_locators">ParticipantBuiltinTopicData_metatrafic_unicast_locators</dref> 
  5153.    --  <dref internal="true" name="metatraffic_multicast_locators">ParticipantBuiltinTopicData_metatrafic_multicast_locators</dref> 
  5154.    --  <dref name="Default_Unicast_Locators">ParticipantBuiltinTopicData_default_unicast_locators</dref> 
  5155.    --  <dref internal="true" name="lease_duration">ParticipantBuiltinTopicData_lease_duration</dref> 
  5156.    --  <dref name="Product_Version">ParticipantBuiltinTopicData_product_version</dref> 
  5157.    --  <dref internal="true" name="Plugin_Promiscuity_Kind">ParticipantBuiltinTopicData_plugin_promiscuity_kind</dref> 
  5158.    --  <dref name="Participant_Name">ParticipantBuiltinTopicData_participant_name</dref> 
  5159.    --  <dref name="domain_id">ParticipantBuiltinTopicData_domain_id</dref> 
  5160.    --  <dref name="transport_info">ParticipantBuiltinTopicData_transport_info</dref> 
  5161.    --  <dref name="Reachability_Lease_Duration">ParticipantBuiltinTopicData_reachability_lease_duration</dref> 
  5162.    --  <dref internal="true" name="Vendor_Builtin_Endpoints">ParticipantBuiltinTopicData_vendor_builtin_endpoints</dref> 
  5163.    --  <dref internal="true" name="Service">ParticipantBuiltinTopicData_service</dref> 
  5164.  
  5165.  
  5166.    type ParticipantBuiltinTopicData_Access is access all ParticipantBuiltinTopicData; 
  5167.  
  5168.    --     ParticipantBuiltinTopicData_INITIALIZER : constant ParticipantBuiltinTopicData := 
  5169.    --                                                 (Key                      => BuiltinTopicKey_T_INITIALIZER, 
  5170.    --                                                  User_Data                => USER_DATA_QOS_POLICY_DEFAULT, 
  5171.    --                                                  --  --- Extensions: ---------------------------------------------------- 
  5172.    --                                                  Property                 => PROPERTY_QOS_POLICY_DEFAULT, 
  5173.    --                                                  Rtps_Protocol_Version    => PROTOCOL_VERSION_DEFAULT, 
  5174.    --                                                  Rtps_Vendor_Id           => VENDOR_ID_DEFAULT, 
  5175.    --                                                  Dds_Builtin_Endpoints    => 0, 
  5176.    --                                                  metatraffic_unicast_locators => LocatorSeq.DEFAULT_SEQUENCE, 
  5177.    --                                                  metatraffic_multicast_locators => LocatorSeq.DEFAULT_SEQUENCE, 
  5178.    --                                                  Default_Unicast_Locators => LocatorSeq.DEFAULT_SEQUENCE, 
  5179.    --                                                  lease_duration           => (16#7FFFFFFF#, 16#7FFFFFFF#), 
  5180.    --                                                  Product_Version          => PRODUCTVERSION_UNKNOWN, 
  5181.    --                                                  Plugin_Promiscuity_Kind  => DISCOVERYPLUGIN_DISCOVER_MATCHING_REMOTE_ENTITIES_PROMISCUITY, 
  5182.    --                                                  Participant_Name         => ENTITY_NAME_QOS_POLICY_DEFAULT, 
  5183.    --                                                  Multicast_Mapping        => TRANSPORT_MULTICAST_MAPPING_QOS_POLICY_DEFAULT, 
  5184.    --                                                  User_Object              => , 
  5185.    --                                                  Protocol                 => , 
  5186.    --                                                  Type_Support             => ); 
  5187.  
  5188.    procedure Print (UserData : ParticipantBuiltinTopicData_Access; 
  5189.                     Desc     : DDS.String; 
  5190.                     Indent   : Long) with 
  5191.      Convention => C, 
  5192.      Import => True, 
  5193.      Link_Name => "DDS_ParticipantBuiltinTopicDataPlugin_print"; 
  5194.  
  5195.    type ParticipantBuiltinTopicData_Array is array (Natural range <>) of aliased ParticipantBuiltinTopicData; 
  5196.    pragma Convention (C, ParticipantBuiltinTopicData_Array); 
  5197.  
  5198.    function ParticipantBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5199.    pragma Import (C, ParticipantBuiltinTopicData_Get_TypeCode, "DDS_ParticipantBuiltinTopicData_get_typecode"); 
  5200.  
  5201.    procedure Initialize (This : in out ParticipantBuiltinTopicData); 
  5202.    procedure Finalize (This : in out ParticipantBuiltinTopicData); 
  5203.    procedure Copy (Dst : in out ParticipantBuiltinTopicData; 
  5204.                    Src : in ParticipantBuiltinTopicData); 
  5205.  
  5206.    package ParticipantBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5207.      (Element        => DDS.ParticipantBuiltinTopicData, 
  5208.       Element_Access => DDS.ParticipantBuiltinTopicData_Access, 
  5209.       Index_Type     => Natural, 
  5210.       First_Element  => 1, 
  5211.       Element_Array  => DDS.ParticipantBuiltinTopicData_Array); 
  5212.    --  <dref>ParticipantBuiltinTopicDataSeq</dref> 
  5213.  
  5214.    --  ---------------------------------------------------------- 
  5215.    --                  TopicBuiltinTopicData 
  5216.    --  ---------------------------------------------------------- 
  5217.  
  5218.    TOPIC_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSTopic"); 
  5219.    --  <dref>TOPIC_TOPIC_NAME</dref> 
  5220.  
  5221.    TopicBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_TOPIC_TYPE_NAME); 
  5222.  
  5223.    type TopicBuiltinTopicData is record 
  5224.       Key                       : aliased BuiltinTopicKey_T; 
  5225.       Name                      : aliased DDS.String; 
  5226.       Type_Name                 : aliased DDS.String; 
  5227.       Durability                : aliased DurabilityQosPolicy; 
  5228.       Durability_Service        : aliased DurabilityServiceQosPolicy; 
  5229.       Deadline                  : aliased DeadlineQosPolicy; 
  5230.       Latency_Budget            : aliased LatencyBudgetQosPolicy; 
  5231.       Liveliness                : aliased LivelinessQosPolicy; 
  5232.       Reliability               : aliased ReliabilityQosPolicy; 
  5233.       Transport_Priority        : aliased TransportPriorityQosPolicy; 
  5234.       Lifespan                  : aliased LifespanQosPolicy; 
  5235.       Destination_Order         : aliased DestinationOrderQosPolicy; 
  5236.       History                   : aliased HistoryQosPolicy; 
  5237.       Resource_Limits           : aliased ResourceLimitsQosPolicy; 
  5238.       Ownership                 : aliased OwnershipQosPolicy; 
  5239.       Topic_Data                : aliased TopicDataQosPolicy; 
  5240.       Representation            : aliased DataRepresentationQosPolicy; 
  5241.    end record with 
  5242.      Convention => C; 
  5243.    --  <defgroup>TopicBuiltInTopicGroupDocs</defgroup> 
  5244.    --  <dref>TopicBuiltinTopicData</dref> 
  5245.    --  <dref>Shared_topic_builtin_topic_data_description</dref> 
  5246.    --  <dref name="Key">TopicBuiltinTopicData_key</dref> 
  5247.    --  <dref name="Name">TopicBuiltinTopicData_name</dref> 
  5248.    --  <dref name="Type_Name">TopicBuiltinTopicData_type_name</dref> 
  5249.    --  <dref name="Durability">TopicBuiltinTopicData_durability</dref> 
  5250.    --  <dref name="Durability_Service">TopicBuiltinTopicData_durability_service</dref> 
  5251.    --  <dref name="Deadline">TopicBuiltinTopicData_deadline</dref> 
  5252.    --  <dref name="Latency_Budget">TopicBuiltinTopicData_latency_budget</dref> 
  5253.    --  <dref name="Liveliness">TopicBuiltinTopicData_liveliness</dref> 
  5254.    --  <dref name="Reliability">TopicBuiltinTopicData_reliability</dref> 
  5255.    --  <dref name="Transport_Priority">TopicBuiltinTopicData_transport_priority</dref> 
  5256.    --  <dref name="Lifespan">TopicBuiltinTopicData_lifespan</dref> 
  5257.    --  <dref name="Destination_Order">TopicBuiltinTopicData_destination_order</dref> 
  5258.    --  <dref name="History">TopicBuiltinTopicData_history</dref> 
  5259.    --  <dref name="Resource_Limits">TopicBuiltinTopicData_resource_limits</dref> 
  5260.    --  <dref name="Ownership">TopicBuiltinTopicData_ownership</dref> 
  5261.    --  <dref name="Topic_Data">TopicBuiltinTopicData_topic_data</dref> 
  5262.    --  <dref name="Representation">TopicBuiltinTopicData_representation</dref> 
  5263.  
  5264.  
  5265.    type TopicBuiltinTopicData_Access is access all TopicBuiltinTopicData; 
  5266.  
  5267.    --     TopicBuiltinTopicData_INITIALIZER : constant TopicBuiltinTopicData := 
  5268.    --                                           (Key                        => BuiltinTopicKey_T_INITIALIZER, 
  5269.    --                                            Name                       => NULL_STRING, 
  5270.    --                                            Type_Name                  => NULL_STRING, 
  5271.    --                                            Durability                 => DURABILITY_QOS_POLICY_DEFAULT, 
  5272.    --                                            Durability_Service         => DURABILITY_SERVICE_QOS_POLICY_DEFAULT, 
  5273.    --                                            Deadline                   => DEADLINE_QOS_POLICY_DEFAULT, 
  5274.    --                                            Latency_Budget             => LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  5275.    --                                            Liveliness                 => LIVELINESS_QOS_POLICY_DEFAULT, 
  5276.    --                                            Reliability                => RELIABILITY_QOS_POLICY_DEFAULT, 
  5277.    --                                            Transport_Priority         => TRANSPORT_PRIORITY_QOS_POLICY_DEFAULT, 
  5278.    --                                            Lifespan                   => LIFESPAN_QOS_POLICY_DEFAULT, 
  5279.    --                                            Destination_Order          => DESTINATION_ORDER_QOS_POLICY_DEFAULT, 
  5280.    --                                            History                    => HISTORY_QOS_POLICY_DEFAULT, 
  5281.    --                                            Resource_Limits            => RESOURCE_LIMITS_QOS_POLICY_DEFAULT, 
  5282.    --                                            Ownership                  => OWNERSHIP_QOS_POLICY_DEFAULT, 
  5283.    --                                            Topic_Data                 => TOPIC_DATA_QOS_POLICY_DEFAULT, 
  5284.    --                                            Representation             => DataRepresentationQosPolicy_INITIALIZER); 
  5285.  
  5286.    type TopicBuiltinTopicData_Array is array (Natural range <>) of aliased TopicBuiltinTopicData; 
  5287.    pragma Convention (C, TopicBuiltinTopicData_Array); 
  5288.  
  5289.    function TopicBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5290.    pragma Import (C, TopicBuiltinTopicData_Get_TypeCode, "DDS_TopicBuiltinTopicData_get_typecode"); 
  5291.  
  5292.    procedure Initialize (This : in out TopicBuiltinTopicData); 
  5293.    procedure Finalize (This : in out TopicBuiltinTopicData); 
  5294.    procedure Copy (Dst : in out TopicBuiltinTopicData; 
  5295.                    Src : in TopicBuiltinTopicData); 
  5296.  
  5297.    package TopicBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5298.      (Element        => DDS.TopicBuiltinTopicData, 
  5299.       Element_Access => DDS.TopicBuiltinTopicData_Access, 
  5300.       Index_Type     => Natural, 
  5301.       First_Element  => 1, 
  5302.       Element_Array  => DDS.TopicBuiltinTopicData_Array); 
  5303.    --  <dref>TopicBuiltinTopicDataSeq</dref> 
  5304.  
  5305.    --  ---------------------------------------------------------- 
  5306.    --                  Service Request Topic Data 
  5307.    --  ---------------------------------------------------------- 
  5308.  
  5309.    --  <defgroup>ServiceRequestBuiltInTopicGroupDocs</defgroup> 
  5310.    type ServiceRequestInternalTopicData is record 
  5311.       Service_Id                : aliased Long := 0; 
  5312.       Instance_Id               : aliased Guid_T; 
  5313.       Request_Body              : aliased RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_OctetSeq; 
  5314.    end record with Convention => C; 
  5315.    --  <dref>ServiceRequest</dref> 
  5316.  
  5317.    type ServiceRequestInternalTopicData_Access is access all ServiceRequestInternalTopicData; 
  5318.  
  5319.    --  ---------------------------------------------------------- 
  5320.    --                  PublicationBuiltinTopicData 
  5321.    --  ---------------------------------------------------------- 
  5322.  
  5323.    PUBLICATION_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSPublication"); 
  5324.    --  <dref>PUBLICATION_TOPIC_NAME</dref> 
  5325.  
  5326.    PUBLICATION_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSPublicationSecure"); 
  5327.    --  <dref internal="true">PUBLICATION_TRUSTED_TOPIC_NAME</dref> 
  5328.  
  5329.    PublicationBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_PUBLICATION_TYPE_NAME); 
  5330.  
  5331.    type PublicationBuiltinTopicData is record 
  5332.       Key                       : aliased BuiltinTopicKey_T; 
  5333.       Participant_Key           : aliased BuiltinTopicKey_T; 
  5334.       Topic_Name                : aliased DDS.String; 
  5335.       Type_Name                 : aliased DDS.String; 
  5336.       Max_Sample_Serialize_Size : aliased Long := 0; 
  5337.       Durability                : aliased DurabilityQosPolicy; 
  5338.       Durability_Service        : aliased DurabilityServiceQosPolicy; 
  5339.       Deadline                  : aliased DeadlineQosPolicy; 
  5340.       Latency_Budget            : aliased LatencyBudgetQosPolicy; 
  5341.       Liveliness                : aliased LivelinessQosPolicy; 
  5342.       Reliability               : aliased ReliabilityQosPolicy; 
  5343.       Lifespan                  : aliased LifespanQosPolicy; 
  5344.       User_Data                 : aliased UserDataQosPolicy; 
  5345.       Ownership                 : aliased OwnershipQosPolicy; 
  5346.       Ownership_Strength        : aliased OwnershipStrengthQosPolicy; 
  5347.       Destination_Order         : aliased DestinationOrderQosPolicy; 
  5348.       Presentation              : aliased PresentationQosPolicy; 
  5349.       Partition                 : aliased PartitionQosPolicy; 
  5350.       Topic_Data                : aliased TopicDataQosPolicy; 
  5351.       Group_Data                : aliased GroupDataQosPolicy; 
  5352.       Type_Object               : aliased TypeObject_Access; 
  5353.       Representation            : aliased DataRepresentationQosPolicy; 
  5354.       Data_Tags                 : aliased DataTagQosPolicy; 
  5355.       --  extensions 
  5356.       Type_Code                 : aliased TypeCode_Access; 
  5357.       Publisher_Key             : aliased BuiltinTopicKey_T; 
  5358.       Property                  : aliased PropertyQosPolicy; 
  5359.       Unicast_Locators          : aliased Locator_Seq.Sequence; 
  5360.       Virtual_Guid              : aliased Guid_T; 
  5361.       Service                   : aliased ServiceQosPolicy; 
  5362.       Rtps_Protocol_Version     : aliased ProtocolVersion_T; 
  5363.       Rtps_Vendor_Id            : aliased VendorId_T; 
  5364.       Product_Version           : aliased ProductVersion_T; 
  5365.       Locator_Filter            : aliased LocatorFilterQosPolicy; 
  5366.       Disable_Positive_Acks     : aliased Boolean := False; 
  5367.       Send_Queue_Size           : aliased Long := 0; 
  5368.       Is_Incompatible           : aliased Boolean := False; 
  5369.       Publication_Name          : aliased EntityNameQosPolicy; 
  5370.    end record with 
  5371.      Convention => C; 
  5372.    --  <defgroup>PublicationBuiltInTopicGroupDocs</defgroup> 
  5373.    --  <dref>PublicationBuiltinTopicData</dref> 
  5374.    --  <dref>Shared_publication_builtin_topic_data_description</dref> 
  5375.    --  <dref name="Key">PublicationBuiltinTopicData_key</dref> 
  5376.    --  <dref name="Participant_Key">PublicationBuiltinTopicData_participant_key</dref> 
  5377.    --  <dref name="Topic_Name">PublicationBuiltinTopicData_topic_name</dref> 
  5378.    --  <dref name="Type_Name">PublicationBuiltinTopicData_type_name</dref> 
  5379.    --  <dref internal="true" name="Max_Sample_Serialize_Size">PublicationBuiltinTopicData_max_sample_serialized_size</dref> 
  5380.    --  <dref name="Durability">PublicationBuiltinTopicData_durability</dref> 
  5381.    --  <dref name="Durability_Service">PublicationBuiltinTopicData_durability_service</dref> 
  5382.    --  <dref name="Deadline">PublicationBuiltinTopicData_deadline</dref> 
  5383.    --  <dref name="Latency_Budget">PublicationBuiltinTopicData_latency_budget</dref> 
  5384.    --  <dref name="Liveliness">PublicationBuiltinTopicData_liveliness</dref> 
  5385.    --  <dref name="Reliability">PublicationBuiltinTopicData_reliability</dref> 
  5386.    --  <dref name="Lifespan">PublicationBuiltinTopicData_lifespan</dref> 
  5387.    --  <dref name="User_Data">PublicationBuiltinTopicData_user_data</dref> 
  5388.    --  <dref name="Ownership">PublicationBuiltinTopicData_ownership</dref> 
  5389.    --  <dref name="Ownership_Strength">PublicationBuiltinTopicData_ownership_strength</dref> 
  5390.    --  <dref name="Destination_Order">PublicationBuiltinTopicData_destination_order</dref> 
  5391.    --  <dref name="Presentation">PublicationBuiltinTopicData_presentation</dref> 
  5392.    --  <dref name="Partition">PublicationBuiltinTopicData_partition</dref> 
  5393.    --  <dref name="Topic_Data">PublicationBuiltinTopicData_topic_data</dref> 
  5394.    --  <dref name="Group_Data">PublicationBuiltinTopicData_group_data</dref> 
  5395.    --  <dref internal="true" name="Type_Object">PublicationBuiltinTopicData_type_object</dref> 
  5396.    --  <dref name="Representation">PublicationBuiltinTopicData_representation</dref> 
  5397.    --  <dref name="Data_Tags">PublicationBuiltinTopicData_data_tags</dref> 
  5398.    --  <dref name="Type_Code">PublicationBuiltinTopicData_type_code</dref> 
  5399.    --  <dref name="Publisher_Key">PublicationBuiltinTopicData_publisher_key</dref> 
  5400.    --  <dref name="Property">PublicationBuiltinTopicData_property</dref> 
  5401.    --  <dref name="Unicast_Locators">PublicationBuiltinTopicData_unicast_locators</dref> 
  5402.    --  <dref name="Virtual_Guid">PublicationBuiltinTopicData_virtual_guid</dref> 
  5403.    --  <dref name="Service">PublicationBuiltinTopicData_service</dref> 
  5404.    --  <dref name="Rtps_Protocol_Version">PublicationBuiltinTopicData_rtps_protocol_version</dref> 
  5405.    --  <dref name="Rtps_Vendor_Id">PublicationBuiltinTopicData_rtps_vendor_id</dref> 
  5406.    --  <dref name="Product_Version">PublicationBuiltinTopicData_product_version</dref> 
  5407.    --  <dref name="locator_filter">PublicationBuiltinTopicData_locator_filter</dref> 
  5408.    --  <dref name="disable_positive_acks">PublicationBuiltinTopicData_disable_positive_acks</dref> 
  5409.    --  <dref internal="true" name="send_queue_zize">PublicationBuiltinTopicData_send_queue_size</dref> 
  5410.    --  <dref internal="true" name="is_compatible">PublicationBuiltinTopicData_is_compatible</dref> 
  5411.    --  <dref name="publication_name">PublicationBuiltinTopicData_publication_name</dref> 
  5412.  
  5413.  
  5414.    type PublicationBuiltinTopicData_Access is access all PublicationBuiltinTopicData; 
  5415.  
  5416.    --     PublicationBuiltinTopicData_INITIALIZER : constant PublicationBuiltinTopicData := 
  5417.    --                                                 (Key                        => BuiltinTopicKey_T_INITIALIZER, 
  5418.    --                                                  Participant_Key            => BuiltinTopicKey_T_INITIALIZER, 
  5419.    --                                                  Topic_Name                 => NULL_STRING, 
  5420.    --                                                  Type_Name                  => NULL_STRING, 
  5421.    --                                                  Max_Sample_Serialize_Size  => 0, 
  5422.    --                                                  Durability                 => DURABILITY_QOS_POLICY_DEFAULT, 
  5423.    --                                                  Durability_Service         => DURABILITY_SERVICE_QOS_POLICY_DEFAULT, 
  5424.    --                                                  Deadline                   => DEADLINE_QOS_POLICY_DEFAULT, 
  5425.    --                                                  Latency_Budget             => LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  5426.    --                                                  Liveliness                 => LIVELINESS_QOS_POLICY_DEFAULT, 
  5427.    --                                                  Reliability                => RELIABILITY_QOS_POLICY_DEFAULT, 
  5428.    --                                                  Lifespan                   => LIFESPAN_QOS_POLICY_DEFAULT, 
  5429.    --                                                  User_Data                  => USER_DATA_QOS_POLICY_DEFAULT, 
  5430.    --                                                  Ownership                  => OWNERSHIP_QOS_POLICY_DEFAULT, 
  5431.    --                                                  Ownership_Strength         => OWNERSHIP_STRENGTH_QOS_POLICY_DEFAULT, 
  5432.    --                                                  Destination_Order          => DESTINATION_ORDER_QOS_POLICY_DEFAULT, 
  5433.    --                                                  Presentation               => PRESENTATION_QOS_POLICY_DEFAULT, 
  5434.    --                                                  Partition                  => PARTITION_QOS_POLICY_DEFAULT, 
  5435.    --                                                  Topic_Data                 => TOPIC_DATA_QOS_POLICY_DEFAULT, 
  5436.    --                                                  Group_Data                 => GROUP_DATA_QOS_POLICY_DEFAULT, 
  5437.    --                                                  Representation             => DataRepresentationQosPolicy_INITIALIZER, 
  5438.    --                                                  Data_Tags                  => DataTagQosPolicy_INITIALIZER, 
  5439.    --                                                  Type_Code                  => null, 
  5440.    --                                                  Publisher_Key              => BuiltinTopicKey_T_INITIALIZER, 
  5441.    --                                                  Property                   => PROPERTY_QOS_POLICY_DEFAULT, 
  5442.    --                                                  Unicast_Locators           => LocatorSeq.DEFAULT_SEQUENCE, 
  5443.    --                                                  Virtual_Guid               => (Value => (others => 0)), 
  5444.    --                                                  Service                    => SERVICE_QOS_POLICY_DEFAULT, 
  5445.    --                                                  Rtps_Protocol_Version      => PROTOCOL_VERSION_DEFAULT, 
  5446.    --                                                  Rtps_Vendor_Id             => VENDOR_ID_DEFAULT, 
  5447.    --                                                  Product_Version            => PRODUCTVERSION_UNKNOWN); 
  5448.  
  5449.    type PublicationBuiltinTopicData_Array is array (Natural range <>) of aliased PublicationBuiltinTopicData; 
  5450.    pragma Convention (C, PublicationBuiltinTopicData_Array); 
  5451.  
  5452.    function PublicationBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5453.    pragma Import (C, PublicationBuiltinTopicData_Get_TypeCode, "DDS_PublicationBuiltinTopicData_get_typecode"); 
  5454.  
  5455.    procedure Initialize (This : in out PublicationBuiltinTopicData); 
  5456.    procedure Finalize (This : in out PublicationBuiltinTopicData); 
  5457.    procedure Copy (Dst : in out PublicationBuiltinTopicData; 
  5458.                    Src : in PublicationBuiltinTopicData); 
  5459.  
  5460.    package PublicationBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5461.      (Element        => DDS.PublicationBuiltinTopicData, 
  5462.       Element_Access => DDS.PublicationBuiltinTopicData_Access, 
  5463.       Index_Type     => Natural, 
  5464.       First_Element  => 1, 
  5465.       Element_Array  => DDS.PublicationBuiltinTopicData_Array); 
  5466.    --  <dref>PublicationBuiltinTopicDataSeq</dref> 
  5467.  
  5468.    --  ---------------------------------------------------------- 
  5469.    --                  SubscriptionBuiltinTopicData 
  5470.    --  ---------------------------------------------------------- 
  5471.  
  5472.    SUBSCRIPTION_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSSubscription"); 
  5473.    --  <dref>SUBSCRIPTION_TOPIC_NAME</dref> 
  5474.  
  5475.    SUBSCRIPTION_TRUSTED_TOPIC_NAME : constant DDS.String := To_DDS_String ("DCPSSubscriptionSecure"); 
  5476.    --  <dref internal="true">SUBSCRIPTION_TRUSTED_TOPIC_NAME</dref> 
  5477.  
  5478.    SubscriptionBuiltinTopicData_TypeName : DDS.String := (Data => RTIDDS.Low_Level.ndds_dds_c_dds_c_builtin_impl_h.DDS_SUBSCRIPTION_TYPE_NAME); 
  5479.  
  5480.    type SubscriptionBuiltinTopicData is record 
  5481.       Key                     : aliased BuiltinTopicKey_T; 
  5482.       Participant_Key         : aliased BuiltinTopicKey_T; 
  5483.       Topic_Name              : aliased DDS.String; 
  5484.       Type_Name               : aliased DDS.String; 
  5485.       Durability              : aliased DurabilityQosPolicy; 
  5486.       Deadline                : aliased DeadlineQosPolicy; 
  5487.       Latency_Budget          : aliased LatencyBudgetQosPolicy; 
  5488.       Liveliness              : aliased LivelinessQosPolicy; 
  5489.       Reliability             : aliased ReliabilityQosPolicy; 
  5490.       Ownership               : aliased OwnershipQosPolicy; 
  5491.       Destination_Order       : aliased DestinationOrderQosPolicy; 
  5492.       User_Data               : aliased UserDataQosPolicy; 
  5493.       Time_Based_Filter       : aliased TimeBasedFilterQosPolicy; 
  5494.       Presentation            : aliased PresentationQosPolicy; 
  5495.       Partition               : aliased PartitionQosPolicy; 
  5496.       Topic_Data              : aliased TopicDataQosPolicy; 
  5497.       Group_Data              : aliased GroupDataQosPolicy; 
  5498.       Type_Consistency        : aliased TypeConsistencyEnforcementQosPolicy; 
  5499.       Type_Object             : aliased TypeObject_Access; 
  5500.       Representation          : aliased DataRepresentationQosPolicy; 
  5501.       Data_Tags               : aliased DataTagQosPolicy; 
  5502.       --  extensions 
  5503.       Type_Code               : aliased TypeCode_Access; 
  5504.       Subscriber_Key          : aliased BuiltinTopicKey_T; 
  5505.       Property                : aliased PropertyQosPolicy; 
  5506.       Unicast_Locators        : aliased Locator_Seq.Sequence; 
  5507.       Multicast_Locators      : aliased Locator_Seq.Sequence; 
  5508.       Content_Filter_Property : aliased ContentFilterProperty_T; 
  5509.       Virtual_Guid            : aliased Guid_T; 
  5510.       Service                 : aliased ServiceQosPolicy; 
  5511.       Rtps_Protocol_Version   : aliased ProtocolVersion_T; 
  5512.       Rtps_Vendor_Id          : aliased VendorId_T; 
  5513.       Product_Version         : aliased ProductVersion_T; 
  5514.       Disable_Positive_Acks   : aliased Boolean := False; 
  5515.       Expects_Inline_Qos      : aliased Boolean := False; 
  5516.       Receive_Queue_Size      : aliased Long := 0; 
  5517.       Is_Incompatible         : aliased Boolean := False; 
  5518.       Subscription_Name       : aliased EntityNameQosPolicy; 
  5519.    end record with 
  5520.      Convention => C; 
  5521.    --  <defgroup>SubscriptionBuiltInTopicGroupDocs</defgroup> 
  5522.    --  <dref>SubscriptionBuiltinTopicData</dref> 
  5523.    --  <dref>Shared_subscription_builtin_topic_data_description</dref> 
  5524.    --  <dref name="Key">SubscriptionBuiltinTopicData_key</dref> 
  5525.    --  <dref name="Participant_Key">SubscriptionBuiltinTopicData_participant_key</dref> 
  5526.    --  <dref name="Topic_Name">SubscriptionBuiltinTopicData_topic_name</dref> 
  5527.    --  <dref name="Type_Name">SubscriptionBuiltinTopicData_type_name</dref> 
  5528.    --  <dref name="Durability">SubscriptionBuiltinTopicData_durability</dref> 
  5529.    --  <dref name="Deadline">SubscriptionBuiltinTopicData_deadline</dref> 
  5530.    --  <dref name="Latency_Budget">SubscriptionBuiltinTopicData_latency_budget</dref> 
  5531.    --  <dref name="Liveliness">SubscriptionBuiltinTopicData_liveliness</dref> 
  5532.    --  <dref name="Reliability">SubscriptionBuiltinTopicData_reliability</dref> 
  5533.    --  <dref name="Ownership">SubscriptionBuiltinTopicData_ownership</dref> 
  5534.    --  <dref name="Destination_Order">SubscriptionBuiltinTopicData_destination_order</dref> 
  5535.    --  <dref name="User_Data">SubscriptionBuiltinTopicData_user_data</dref> 
  5536.    --  <dref name="Time_Based_Filter">SubscriptionBuiltinTopicData_time_based_filter</dref> 
  5537.    --  <dref name="Presentation">SubscriptionBuiltinTopicData_presentation</dref> 
  5538.    --  <dref name="Partition">SubscriptionBuiltinTopicData_partition</dref> 
  5539.    --  <dref name="Topic_Data">SubscriptionBuiltinTopicData_topic_data</dref> 
  5540.    --  <dref name="Group_Data">SubscriptionBuiltinTopicData_group_data</dref> 
  5541.    --  <dref name="Type_Consistency">SubscriptionBuiltinTopicData_type_consistency</dref> 
  5542.    --  <dref internal="true" name="Type_Object">SubscriptionBuiltinTopicData_type</dref> 
  5543.    --  <dref name="Representation">SubscriptionBuiltinTopicData_representation</dref> 
  5544.    --  <dref name="Data_Tags">SubscriptionBuiltinTopicData_data_tags</dref> 
  5545.    --  <dref name="Type_Code">SubscriptionBuiltinTopicData_type_code</dref> 
  5546.    --  <dref name="Subscriber_Key">SubscriptionBuiltinTopicData_subscriber_key</dref> 
  5547.    --  <dref name="Property">SubscriptionBuiltinTopicData_property</dref> 
  5548.    --  <dref name="Unicast_Locators">SubscriptionBuiltinTopicData_unicast_locators</dref> 
  5549.    --  <dref name="Multicast_Locators">SubscriptionBuiltinTopicData_multicast_locators</dref> 
  5550.    --  <dref name="Content_Filter_Property">SubscriptionBuiltinTopicData_content_filter_property</dref> 
  5551.    --  <dref name="Virtual_Guid">SubscriptionBuiltinTopicData_virtual_guid</dref> 
  5552.    --  <dref name="Service">SubscriptionBuiltinTopicData_service</dref> 
  5553.    --  <dref name="Rtps_Protocol_Version">SubscriptionBuiltinTopicData_rtps_protocol_version</dref> 
  5554.    --  <dref name="Rtps_Vendor_Id">SubscriptionBuiltinTopicData_rtps_vendor_id</dref> 
  5555.    --  <dref name="Product_Version">SubscriptionBuiltinTopicData_product_version</dref> 
  5556.    --  <dref name="disable_positive_acks">SubscriptionBuiltinTopicData_disable_positive_acks</dref> 
  5557.    --  <dref internal="true" name="expects_inline_qos">SubscriptionBuiltinTopicData_expects_inline_qos</dref> 
  5558.    --  <dref internal="true" name="receive_queue_size">SubscriptionBuiltinTopicData_receive_queue_size</dref> 
  5559.    --  <dref internal="true" name="is_compatible">SubscriptionBuiltinTopicData_is_compatible</dref> 
  5560.    --  <dref name="subscription_name">SubscriptionBuiltinTopicData_subscription_name</dref> 
  5561.  
  5562.    type SubscriptionBuiltinTopicData_Access is access all SubscriptionBuiltinTopicData; 
  5563.  
  5564.    --     SubscriptionBuiltinTopicData_INITIALIZER : constant SubscriptionBuiltinTopicData := 
  5565.    --                                                  (Key                     => BuiltinTopicKey_T_INITIALIZER, 
  5566.    --                                                   Participant_Key         => BuiltinTopicKey_T_INITIALIZER, 
  5567.    --                                                   Topic_Name              => NULL_STRING, 
  5568.    --                                                   Type_Name               => NULL_STRING, 
  5569.    --                                                   Durability              => DURABILITY_QOS_POLICY_DEFAULT, 
  5570.    --                                                   Deadline                => DEADLINE_QOS_POLICY_DEFAULT, 
  5571.    --                                                   Latency_Budget          => LATENCY_BUDGET_QOS_POLICY_DEFAULT, 
  5572.    --                                                   Liveliness              => LIVELINESS_QOS_POLICY_DEFAULT, 
  5573.    --                                                   Reliability             => RELIABILITY_QOS_POLICY_DEFAULT, 
  5574.    --                                                   Ownership               => OWNERSHIP_QOS_POLICY_DEFAULT, 
  5575.    --                                                   Destination_Order       => DESTINATION_ORDER_QOS_POLICY_DEFAULT, 
  5576.    --                                                   User_Data               => USER_DATA_QOS_POLICY_DEFAULT, 
  5577.    --                                                   Time_Based_Filter       => TIME_BASED_FILTER_QOS_POLICY_DEFAULT, 
  5578.    --                                                   Presentation            => PRESENTATION_QOS_POLICY_DEFAULT, 
  5579.    --                                                   Partition               => PARTITION_QOS_POLICY_DEFAULT, 
  5580.    --                                                   Topic_Data              => TOPIC_DATA_QOS_POLICY_DEFAULT, 
  5581.    --                                                   Group_Data              => GROUP_DATA_QOS_POLICY_DEFAULT, 
  5582.    --                                                   Type_Consistency        => TYPE_CONSISTENCY_ENFORCEMENT_QOS_POLICY_DEFAULT, 
  5583.    --                                                   Representation          => DataRepresentationQosPolicy_INITIALIZER, 
  5584.    --                                                   Data_Tags               => DataTagQosPolicy_INITIALIZER, 
  5585.    --                                                   --  extensions 
  5586.    --                                                   Type_Code               => null, 
  5587.    --                                                   Subscriber_Key          => BuiltinTopicKey_T_INITIALIZER, 
  5588.    --                                                   Property                => PROPERTY_QOS_POLICY_DEFAULT, 
  5589.    --                                                   Unicast_Locators        => LocatorSeq.DEFAULT_SEQUENCE, 
  5590.    --                                                   Multicast_Locators      => LocatorSeq.DEFAULT_SEQUENCE, 
  5591.    --                                                   Content_Filter_Property => CONTENT_FILTER_PROPERTY_DEFAULT, 
  5592.    --                                                   Virtual_Guid            =>  (Value => (others => 0)), 
  5593.    --                                                   Service                 => SERVICE_QOS_POLICY_DEFAULT, 
  5594.    --                                                   Rtps_Protocol_Version   => PROTOCOL_VERSION_DEFAULT, 
  5595.    --                                                   Rtps_Vendor_Id          => VENDOR_ID_DEFAULT, 
  5596.    --                                                   Product_Version         => PRODUCTVERSION_UNKNOWN, 
  5597.    --                                                   disable_positive_acks   => False, 
  5598.    --                                                   expects_inline_qos      => False, 
  5599.    --                                                   receive_queue_size      => 0, 
  5600.    --                                                   is_incompatible         => False); 
  5601.  
  5602.    type SubscriptionBuiltinTopicData_Array is array (Natural range <>) of aliased SubscriptionBuiltinTopicData; 
  5603.    pragma Convention (C, SubscriptionBuiltinTopicData_Array); 
  5604.  
  5605.    function SubscriptionBuiltinTopicData_Get_TypeCode return Standard.DDS.TypeCode_Access; 
  5606.    pragma Import (C, SubscriptionBuiltinTopicData_Get_TypeCode, "DDS_SubscriptionBuiltinTopicData_get_typecode"); 
  5607.  
  5608.    procedure Initialize (This : in out SubscriptionBuiltinTopicData); 
  5609.    procedure Finalize (This : in out SubscriptionBuiltinTopicData); 
  5610.    procedure Copy (Dst : in out SubscriptionBuiltinTopicData; 
  5611.                    Src : in SubscriptionBuiltinTopicData); 
  5612.  
  5613.    package SubscriptionBuiltinTopicData_Seq is new DDS_Support.Sequences_Generic 
  5614.      (Element        => DDS.SubscriptionBuiltinTopicData, 
  5615.       Element_Access => DDS.SubscriptionBuiltinTopicData_Access, 
  5616.       Index_Type     => Natural, 
  5617.       First_Element  => 1, 
  5618.       Element_Array  => DDS.SubscriptionBuiltinTopicData_Array); 
  5619.    --  <dref>SubscriptionBuiltinTopicDataSeq</dref> 
  5620.  
  5621.    -- 
  5622.    --  dds/dds_c_topic.h 
  5623.    -- 
  5624.  
  5625.    type KeyHash_Value_Array is array (0 .. 15) of aliased DDS.Octet; 
  5626.  
  5627.    type KeyHash_T is record 
  5628.       Value  : aliased KeyHash_Value_Array := (others => 0); 
  5629.       Length : aliased DDS.Unsigned_Long := 0; 
  5630.    end record with 
  5631.      Convention => C; 
  5632.  
  5633.    --  ---------------------------------------------------------- 
  5634.    --                  InconsistentTopicStatus 
  5635.    --  ---------------------------------------------------------- 
  5636.  
  5637.    type InconsistentTopicStatus is record 
  5638.       Total_Count        : aliased Long := 0; 
  5639.       Total_Count_Change : aliased Long := 0; 
  5640.    end record with 
  5641.      Convention => C; 
  5642.    --  <dref>InconsistentTopicStatus</dref> 
  5643.    --  <dref name="Total_Count">InconsistentTopicStatus_total_count</dref> 
  5644.    --  <dref name="Total_Count_Change">InconsistentTopicStatus_total_count_change</dref> 
  5645.  
  5646.    InconsistentTopicStatus_INITIALIZER : constant InconsistentTopicStatus := 
  5647.                                            (Total_Count        => 0, 
  5648.                                             Total_Count_Change => 0); 
  5649.  
  5650.    --  ---------------------------------------------------------- 
  5651.    --                  TopicQos 
  5652.    --  ---------------------------------------------------------- 
  5653.  
  5654.    type TopicQos is new Ada.Finalization.Limited_Controlled with record 
  5655.       Topic_Data         : aliased TopicDataQosPolicy; 
  5656.       Durability         : aliased DurabilityQosPolicy; 
  5657.       Durability_Service : aliased DurabilityServiceQosPolicy; 
  5658.       Deadline           : aliased DeadlineQosPolicy; 
  5659.       Latency_Budget     : aliased LatencyBudgetQosPolicy; 
  5660.       Liveliness         : aliased LivelinessQosPolicy; 
  5661.       Reliability        : aliased ReliabilityQosPolicy; 
  5662.       Destination_Order  : aliased DestinationOrderQosPolicy; 
  5663.       History            : aliased HistoryQosPolicy; 
  5664.       Resource_Limits    : aliased ResourceLimitsQosPolicy; 
  5665.       Transport_Priority : aliased TransportPriorityQosPolicy; 
  5666.       Lifespan           : aliased LifespanQosPolicy; 
  5667.       Ownership          : aliased OwnershipQosPolicy; 
  5668.       Representation     : aliased DataRepresentationQosPolicy; 
  5669.       -- --- Extensions: ---------------------------------------------------- 
  5670.       Protocol           : aliased TopicProtocolQosPolicy; 
  5671.    end record with 
  5672.      Convention => C; 
  5673.    --  <dref>TopicQos</dref> 
  5674.    --  <dref name="Topic_Data">TopicQos_topic_data</dref> 
  5675.    --  <dref name="Durability">TopicQos_durability</dref> 
  5676.    --  <dref name="Durability_Service">TopicQos_durability_service</dref> 
  5677.    --  <dref name="Deadline">TopicQos_deadline</dref> 
  5678.    --  <dref name="Latency_Budget">TopicQos_latency_budget</dref> 
  5679.    --  <dref name="Liveliness">TopicQos_liveliness</dref> 
  5680.    --  <dref name="Reliability">TopicQos_reliability</dref> 
  5681.    --  <dref name="Destination_Order">TopicQos_destination_order</dref> 
  5682.    --  <dref name="History">TopicQos_history</dref> 
  5683.    --  <dref name="Resource_Limits">TopicQos_resource_limits</dref> 
  5684.    --  <dref name="Transport_Priority">TopicQos_transport_priority</dref> 
  5685.    --  <dref name="Lifespan">TopicQos_lifespan</dref> 
  5686.    --  <dref name="Ownership">TopicQos_ownership</dref> 
  5687.    --  <dref name="Representation">TopicQos_representation</dref> 
  5688.    --  <dref internal="true" name="Protocol">TopicQos_protocol</dref> 
  5689.  
  5690.    type TopicQos_Access is access TopicQos; 
  5691.  
  5692.    --  <dref>TopicQos_initialize</dref> 
  5693.    procedure Initialize 
  5694.      (Self : in out TopicQos); 
  5695.  
  5696.    --  <dref>TopicQos_finalize</dref> 
  5697.    procedure Finalize 
  5698.      (Self : in out TopicQos); 
  5699.  
  5700.    --  <dref>TopicQos_copy</dref> 
  5701.    procedure Copy 
  5702.      (Target : in out TopicQos; 
  5703.       Source : in TopicQos); 
  5704.  
  5705.    -- 
  5706.    --  dds/dds_c_publication.h 
  5707.    -- 
  5708.  
  5709.    --  ---------------------------------------------------------- 
  5710.    --                  OfferedDeadlineMissedStatus 
  5711.    --  ---------------------------------------------------------- 
  5712.  
  5713.    type OfferedDeadlineMissedStatus is record 
  5714.       Total_Count          : aliased Long := 0; 
  5715.       Total_Count_Change   : aliased Long := 0; 
  5716.       Last_Instance_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5717.    end record with 
  5718.      Convention => C; 
  5719.    --  <dref>OfferedDeadlineMissedStatus</dref> 
  5720.    --  <dref name="Total_Count">OfferedDeadlineMissedStatus_total_count</dref> 
  5721.    --  <dref name="Total_Count_Change">OfferedDeadlineMissedStatus_total_count_change</dref> 
  5722.    --  <dref name="Last_Instance_Handle">OfferedDeadlineMissedStatus_last_instance_handle</dref> 
  5723.  
  5724.  
  5725.    OfferedDeadlineMissedStatus_INITIALIZER : constant OfferedDeadlineMissedStatus := 
  5726.                                                (Total_Count          => 0, 
  5727.                                                 Total_Count_Change   => 0, 
  5728.                                                 Last_Instance_Handle => Null_InstanceHandle_T); 
  5729.  
  5730.    --  ---------------------------------------------------------- 
  5731.    --                  LivelinessLostStatus 
  5732.    --  ---------------------------------------------------------- 
  5733.  
  5734.    type LivelinessLostStatus is record 
  5735.       Total_Count        : aliased Long := 0; 
  5736.       Total_Count_Change : aliased Long := 0; 
  5737.    end record with 
  5738.      Convention => C; 
  5739.    --  <dref>LivelinessLostStatus</dref> 
  5740.    --  <dref name="Total_Count">LivelinessLostStatus_total_count</dref> 
  5741.    --  <dref name="Total_Count_Change">LivelinessLostStatus_total_count_change</dref> 
  5742.  
  5743.    LivelinessLostStatus_INITIALIZER : constant LivelinessLostStatus := 
  5744.                                         (Total_Count        => 0, 
  5745.                                          Total_Count_Change => 0); 
  5746.  
  5747.    --  ---------------------------------------------------------- 
  5748.    --                  OfferedIncompatibleQosStatus 
  5749.    --  ---------------------------------------------------------- 
  5750.  
  5751.    type OfferedIncompatibleQosStatus is record 
  5752.       Total_Count        : aliased Long := 0; 
  5753.       Total_Count_Change : aliased Long := 0; 
  5754.       Last_Policy_Id     : aliased QosPolicyId_T := INVALID_QOS_POLICY_ID; 
  5755.       Policies           : aliased QosPolicyCount_Seq.Sequence; 
  5756.    end record with 
  5757.      Convention => C; 
  5758.    --  <dref>OfferedIncompatibleQosStatus</dref> 
  5759.    --  <dref name="Total_Count">OfferedIncompatibleQosStatus_total_count</dref> 
  5760.    --  <dref name="Total_Count_Change">OfferedIncompatibleQosStatus_total_count_change</dref> 
  5761.    --  <dref name="Last_Policy_Id">OfferedIncompatibleQosStatus_last_policy_id</dref> 
  5762.    --  <dref name="Policies">OfferedIncompatibleQosStatus_policies</dref> 
  5763.  
  5764.  
  5765.    type OfferedIncompatibleQosStatus_Access is access all OfferedIncompatibleQosStatus; 
  5766.  
  5767.    --     OfferedIncompatibleQosStatus_INITIALIZER : constant OfferedIncompatibleQosStatus := 
  5768.    --                                                  (Total_Count        => 0, 
  5769.    --                                                   Total_Count_Change => 0, 
  5770.    --                                                   Last_Policy_Id     => INVALID_QOS_POLICY_ID, 
  5771.    --                                                   Policies           => QosPolicyCount_Seq.DEFAULT_SEQUENCE); 
  5772.  
  5773.    --  ---------------------------------------------------------- 
  5774.    --                  PublicationMatchedStatus 
  5775.    --  ---------------------------------------------------------- 
  5776.  
  5777.    type PublicationMatchedStatus is record 
  5778.       Total_Count              : aliased Long := 0; 
  5779.       Total_Count_Change       : aliased Long := 0; 
  5780.       Current_Count            : aliased Long := 0; 
  5781.       Current_Count_Peak       : aliased Long := 0; 
  5782.       Current_Count_Change     : aliased Long := 0; 
  5783.       Last_Subscription_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5784.    end record with 
  5785.      Convention => C; 
  5786.    --  <dref>PublicationMatchedStatus</dref> 
  5787.    --  <dref name="Total_Count">PublicationMatchedStatus_total_count</dref> 
  5788.    --  <dref name="Total_Count_Change">PublicationMatchedStatus_total_count_change</dref> 
  5789.    --  <dref name="Current_Count">PublicationMatchedStatus_current_count</dref> 
  5790.    --  <dref name="Current_Count_Peak">PublicationMatchedStatus_current_count_peak</dref> 
  5791.    --  <dref name="Current_Count_Change">PublicationMatchedStatus_current_count_change</dref> 
  5792.    --  <dref name="Last_Subscription_Handle">PublicationMatchedStatus_last_subscription_handle</dref> 
  5793.  
  5794.  
  5795.    PublicationMatchedStatus_INITIALIZER : constant PublicationMatchedStatus := 
  5796.                                             (Total_Count              => 0, 
  5797.                                              Total_Count_Change       => 0, 
  5798.                                              Current_Count            => 0, 
  5799.                                              Current_Count_Peak       => 0, 
  5800.                                              Current_Count_Change     => 0, 
  5801.                                              Last_Subscription_Handle => Null_InstanceHandle_T); 
  5802.  
  5803.    --  ---------------------------------------------------------- 
  5804.    --                  ReliableWriterCacheEventCount 
  5805.    --  ---------------------------------------------------------- 
  5806.  
  5807.    type ReliableWriterCacheEventCount is record 
  5808.       Total_Count        : aliased Long := 0; 
  5809.       Total_Count_Change : aliased Long := 0; 
  5810.    end record; 
  5811.    --  <dref>ReliableWriterCacheEventCount</dref> 
  5812.    --  <dref name="Total_Count">ReliableWriterCacheEventCount_total_count</dref> 
  5813.    --  <dref name="Total_Count_Change">ReliableWriterCacheEventCount_total_count_change</dref> 
  5814.  
  5815.    pragma Convention (C, ReliableWriterCacheEventCount); 
  5816.  
  5817.    ReliableWriterCacheEventCount_INITIALIZER : constant ReliableWriterCacheEventCount := 
  5818.                                                  (Total_Count        => 0, 
  5819.                                                   Total_Count_Change => 0); 
  5820.  
  5821.    --  ---------------------------------------------------------- 
  5822.    --                  ReliableWriterCacheChangedStatus 
  5823.    --  ---------------------------------------------------------- 
  5824.  
  5825.    type ReliableWriterCacheChangedStatus is record 
  5826.       Empty_Reliable_Writer_Cache          : aliased ReliableWriterCacheEventCount; 
  5827.       Full_Reliable_Writer_Cache           : aliased ReliableWriterCacheEventCount; 
  5828.       Low_Watermark_Reliable_Writer_Cache  : aliased ReliableWriterCacheEventCount; 
  5829.       High_Watermark_Reliable_Writer_Cache : aliased ReliableWriterCacheEventCount; 
  5830.       Unacknowledged_Sample_Count          : aliased Long := 0; 
  5831.       Unacknowledged_Sample_Count_Peak     : aliased Long := 0; 
  5832.       Replaced_Unacknowledged_Sample_Count : aliased Long_Long := 0; 
  5833.    end record; 
  5834.    --  <dref>ReliableWriterCacheChangedStatus</dref> 
  5835.    --  <dref name="Empty_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_empty_reliable_writer_cache</dref> 
  5836.    --  <dref name="Full_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_full_reliable_writer_cache</dref> 
  5837.    --  <dref name="Low_Watermark_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_low_watermark_reliable_writer_cache</dref> 
  5838.    --  <dref name="High_Watermark_Reliable_Writer_Cache">ReliableWriterCacheChangedStatus_high_watermark_reliable_writer_cache</dref> 
  5839.    --  <dref name="Unacknowledged_Sample_Count">ReliableWriterCacheChangedStatus_unacknowledged_sample_count</dref> 
  5840.    --  <dref name="Unacknowledged_Sample_Count_peak">ReliableWriterCacheChangedStatus_unacknowledged_sample_count_peak</dref> 
  5841.    --  <dref name="Replaced_Unacknowledged_Sample_Count">ReliableWriterCacheChangedStatus_replaced_unacknowledged_sample_count</dref> 
  5842.  
  5843.    pragma Convention (C, ReliableWriterCacheChangedStatus); 
  5844.  
  5845.    ReliableWriterCacheChangedStatus_INITIALIZER : constant ReliableWriterCacheChangedStatus := 
  5846.                                                     (Empty_Reliable_Writer_Cache          => ReliableWriterCacheEventCount_INITIALIZER, 
  5847.                                                      Full_Reliable_Writer_Cache           => ReliableWriterCacheEventCount_INITIALIZER, 
  5848.                                                      Low_Watermark_Reliable_Writer_Cache  => ReliableWriterCacheEventCount_INITIALIZER, 
  5849.                                                      High_Watermark_Reliable_Writer_Cache => ReliableWriterCacheEventCount_INITIALIZER, 
  5850.                                                      Unacknowledged_Sample_Count          => 0, 
  5851.                                                      Unacknowledged_Sample_Count_Peak     => 0, 
  5852.                                                      Replaced_Unacknowledged_Sample_Count => 0); 
  5853.  
  5854.    --  ---------------------------------------------------------- 
  5855.    --                  ReliableReaderActivityChangedStatus 
  5856.    --  ---------------------------------------------------------- 
  5857.  
  5858.    type ReliableReaderActivityChangedStatus is record 
  5859.       Active_Count          : aliased Long := 0; 
  5860.       Inactive_Count        : aliased Long := 0; 
  5861.       Active_Count_Change   : aliased Long := 0; 
  5862.       Inactive_Count_Change : aliased Long := 0; 
  5863.       Last_Instance_Handle  : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5864.    end record; 
  5865.    --  <dref>ReliableReaderActivityChangedStatus</dref> 
  5866.    --  <dref name="Acitve_Count">ReliableReaderActivityChangedStatus_active_count</dref> 
  5867.    --  <dref name="Inacitve_Count">ReliableReaderActivityChangedStatus_inactive_count</dref> 
  5868.    --  <dref name="Active_Count_change">ReliableReaderActivityChangedStatus_active_count_change</dref> 
  5869.    --  <dref name="Inactive_Count_change">ReliableReaderActivityChangedStatus_inactive_count_change</dref> 
  5870.    --  <dref name="Last_Instance_Handle">ReliableReaderActivityChangedStatus_last_instance_handle</dref> 
  5871.  
  5872.    pragma Convention (C, ReliableReaderActivityChangedStatus); 
  5873.  
  5874.    ReliableReaderActivityChangedStatus_INITIALIZER : constant  ReliableReaderActivityChangedStatus := 
  5875.                                                        (Active_Count          => 0, 
  5876.                                                         Inactive_Count        => 0, 
  5877.                                                         Active_Count_Change   => 0, 
  5878.                                                         Inactive_Count_Change => 0, 
  5879.                                                         Last_Instance_Handle  => Null_InstanceHandle_T); 
  5880.  
  5881.    --  ---------------------------------------------------------- 
  5882.    --                  AcknowledgmentInfo 
  5883.    --  ---------------------------------------------------------- 
  5884.  
  5885.    type AcknowledgmentInfo is record 
  5886.       Subscription_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  5887.       Sample_Identity     : aliased SampleIdentity_T; 
  5888.       Cookie              : aliased Cookie_T; 
  5889.       Valid_Response_Data : aliased Boolean := False; 
  5890.       Response_Data       : aliased AckResponseData_T; 
  5891.    end record; 
  5892.    --  <dref>AcknowledgmentInfo</dref> 
  5893.    --  <dref name="Subscription_Handle">AcknowledgmentInfo_subscription_handle</dref> 
  5894.    --  <dref name="Sample_Identity">AcknowledgmentInfo_sample_identity</dref> 
  5895.    --  <dref name="Cookie">AcknowledgmentInfo_cookie</dref> 
  5896.    --  <dref name="Valid_Response_Data">AcknowledgmentInfo_valid_response_data</dref> 
  5897.    --  <dref name="Response_Data">AcknowledgmentInfo_response_data</dref> 
  5898.  
  5899.    pragma Convention (C, AcknowledgmentInfo); 
  5900.    type AcknowledgmentInfo_Access is access all AcknowledgmentInfo; 
  5901.  
  5902.    type ServiceRequestAcceptedStatus is new RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h.DDS_ServiceRequestAcceptedStatus; 
  5903.    type ServiceRequestAcceptedStatus_Access is access all  ServiceRequestAcceptedStatus with Storage_Size => 0; 
  5904.  
  5905.    --  ---------------------------------------------------------- 
  5906.    --                  DataWriterQos 
  5907.    --  ---------------------------------------------------------- 
  5908.  
  5909.    type DataWriterQos is new Ada.Finalization.Limited_Controlled with record 
  5910.    --- 
  5911.       Durability             : aliased DurabilityQosPolicy; 
  5912.       Durability_Service     : aliased DurabilityServiceQosPolicy; 
  5913.       Deadline               : aliased DeadlineQosPolicy; 
  5914.       Latency_Budget         : aliased LatencyBudgetQosPolicy; 
  5915.       Liveliness             : aliased LivelinessQosPolicy; 
  5916.       Reliability            : aliased ReliabilityQosPolicy; 
  5917.       Destination_Order      : aliased DestinationOrderQosPolicy; 
  5918.       History                : aliased HistoryQosPolicy; 
  5919.       Resource_Limits        : aliased ResourceLimitsQosPolicy; 
  5920.       Transport_Priority     : aliased TransportPriorityQosPolicy; 
  5921.       Lifespan               : aliased LifespanQosPolicy; 
  5922.       User_Data              : aliased UserDataQosPolicy; 
  5923.       Ownership              : aliased OwnershipQosPolicy; 
  5924.       Ownership_Strength     : aliased OwnershipStrengthQosPolicy; 
  5925.       Writer_Data_Lifecycle  : aliased WriterDataLifecycleQosPolicy; 
  5926.       Representation         : aliased DataRepresentationQosPolicy; 
  5927.       Data_Tags              : aliased DataTagQosPolicy; 
  5928.       -- --- Extensions: ---------------------------------------------------- 
  5929.       Writer_Resource_Limits : aliased DataWriterResourceLimitsQosPolicy; 
  5930.       Protocol               : aliased DataWriterProtocolQosPolicy; 
  5931.       Transport_Selection    : aliased TransportSelectionQosPolicy; 
  5932.       Unicast                : aliased TransportUnicastQosPolicy; 
  5933.       Encapsulation          : aliased TransportEncapsulationQosPolicy; 
  5934.       Publish_Mode           : aliased PublishModeQosPolicy; 
  5935.       Property               : aliased PropertyQosPolicy; 
  5936.       Service                : aliased ServiceQosPolicy; 
  5937.       Batch                  : aliased BatchQosPolicy; 
  5938.       Multi_Channel          : aliased MultiChannelQosPolicy; 
  5939.       Availability           : aliased AvailabilityQosPolicy; 
  5940.       Publication_Name       : aliased EntityNameQosPolicy; 
  5941.       Topic_Query_Dispatch   : aliased TopicQueryDispatchQosPolicy; 
  5942.       Transfer_Mode          : aliased DataWriterTransferModeQosPolicy; 
  5943.       Type_Support           : aliased TypeSupportQosPolicy; 
  5944.    end record; 
  5945.    --  <dref>DataWriterQos</dref> 
  5946.    --  <dref name="Durability">DataWriterQos_durability</dref> 
  5947.    --  <dref name="Durability_Service">DataWriterQos_durability_service</dref> 
  5948.    --  <dref name="Deadline">DataWriterQos_deadline</dref> 
  5949.    --  <dref name="Latency_Budget">DataWriterQos_latency_budget</dref> 
  5950.    --  <dref name="Liveliness">DataWriterQos_liveliness</dref> 
  5951.    --  <dref name="Reliability">DataWriterQos_reliability</dref> 
  5952.    --  <dref name="Destination_Order">DataWriterQos_destination_order</dref> 
  5953.    --  <dref name="History">DataWriterQos_history</dref> 
  5954.    --  <dref name="Resource_Limits">DataWriterQos_resource_limits</dref> 
  5955.    --  <dref name="Transport_Priority">DataWriterQos_transport_priority</dref> 
  5956.    --  <dref name="Lifespan">DataWriterQos_lifespan</dref> 
  5957.    --  <dref name="User_Data">DataWriterQos_user_data</dref> 
  5958.    --  <dref name="Ownership">DataWriterQos_ownership</dref> 
  5959.    --  <dref name="Ownership_Strength">DataWriterQos_ownership_strength</dref> 
  5960.    --  <dref name="Writer_Data_Lifecycle">DataWriterQos_writer_data_lifecycle</dref> 
  5961.    --  <dref name="Representation">DataWriterQos_representation</dref> 
  5962.    --  <dref name="Data_Tags">DataWriterQos_data_tags</dref> 
  5963.    --  <dref name="Writer_Resource_Limits">DataWriterQos_writer_resource_limits</dref> 
  5964.    --  <dref name="Protocol">DataWriterQos_protocol</dref> 
  5965.    --  <dref name="Transport_Selection">DataWriterQos_transport_selection</dref> 
  5966.    --  <dref name="Unicast">DataWriterQos_unicast</dref> 
  5967.    --  <dref name="Encapsulation">DataWriterQos_encapsulation</dref> 
  5968.    --  <dref name="Publish_Mode">DataWriterQos_publish_mode</dref> 
  5969.    --  <dref name="Property">DataWriterQos_property</dref> 
  5970.    --  <dref name="Service">DataWriterQos_service</dref> 
  5971.    --  <dref name="batch">DataWriterQos_batch</dref> 
  5972.    --  <dref name="multi_channel">DataWriterQos_multi_channel</dref> 
  5973.    --  <dref name="Availability">DataWriterQos_availability</dref> 
  5974.    --  <dref name="publication_name">DataWriterQos_publication_name</dref> 
  5975.    --  <dref name="Topic_Query_Dispatch">DataWriterQos_topic_query_dispatch</dref> 
  5976.    --  <dref name="Transfer_Mode">DataWriterQos_transfer_mode</dref> 
  5977.    --  <dref name="Type_Support">DataWriterQos_type_support</dref> 
  5978.  
  5979.    pragma Convention (C, DataWriterQos); 
  5980.  
  5981.    --  <dref>DataWriterQos_initialize</dref> 
  5982.    procedure Initialize 
  5983.      (Self : in out DataWriterQos); 
  5984.  
  5985.    --  <dref>DataWriterQos_finalize</dref> 
  5986.    procedure Finalize 
  5987.      (Self : in out DataWriterQos); 
  5988.  
  5989.    --  <dref>DataWriterQos_copy</dref> 
  5990.    procedure Copy 
  5991.      (Target : out DataWriterQos; 
  5992.       Source : in DataWriterQos); 
  5993.  
  5994.    --  ---------------------------------------------------------- 
  5995.    --                  PublisherQos 
  5996.    --  ---------------------------------------------------------- 
  5997.  
  5998.    type PublisherQos is  new Ada.Finalization.Limited_Controlled with record 
  5999.       Presentation           : PresentationQosPolicy; 
  6000.       Partition              : PartitionQosPolicy; 
  6001.       Group_Data             : GroupDataQosPolicy; 
  6002.       Entity_Factory         : EntityFactoryQosPolicy; 
  6003.       -- --- Extensions: ---------------------------------------------------- 
  6004.       Asynchronous_Publisher : aliased AsynchronousPublisherQosPolicy; 
  6005.       Exclusive_Area         : aliased ExclusiveAreaQosPolicy; 
  6006.       Protocol               : aliased PublisherProtocolQosPolicy; 
  6007.       Publisher_Name         : aliased EntityNameQosPolicy; 
  6008.    end record; 
  6009.    --  <dref>PublisherQos</dref> 
  6010.    --  <dref name="Presentation">PublisherQos_presentation</dref> 
  6011.    --  <dref name="Partition">PublisherQos_partition</dref> 
  6012.    --  <dref name="Group_Data">PublisherQos_group_data</dref> 
  6013.    --  <dref name="Entity_Factory">PublisherQos_entity_factory</dref> 
  6014.    --  <dref name="Asynchronous_Publisher">PublisherQos_asynchronous_publisher</dref> 
  6015.    --  <dref name="Exclusive_Area">PublisherQos_exclusive_area</dref> 
  6016.    --  <dref internal="True" name="Protocol">PublisherQos_protocol</dref> 
  6017.    --  <dref name="publisher_name">PublisherQos_publisher_name</dref> 
  6018.  
  6019.    pragma Convention (C, PublisherQos); 
  6020.    type PublisherQos_Access is access PublisherQos; 
  6021.  
  6022.    --  <dref>PublisherQos_initialize</dref> 
  6023.    procedure Initialize 
  6024.      (Self : in out PublisherQos); 
  6025.  
  6026.    --  <dref>PublisherQos_finalize</dref> 
  6027.    procedure Finalize 
  6028.      (Self : in out PublisherQos); 
  6029.  
  6030.    --  <dref>PublisherQos_copy</dref> 
  6031.    procedure Copy 
  6032.      (Target : out PublisherQos; 
  6033.       Source : in  PublisherQos); 
  6034.  
  6035.    --  ---------------------------------------------------------- 
  6036.    --                  DataWriterCacheStatus 
  6037.    --  ---------------------------------------------------------- 
  6038.  
  6039.    type DataWriterCacheStatus is record 
  6040.       Sample_Count_Peak                : aliased Long_Long; 
  6041.       Sample_Count                     : aliased Long_Long; 
  6042.       Alive_Instance_Count             : aliased Long_Long; 
  6043.       Alive_Instance_Count_Peak        : aliased Long_Long; 
  6044.       Disposed_Instance_Count          : aliased Long_Long; 
  6045.       Disposed_Instance_Count_Peak     : aliased Long_Long; 
  6046.       Unregistered_Instance_Count      : aliased Long_Long; 
  6047.       Unregistered_Instance_Count_Peak : aliased Long_Long; 
  6048.    end record; 
  6049.    --  <dref>DataWriterCacheStatus</dref> 
  6050.    --  <dref name="sample_count_peak">DataWriterCacheStatus_sample_count_peak</dref> 
  6051.    --  <dref name="sample_count">DataWriterCacheStatus_sample_count</dref> 
  6052.    --  <dref name="alive_instance_count">DataWriterCacheStatus_alive_instance_count</dref> 
  6053.    --  <dref name="alive_instance_count_peak">DataWriterCacheStatus_alive_instance_count_peak</dref> 
  6054.    --  <dref name="disposed_instance_count">DataWriterCacheStatus_disposed_instance_count</dref> 
  6055.    --  <dref name="disposed_instance_count_peak">DataWriterCacheStatus_disposed_instance_count_peak</dref> 
  6056.    --  <dref name="unregistered_instance_count">DataWriterCacheStatus_unregistered_instance_count</dref> 
  6057.    --  <dref name="unregistered_instance_count_peak">DataWriterCacheStatus_unregistered_instance_count_peak</dref> 
  6058.  
  6059.    pragma Convention (C, DataWriterCacheStatus); 
  6060.  
  6061.    --  NOTE: filtered_sample_* fields have been removed from the documentation (see CORE-5977) 
  6062.    --  and may eventually be removed from this structure (CORE-5953) 
  6063.    type DataWriterProtocolStatus is record 
  6064.       Pushed_Sample_Count                                  : aliased DDS.Long_Long := 0; 
  6065.       Pushed_Sample_Count_Change                           : aliased DDS.Long_Long := 0; 
  6066.       Pushed_Sample_Bytes                                  : aliased DDS.Long_Long := 0; 
  6067.       Pushed_Sample_Bytes_Change                           : aliased DDS.Long_Long := 0; 
  6068.       Filtered_Sample_Count                                : aliased DDS.Long_Long := 0; 
  6069.       Filtered_Sample_Count_Change                         : aliased DDS.Long_Long := 0; 
  6070.       Filtered_Sample_Bytes                                : aliased DDS.Long_Long := 0; 
  6071.       Filtered_Sample_Bytes_Change                         : aliased DDS.Long_Long := 0; 
  6072.       Sent_Heartbeat_Count                                 : aliased DDS.Long_Long := 0; 
  6073.       Sent_Heartbeat_Count_Change                          : aliased DDS.Long_Long := 0; 
  6074.       Sent_Heartbeat_Bytes                                 : aliased DDS.Long_Long := 0; 
  6075.       Sent_Heartbeat_Bytes_Change                          : aliased DDS.Long_Long := 0; 
  6076.       Pulled_Sample_Count                                  : aliased DDS.Long_Long := 0; 
  6077.       Pulled_Sample_Count_Change                           : aliased DDS.Long_Long := 0; 
  6078.       Pulled_Sample_Bytes                                  : aliased DDS.Long_Long := 0; 
  6079.       Pulled_Sample_Bytes_Change                           : aliased DDS.Long_Long := 0; 
  6080.       Received_Ack_Count                                   : aliased DDS.Long_Long := 0; 
  6081.       Received_Ack_Count_Change                            : aliased DDS.Long_Long := 0; 
  6082.       Received_Ack_Bytes                                   : aliased DDS.Long_Long := 0; 
  6083.       Received_Ack_Bytes_Change                            : aliased DDS.Long_Long := 0; 
  6084.       Received_Nack_Count                                  : aliased DDS.Long_Long := 0; 
  6085.       Received_Nack_Count_Change                           : aliased DDS.Long_Long := 0; 
  6086.       Received_Nack_Bytes                                  : aliased DDS.Long_Long := 0; 
  6087.       Received_Nack_Bytes_Change                           : aliased DDS.Long_Long := 0; 
  6088.       Sent_Gap_Count                                       : aliased DDS.Long_Long := 0; 
  6089.       Sent_Gap_Count_Change                                : aliased DDS.Long_Long := 0; 
  6090.       Sent_Gap_Bytes                                       : aliased DDS.Long_Long := 0; 
  6091.       Sent_Gap_Bytes_Change                                : aliased DDS.Long_Long := 0; 
  6092.       Rejected_Sample_Count                                : aliased DDS.Long_Long := 0; 
  6093.       Rejected_Sample_Count_Change                         : aliased DDS.Long_Long := 0; 
  6094.       Send_Window_Size                                     : aliased DDS.Long := 0; 
  6095.       First_Available_Sample_Sequence_Number               : aliased DDS.SequenceNumber_T; 
  6096.       Last_Available_Sample_Sequence_Number                : aliased DDS.SequenceNumber_T; 
  6097.       First_Unacknowledged_Sample_Sequence_Number          : aliased DDS.SequenceNumber_T; 
  6098.       First_Available_Sample_Virtual_Sequence_Number       : aliased DDS.SequenceNumber_T; 
  6099.       Last_Available_Sample_Virtual_Sequence_Number        : aliased DDS.SequenceNumber_T; 
  6100.       First_Unacknowledged_Sample_Virtual_Sequence_Number  : aliased DDS.SequenceNumber_T; 
  6101.       First_Unacknowledged_Sample_Subscription_Handle      : aliased DDS.InstanceHandle_T; 
  6102.       First_Unelapsed_Keep_Duration_Sample_Sequence_Number : aliased DDS.SequenceNumber_T; 
  6103.       Pushed_Fragment_Count                                : aliased DDS.Long_Long := 0; 
  6104.       Pushed_Fragment_Bytes                                : aliased DDS.Long_Long := 0; 
  6105.       Pulled_Fragment_Count                                : aliased DDS.Long_Long := 0; 
  6106.       Pulled_Fragment_Bytes                                : aliased DDS.Long_Long := 0; 
  6107.       Received_Nack_Fragment_Count                         : aliased DDS.Long_Long := 0; 
  6108.       Received_Nack_Fragment_Bytes                         : aliased DDS.Long_Long := 0; 
  6109.    end record; 
  6110.    --  <dref>DataWriterProtocolStatus</dref> 
  6111.    --  <dref name="pushed_sample_count">DataWriterProtocolStatus_pushed_sample_count</dref> 
  6112.    --  <dref name="pushed_sample_count_change">DataWriterProtocolStatus_pushed_sample_count_change</dref> 
  6113.    --  <dref name="pushed_sample_bytes">DataWriterProtocolStatus_pushed_sample_bytes</dref> 
  6114.    --  <dref name="pushed_sample_bytes_change">DataWriterProtocolStatus_pushed_sample_bytes_change</dref> 
  6115.    --  <dref name="sent_heartbeat_count">DataWriterProtocolStatus_sent_heartbeat_count</dref> 
  6116.    --  <dref name="sent_heartbeat_count_change">DataWriterProtocolStatus_sent_heartbeat_count_change</dref> 
  6117.    --  <dref name="sent_heartbeat_bytes">DataWriterProtocolStatus_sent_heartbeat_bytes</dref> 
  6118.    --  <dref name="sent_heartbeat_bytes_change">DataWriterProtocolStatus_sent_heartbeat_bytes_change</dref> 
  6119.    --  <dref name="pulled_sample_count">DataWriterProtocolStatus_pulled_sample_count</dref> 
  6120.    --  <dref name="pulled_sample_count_change">DataWriterProtocolStatus_pulled_sample_count_change</dref> 
  6121.    --  <dref name="pulled_sample_bytes">DataWriterProtocolStatus_pulled_sample_bytes</dref> 
  6122.    --  <dref name="pulled_sample_bytes_change">DataWriterProtocolStatus_pulled_sample_bytes_change</dref> 
  6123.    --  <dref name="received_ack_count">DataWriterProtocolStatus_received_ack_count</dref> 
  6124.    --  <dref name="received_ack_count_change">DataWriterProtocolStatus_received_ack_count_change</dref> 
  6125.    --  <dref name="received_ack_bytes">DataWriterProtocolStatus_received_ack_bytes</dref> 
  6126.    --  <dref name="received_ack_bytes_change">DataWriterProtocolStatus_received_ack_bytes_change</dref> 
  6127.    --  <dref name="received_nack_count">DataWriterProtocolStatus_received_nack_count</dref> 
  6128.    --  <dref name="received_nack_count_change">DataWriterProtocolStatus_received_nack_count_change</dref> 
  6129.    --  <dref name="received_nack_bytes">DataWriterProtocolStatus_received_nack_bytes</dref> 
  6130.    --  <dref name="received_nack_bytes_change">DataWriterProtocolStatus_received_nack_bytes_change</dref> 
  6131.    --  <dref name="sent_gap_count">DataWriterProtocolStatus_sent_gap_count</dref> 
  6132.    --  <dref name="sent_gap_count_change">DataWriterProtocolStatus_sent_gap_count_change</dref> 
  6133.    --  <dref name="sent_gap_bytes">DataWriterProtocolStatus_sent_gap_bytes</dref> 
  6134.    --  <dref name="sent_gap_bytes_change">DataWriterProtocolStatus_sent_gap_bytes_change</dref> 
  6135.    --  <dref name="rejected_sample_count">DataWriterProtocolStatus_rejected_sample_count</dref> 
  6136.    --  <dref name="rejected_sample_count_change">DataWriterProtocolStatus_rejected_sample_count_change</dref> 
  6137.    --  <dref name="send_window_size">DataWriterProtocolStatus_send_window_size</dref> 
  6138.    --  <dref name="first_available_sample_sequence_number">DataWriterProtocolStatus_first_available_sample_sequence_number</dref> 
  6139.    --  <dref name="last_available_sample_sequence_number">DataWriterProtocolStatus_last_available_sample_sequence_number</dref> 
  6140.    --  <dref name="first_unacknowledged_sample_sequence_number">DataWriterProtocolStatus_first_unacknowledged_sample_sequence_number</dref> 
  6141.    --  <dref name="first_available_sample_virtual_sequence_number">DataWriterProtocolStatus_first_available_sample_virtual_sequence_number</dref> 
  6142.    --  <dref name="last_available_sample_virtual_sequence_number">DataWriterProtocolStatus_last_available_sample_virtual_sequence_number</dref> 
  6143.    --  <dref name="first_unacknowledged_sample_virtual_sequence_number">DataWriterProtocolStatus_first_unacknowledged_sample_virtual_sequence_number</dref> 
  6144.    --  <dref name="first_unacknowledged_sample_subscription_handle">DataWriterProtocolStatus_first_unacknowledged_sample_subscription_handle</dref> 
  6145.    --  <dref name="first_unelapsed_keep_duration_sample_sequence_number">DataWriterProtocolStatus_first_unelapsed_keep_duration_sample_sequence_number</dref> 
  6146.    --  <dref name="pushed_fragment_count">DataWriterProtocolStatus_pushed_fragment_count</dref> 
  6147.    --  <dref name="pushed_fragment_bytes">DataWriterProtocolStatus_pushed_fragment_bytes</dref> 
  6148.    --  <dref name="pulled_fragment_count">DataWriterProtocolStatus_pulled_fragment_count</dref> 
  6149.    --  <dref name="pulled_fragment_bytes">DataWriterProtocolStatus_pulled_fragment_bytes</dref> 
  6150.    --  <dref name="received_nack_fragment_count">DataWriterProtocolStatus_received_nack_fragment_count</dref> 
  6151.    --  <dref name="received_nack_fragment_bytes">DataWriterProtocolStatus_received_nack_fragment_bytes</dref> 
  6152.  
  6153.    pragma Convention (C_Pass_By_Copy, DataWriterProtocolStatus);  -- ndds/dds_c/dds_c_publication.h:281 
  6154.  
  6155.    -- 
  6156.    --  dds/dds_c_subscription.h 
  6157.    -- 
  6158.  
  6159.    --  ---------------------------------------------------------- 
  6160.    --                  RequestedDeadlineMissedStatus 
  6161.    --  ---------------------------------------------------------- 
  6162.  
  6163.    type RequestedDeadlineMissedStatus is record 
  6164.       Total_Count          : aliased Long := 0; 
  6165.       Total_Count_Change   : aliased Long := 0; 
  6166.       Last_Instance_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6167.    end record; 
  6168.    --  <dref>RequestedDeadlineMissedStatus</dref> 
  6169.    --  <dref name="Total_Count">RequestedDeadlineMissedStatus_total_count</dref> 
  6170.    --  <dref name="Total_Count_Change">RequestedDeadlineMissedStatus_total_count_change</dref> 
  6171.    --  <dref name="Last_Instance_Handle">RequestedDeadlineMissedStatus_last_instance_handle</dref> 
  6172.  
  6173.    pragma Convention (C, RequestedDeadlineMissedStatus); 
  6174.  
  6175.    RequestedDeadlineMissedStatus_INITIALIZER : constant RequestedDeadlineMissedStatus := 
  6176.                                                  (Total_Count              => 0, 
  6177.                                                   Total_Count_Change       => 0, 
  6178.                                                   Last_Instance_Handle     => Null_InstanceHandle_T); 
  6179.  
  6180.  
  6181.    --  ---------------------------------------------------------- 
  6182.    --                  LivelinessChangedStatus 
  6183.    --  ---------------------------------------------------------- 
  6184.  
  6185.    type LivelinessChangedStatus is record 
  6186.       Alive_Count             : aliased Long := 0; 
  6187.       Not_Alive_Count         : aliased Long := 0; 
  6188.       Alive_Count_Change      : aliased Long := 0; 
  6189.       Not_Alive_Count_Change  : aliased Long := 0; 
  6190.       Last_Publication_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6191.    end record; 
  6192.    --  <dref>LivelinessChangedStatus</dref> 
  6193.    --  <dref name="Alive_Count">LivelinessChangedStatus_alive_count</dref> 
  6194.    --  <dref name="Not_Alive_Count">LivelinessChangedStatus_not_alive_count</dref> 
  6195.    --  <dref name="Alive_Count_Change">LivelinessChangedStatus_alive_count_change</dref> 
  6196.    --  <dref name="Not_Alive_Count_Change">LivelinessChangedStatus_not_alive_count_change</dref> 
  6197.    --  <dref name="Last_Publication_Handle">LivelinessChangedStatus_last_publication_handle</dref> 
  6198.  
  6199.    pragma Convention (C, LivelinessChangedStatus); 
  6200.  
  6201.    LivelinessChangedStatus_INITIALIZER : constant LivelinessChangedStatus := 
  6202.                                            (Alive_Count             => 0, 
  6203.                                             Not_Alive_Count         => 0, 
  6204.                                             Alive_Count_Change      => 0, 
  6205.                                             Not_Alive_Count_Change  => 0, 
  6206.                                             Last_Publication_Handle => Null_InstanceHandle_T); 
  6207.  
  6208.    --  ---------------------------------------------------------- 
  6209.    --                  RequestedIncompatibleQosStatus 
  6210.    --  ---------------------------------------------------------- 
  6211.  
  6212.    type RequestedIncompatibleQosStatus is record 
  6213.       Total_Count        : aliased Long := 0; 
  6214.       Total_Count_Change : aliased Long := 0; 
  6215.       Last_Policy_Id     : aliased QosPolicyId_T := INVALID_QOS_POLICY_ID; 
  6216.       Policies           : aliased QosPolicyCount_Seq.Sequence; 
  6217.    end record; 
  6218.    --  <dref>RequestedIncompatibleQosStatus</dref> 
  6219.    --  <dref name="Total_Count">RequestedIncompatibleQosStatus_total_count</dref> 
  6220.    --  <dref name="Total_Count_Change">RequestedIncompatibleQosStatus_total_count_change</dref> 
  6221.    --  <dref name="Last_Policy_Id">RequestedIncompatibleQosStatus_last_policy_id</dref> 
  6222.    --  <dref name="Policies">RequestedIncompatibleQosStatus_policies</dref> 
  6223.  
  6224.    pragma Convention (C, RequestedIncompatibleQosStatus); 
  6225.    type RequestedIncompatibleQosStatus_Access is access all RequestedIncompatibleQosStatus; 
  6226.  
  6227.    --     RequestedIncompatibleQosStatus_INITIALIZER : constant RequestedIncompatibleQosStatus := 
  6228.    --                                                    (Total_Count        => 0, 
  6229.    --                                                     Total_Count_Change => 0, 
  6230.    --                                                     Last_Policy_Id     => INVALID_QOS_POLICY_ID, 
  6231.    --                                                     Policies           => QosPolicyCount_Seq.DEFAULT_SEQUENCE); 
  6232.  
  6233.    --  ---------------------------------------------------------- 
  6234.    --                  SampleLostStatusKind 
  6235.    --  ---------------------------------------------------------- 
  6236.  
  6237.    type SampleLostStatusKind is new Unsigned_Long; 
  6238.    --  <dref>SampleLostStatusKind</dref> 
  6239.  
  6240.    NOT_LOST : constant SampleLostStatusKind := 0; 
  6241.    --  <dref>SampleLostStatusKind_NOT_LOST</dref> 
  6242.  
  6243.    LOST_BY_WRITER : constant SampleLostStatusKind := 1; 
  6244.    --  <dref>SampleLostStatusKind_LOST_BY_WRITER</dref> 
  6245.  
  6246.    LOST_BY_INSTANCES_LIMIT : constant SampleLostStatusKind := 2; 
  6247.    --  <dref>SampleLostStatusKind_LOST_BY_INSTANCES_LIMIT</dref> 
  6248.  
  6249.    LOST_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT : constant SampleLostStatusKind := 3; 
  6250.    --  <dref>SampleLostStatusKind_LOST_BY_REMOTE_WRITERS_PER_INSTANCE_LIMIT</dref> 
  6251.  
  6252.    LOST_BY_INCOMPLETE_COHERENT_SET : constant SampleLostStatusKind := 4; 
  6253.    --  <dref>SampleLostStatusKind_LOST_BY_LARGE_COHERENT_SET</dref> 
  6254.  
  6255.    LOST_BY_LARGE_COHERENT_SET : constant SampleLostStatusKind := 5; 
  6256.    --  <dref>SampleLostStatusKind_LOST_BY_LARGE_COHERENT_SET</dref> 
  6257.  
  6258.    LOST_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT : constant SampleLostStatusKind := 6; 
  6259.    --  <dref>SampleLostStatusKind_LOST_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT</dref> 
  6260.  
  6261.    LOST_BY_VIRTUAL_WRITERS_LIMIT : constant SampleLostStatusKind := 7; 
  6262.    --  <dref name="LOST_BY_VIRTUAL_WRITERS_LIMIT">SampleLostStatusKind_LOST_BY_VIRTUAL_WRITERS_LIMIT</dref> 
  6263.  
  6264.    LOST_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT : constant SampleLostStatusKind := 8; 
  6265.    --  <dref name="LOST_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT">SampleLostStatusKind_LOST_BY_REMOTE_WRITERS_PER_SAMPLE_LIMIT</dref> 
  6266.  
  6267.    LOST_BY_AVAILABILITY_WAITING_TIME : constant SampleLostStatusKind := 9; 
  6268.    --  <dref name="LOST_BY_AVAILABILITY_WAITING_TIME">SampleLostStatusKind_LOST_BY_AVAILABILITY_WAITING_TIME</dref> 
  6269.  
  6270.    LOST_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT : constant SampleLostStatusKind := 10; 
  6271.    --  <dref name="LOST_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT">SampleLostStatusKind_LOST_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT</dref> 
  6272.  
  6273.    LOST_BY_OUT_OF_MEMORY : constant SampleLostStatusKind := 11; 
  6274.    --  <dref name="LOST_BY_OUT_OF_MEMORY">SampleLostStatusKind_LOST_BY_OUT_OF_MEMORY</dref> 
  6275.  
  6276.    LOST_BY_UNKNOWN_INSTANCE : constant SampleLostStatusKind := 12; 
  6277.    --  <dref name="LOST_BY_UNKNOWN_INSTANCE">SampleLostStatusKind_LOST_BY_UNKNOWN_INSTANCE</dref> 
  6278.  
  6279.    --  type SampleLostStatusKind_Access is access constant SampleLostStatusKind; 
  6280.  
  6281.    --  ---------------------------------------------------------- 
  6282.    --                  SampleLostStatus 
  6283.    --  ---------------------------------------------------------- 
  6284.  
  6285.    type SampleLostStatus is record 
  6286.       Total_Count        : aliased Long := 0; 
  6287.       Total_Count_Change : aliased Long := 0; 
  6288.       Last_Reason        : aliased SampleLostStatusKind := NOT_LOST; 
  6289.    end record; 
  6290.    --  <dref>SampleLostStatus</dref> 
  6291.    --  <dref name="Total_Count">SampleLostStatus_total_count</dref> 
  6292.    --  <dref name="Total_Count_Change">SampleLostStatus_total_count_change</dref> 
  6293.    --  <dref name="Last_Reason">SampleLostStatus_last_reason</dref> 
  6294.  
  6295.    pragma Convention (C, SampleLostStatus); 
  6296.  
  6297.    SampleLostStatus_INITIALIZER : constant SampleLostStatus := 
  6298.                                     (Total_Count        => 0, 
  6299.                                      Total_Count_Change => 0, 
  6300.                                      Last_Reason        => NOT_LOST); 
  6301.  
  6302.    --  ---------------------------------------------------------- 
  6303.    --                  SampleRejectedStatus 
  6304.    --  ---------------------------------------------------------- 
  6305.  
  6306.    type SampleRejectedStatusKind is 
  6307.      (NOT_REJECTED, 
  6308.       REJECTED_BY_INSTANCES_LIMIT, 
  6309.       REJECTED_BY_SAMPLES_LIMIT, 
  6310.       REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT, 
  6311.       REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT, 
  6312.       REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT, 
  6313.       REJECTED_BY_DECODE_FAILURE); 
  6314.    --  <dref>SampleRejectedStatusKind</dref> 
  6315.    --  <dref name="NOT_REJECTED">SampleRejectedStatusKind_NOT_REJECTED</dref> 
  6316.    --  <dref name="REJECTED_BY_INSTANCES_LIMIT">SampleRejectedStatusKind_REJECTED_BY_INSTANCES_LIMIT</dref> 
  6317.    --  <dref name="REJECTED_BY_SAMPLES_LIMIT">SampleRejectedStatusKind_REJECTED_BY_SAMPLES_LIMIT</dref> 
  6318.    --  <dref name="REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT">SampleRejectedStatusKind_REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT</dref> 
  6319.    --  <dref name="REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT">SampleRejectedStatusKind_REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT</dref> 
  6320.    --  <dref name="REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT>SampleRejectedStatusKind_REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT</dref> 
  6321.    --  <dref name="REJECTED_BY_DECODE_FAILURE>SampleRejectedStatusKind_REJECTED_BY_DECODE_FAILURE</dref> 
  6322.  
  6323.  
  6324.    pragma Convention (C, SampleRejectedStatusKind); 
  6325.  
  6326.    for SampleRejectedStatusKind use 
  6327.      (NOT_REJECTED                                              => 0, 
  6328.       REJECTED_BY_INSTANCES_LIMIT                               => 1, 
  6329.       REJECTED_BY_SAMPLES_LIMIT                                 => 2, 
  6330.       REJECTED_BY_SAMPLES_PER_INSTANCE_LIMIT                    => 3, 
  6331.       REJECTED_BY_SAMPLES_PER_REMOTE_WRITER_LIMIT               => 6, 
  6332.       REJECTED_BY_REMOTE_WRITER_SAMPLES_PER_VIRTUAL_QUEUE_LIMIT => 9, 
  6333.       REJECTED_BY_DECODE_FAILURE                                => 10); 
  6334.  
  6335.    type SampleRejectedStatus is record 
  6336.       Total_Count          : aliased Long := 0; 
  6337.       Total_Count_Change   : aliased Long := 0; 
  6338.       Last_Reason          : aliased SampleRejectedStatusKind := NOT_REJECTED; 
  6339.       Last_Instance_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6340.    end record; 
  6341.    --  <dref>SampleRejectedStatus</dref> 
  6342.    --  <dref name="Total_Count">SampleRejectedStatus_total_count</dref> 
  6343.    --  <dref name="Total_Count_Change">SampleRejectedStatus_total_count_change</dref> 
  6344.    --  <dref name="Last_Reason">SampleRejectedStatus_last_reason</dref> 
  6345.    --  <dref name="Last_Instance_Handle">SampleRejectedStatus_last_instance_handle</dref> 
  6346.  
  6347.    SampleRejectedStatus_INITIALIZER : constant SampleRejectedStatus := 
  6348.                                         (Total_Count          => 0, 
  6349.                                          Total_Count_Change   => 0, 
  6350.                                          Last_Reason          => NOT_REJECTED, 
  6351.                                          Last_Instance_Handle => Null_InstanceHandle_T); 
  6352.  
  6353.    --  ---------------------------------------------------------- 
  6354.    --                  SubscriptionMatchedStatus 
  6355.    --  ---------------------------------------------------------- 
  6356.  
  6357.    type SubscriptionMatchedStatus is limited record 
  6358.       Total_Count             : aliased Long := 0; 
  6359.       Total_Count_Change      : aliased Long := 0; 
  6360.       Current_Count           : aliased Long := 0; 
  6361.       Current_Count_Peak      : aliased Long := 0; 
  6362.       Current_Count_Change    : aliased Long := 0; 
  6363.       Last_Publication_Handle : aliased InstanceHandle_T := Null_InstanceHandle_T; 
  6364.    end record; 
  6365.    --  <dref>SubscriptionMatchedStatus</dref> 
  6366.    --  <dref name="Total_Count">SubscriptionMatchedStatus_total_count</dref> 
  6367.    --  <dref name="Total_Count_Change">SubscriptionMatchedStatus_total_count_change</dref> 
  6368.    --  <dref name="Current_Count">SubscriptionMatchedStatus_current_count</dref> 
  6369.    --  <dref name="Current_Count_Peak">SubscriptionMatchedStatus_current_count_peak</dref> 
  6370.    --  <dref name="Current_Count_Change">SubscriptionMatchedStatus_current_count_change</dref> 
  6371.    --  <dref name="Last_Publication_Handle">SubscriptionMatchedStatus_last_publication_handle</dref> 
  6372.  
  6373.    pragma Convention (C, SubscriptionMatchedStatus); 
  6374.  
  6375.    SubscriptionMatchedStatus_INITIALIZER : constant SubscriptionMatchedStatus := 
  6376.                                              (Total_Count              => 0, 
  6377.                                               Total_Count_Change       => 0, 
  6378.                                               Current_Count            => 0, 
  6379.                                               Current_Count_Peak       => 0, 
  6380.                                               Current_Count_Change     => 0, 
  6381.                                               Last_Publication_Handle  => Null_InstanceHandle_T); 
  6382.  
  6383.    --  ---------------------------------------------------------- 
  6384.    --                  DataReaderCacheStatus 
  6385.    --  ---------------------------------------------------------- 
  6386.  
  6387.    type DataReaderCacheStatus is record 
  6388.       Sample_Count_Peak                                         : aliased Long_Long := 0; 
  6389.       Sample_Count                                              : aliased Long_Long := 0; 
  6390.       Old_Source_Timestamp_Dropped_Sample_Count                 : aliased Long_Long := 0; 
  6391.       Tolerance_Source_Timestamp_Dropped_Sample_Count           : aliased Long_Long := 0; 
  6392.       Ownership_Dropped_Sample_Count                            : aliased Long_Long := 0; 
  6393.       Content_Filter_Dropped_Sample_Count                       : aliased Long_Long := 0; 
  6394.       Time_Based_Filter_Dropped_Sample_Count                    : aliased Long_Long := 0; 
  6395.       Expired_Dropped_Sample_Count                              : aliased Long_Long := 0; 
  6396.       Virtual_Duplicate_Dropped_Sample_Count                    : aliased Long_Long := 0; 
  6397.       Replaced_Dropped_Sample_Count                             : aliased Long_Long := 0; 
  6398.       Writer_Removed_Batch_Sample_Dropped_Sample_Count          : aliased Long_Long := 0; 
  6399.       Total_Samples_Dropped_By_Instance_Replacement             : aliased Long_Long := 0; 
  6400.       Alive_Instance_Count                                      : aliased Long_Long := 0; 
  6401.       Alive_Instance_Count_Peak                                 : aliased Long_Long := 0; 
  6402.       No_Writers_Instance_Count                                 : aliased Long_Long := 0; 
  6403.       No_Writers_Instance_Count_Peak                            : aliased Long_Long := 0; 
  6404.       Disposed_Instance_Count                                   : aliased Long_Long := 0; 
  6405.       Disposed_Instance_Count_Peak                              : aliased Long_Long := 0; 
  6406.       Detached_Instance_Count                                   : aliased Long_Long := 0; 
  6407.       Detached_Instance_Count_Peak                              : aliased Long_Long := 0; 
  6408.       Compressed_Sample_Count                                   : aliased Long_Long := 0; 
  6409.    end record; 
  6410.    --  <dref>DataReaderCacheStatus</dref> 
  6411.    --  <dref name="Sample_Count_Peak">DataReaderCacheStatus_sample_count_peak</dref> 
  6412.    --  <dref name="Sample_Count">DataReaderCacheStatus_sample_count</dref> 
  6413.    --  <dref name="Old_Source_Timestamp_Dropped_Sample_Count">DataReaderCacheStatus_old_source_timestamp_dropped_sample_count</dref> 
  6414.    --  <dref name="Tolerance_Source_Timestamp_Dropped_Sample_Count">DataReaderCacheStatus_tolerance_source_timestamp_dropped_sample_count</dref> 
  6415.    --  <dref name="Ownership_Dropped_Sample_Count">DataReaderCacheStatus_ownership_dropped_sample_count</dref> 
  6416.    --  <dref name="Content_Filter_Dropped_Sample_Count">DataReaderCacheStatus_content_filter_dropped_sample_count</dref> 
  6417.    --  <dref name="Time_Based_Filter_Dropped_Sample_Count">DataReaderCacheStatus_time_based_filter_dropped_sample_count</dref> 
  6418.    --  <dref name="Expired_Dropped_Sample_Count">DataReaderCacheStatus_expired_dropped_sample_count</dref> 
  6419.    --  <dref name="Virtual_Duplicate_Dropped_Sample_Count">DataReaderCacheStatus_virtual_duplicate_dropped_sample_count</dref> 
  6420.    --  <dref name="Replaced_Dropped_Sample_Count">DataReaderCacheStatus_replaced_dropped_sample_count</dref> 
  6421.    --  <dref name="Writer_Removed_Batch_Sample_Dropped_Sample_Count">DataReaderCacheStatus_writer_removed_batch_sample_dropped_sample_count</dref> 
  6422.    --  <dref name="Total_Samples_Dropped_By_Instance_Replacement">DataReaderCacheStatus_total_samples_dropped_by_instance_replacement</dref> 
  6423.    --  <dref name="Alive_Instance_Count">DataReaderCacheStatus_alive_instance_count</dref> 
  6424.    --  <dref name="Alive_Instance_Count_Peak">DataReaderCacheStatus_alive_instance_count_peak</dref> 
  6425.    --  <dref name="No_Writers_Instance_Count">DataReaderCacheStatus_no_writers_instance_count</dref> 
  6426.    --  <dref name="No_Writers_Instance_Count_Peak">DataReaderCacheStatus_no_writers_instance_count_peak</dref> 
  6427.    --  <dref name="Disposed_Instance_Count">DataReaderCacheStatus_disposed_instance_count</dref> 
  6428.    --  <dref name="Disposed_Instance_Count_Peak">DataReaderCacheStatus_disposed_instance_count_peak</dref> 
  6429.    --  <dref name="Detached_Instance_Count">DataReaderCacheStatus_detached_instance_count</dref> 
  6430.    --  <dref name="Detached_Instance_Count_Peak">DataReaderCacheStatus_detached_instance_count_peak</dref> 
  6431.    --  <dref name="Compressed_Sample_Count">DataReaderCacheStatus_compressed_sample_count</dref> 
  6432.  
  6433.    pragma Convention (C, DataReaderCacheStatus); 
  6434.  
  6435.    DataReaderCacheStatus_INITIALIZER : constant DataReaderCacheStatus := 
  6436.                                          (Sample_Count_Peak                                       => 0, 
  6437.                                           Sample_Count                                            => 0, 
  6438.                                           Old_Source_Timestamp_Dropped_Sample_Count               => 0, 
  6439.                                           Tolerance_Source_Timestamp_Dropped_Sample_Count         => 0, 
  6440.                                           Ownership_Dropped_Sample_Count                          => 0, 
  6441.                                           Content_Filter_Dropped_Sample_Count                     => 0, 
  6442.                                           Time_Based_Filter_Dropped_Sample_Count                  => 0, 
  6443.                                           Expired_Dropped_Sample_Count                            => 0, 
  6444.                                           Virtual_Duplicate_Dropped_Sample_Count                  => 0, 
  6445.                                           Replaced_Dropped_Sample_Count                           => 0, 
  6446.                                           Writer_Removed_Batch_Sample_Dropped_Sample_Count        => 0, 
  6447.                                           Total_Samples_Dropped_By_Instance_Replacement           => 0, 
  6448.                                           Alive_Instance_Count                                    => 0, 
  6449.                                           Alive_Instance_Count_Peak                               => 0, 
  6450.                                           No_Writers_Instance_Count                               => 0, 
  6451.                                           No_Writers_Instance_Count_Peak                          => 0, 
  6452.                                           Disposed_Instance_Count                                 => 0, 
  6453.                                           Disposed_Instance_Count_Peak                            => 0, 
  6454.                                           Detached_Instance_Count                                 => 0, 
  6455.                                           Detached_Instance_Count_Peak                            => 0, 
  6456.                                           Compressed_Sample_Count                                 => 0); 
  6457.  
  6458.    --  ---------------------------------------------------------- 
  6459.    --                  DataReaderProtocolStatus 
  6460.    --  ---------------------------------------------------------- 
  6461.  
  6462.    type DataReaderProtocolStatus is record 
  6463.       Received_Sample_Count                  : aliased Long_Long := 0; 
  6464.       Received_Sample_Count_Change           : aliased Long_Long := 0; 
  6465.       Received_Sample_Bytes                  : aliased Long_Long := 0; 
  6466.       Received_Sample_Bytes_Change           : aliased Long_Long := 0; 
  6467.       Duplicate_Sample_Count                 : aliased Long_Long := 0; 
  6468.       Duplicate_Sample_Count_Change          : aliased Long_Long := 0; 
  6469.       Duplicate_Sample_Bytes                 : aliased Long_Long := 0; 
  6470.       Duplicate_Sample_Bytes_Change          : aliased Long_Long := 0; 
  6471.       Filtered_Sample_Count                  : aliased Long_Long := 0; 
  6472.       Filtered_Sample_Count_Change           : aliased Long_Long := 0; 
  6473.       Filtered_Sample_Bytes                  : aliased Long_Long := 0; 
  6474.       Filtered_Sample_Bytes_Change           : aliased Long_Long := 0; 
  6475.       Received_Heartbeat_Count               : aliased Long_Long := 0; 
  6476.       Received_Heartbeat_Count_Change        : aliased Long_Long := 0; 
  6477.       Received_Heartbeat_Bytes               : aliased Long_Long := 0; 
  6478.       Received_Heartbeat_Bytes_Change        : aliased Long_Long := 0; 
  6479.       Sent_Ack_Count                         : aliased Long_Long := 0; 
  6480.       Sent_Ack_Count_Change                  : aliased Long_Long := 0; 
  6481.       Sent_Ack_Bytes                         : aliased Long_Long := 0; 
  6482.       Sent_Ack_Bytes_Change                  : aliased Long_Long := 0; 
  6483.       Sent_Nack_Count                        : aliased Long_Long := 0; 
  6484.       Sent_Nack_Count_Change                 : aliased Long_Long := 0; 
  6485.       Sent_Nack_Bytes                        : aliased Long_Long := 0; 
  6486.       Sent_Nack_Bytes_Change                 : aliased Long_Long := 0; 
  6487.       Received_Gap_Count                     : aliased Long_Long := 0; 
  6488.       Received_Gap_Count_Change              : aliased Long_Long := 0; 
  6489.       Received_Gap_Bytes                     : aliased Long_Long := 0; 
  6490.       Received_Gap_Bytes_Change              : aliased Long_Long := 0; 
  6491.       Rejected_Sample_Count                  : aliased Long_Long := 0; 
  6492.       Rejected_Sample_Count_Change           : aliased Long_Long := 0; 
  6493.       First_Available_Sample_Sequence_Number : aliased SequenceNumber_T; 
  6494.       Last_Available_Sample_Sequence_Number  : aliased SequenceNumber_T; 
  6495.       Last_Committed_Sample_Sequence_Number  : aliased SequenceNumber_T; 
  6496.       Uncommitted_Sample_Count               : aliased Long := 0; 
  6497.       Out_Of_Range_Rejected_Sample_Count     : aliased Long_Long := 0; 
  6498.       Received_Fragment_Count                : aliased Long_Long := 0; 
  6499.       Dropped_Fragment_Count                 : aliased Long_Long := 0; 
  6500.       Reassembled_Sample_Count               : aliased Long_Long := 0; 
  6501.       Sent_Nack_Fragment_Count               : aliased Long_Long := 0; 
  6502.       Sent_Nack_Fragment_Bytes               : aliased Long_Long := 0; 
  6503.    end record; 
  6504.    --  <dref>DataReaderProtocolStatus</dref> 
  6505.    --  <dref name="received_sample_count">DataReaderProtocolStatus_received_sample_count</dref> 
  6506.    --  <dref name="received_sample_count_change">DataReaderProtocolStatus_received_sample_count_change</dref> 
  6507.    --  <dref name="received_sample_bytes">DataReaderProtocolStatus_received_sample_bytes</dref> 
  6508.    --  <dref name="received_sample_bytes_change">DataReaderProtocolStatus_received_sample_bytes_change</dref> 
  6509.    --  <dref name="duplicate_sample_count">DataReaderProtocolStatus_duplicate_sample_count</dref> 
  6510.    --  <dref name="duplicate_sample_count_change">DataReaderProtocolStatus_duplicate_sample_count_change</dref> 
  6511.    --  <dref name="duplicate_sample_bytes">DataReaderProtocolStatus_duplicate_sample_bytes</dref> 
  6512.    --  <dref name="duplicate_sample_bytes_change">DataReaderProtocolStatus_duplicate_sample_bytes_change</dref> 
  6513.    --  <dref name="filtered_sample_count">DataReaderProtocolStatus_filtered_sample_count</dref> 
  6514.    --  <dref name="filtered_sample_count_change">DataReaderProtocolStatus_filtered_sample_count_change</dref> 
  6515.    --  <dref name="filtered_sample_bytes">DataReaderProtocolStatus_filtered_sample_bytes</dref> 
  6516.    --  <dref name="filtered_sample_bytes_change">DataReaderProtocolStatus_filtered_sample_bytes_change</dref> 
  6517.    --  <dref name="received_heartbeat_count">DataReaderProtocolStatus_received_heartbeat_count</dref> 
  6518.    --  <dref name="received_heartbeat_count_change">DataReaderProtocolStatus_received_heartbeat_count_change</dref> 
  6519.    --  <dref name="received_heartbeat_bytes">DataReaderProtocolStatus_received_heartbeat_bytes</dref> 
  6520.    --  <dref name="received_heartbeat_bytes_change">DataReaderProtocolStatus_received_heartbeat_bytes_change</dref> 
  6521.    --  <dref name="sent_ack_count">DataReaderProtocolStatus_sent_ack_count</dref> 
  6522.    --  <dref name="sent_ack_count_change">DataReaderProtocolStatus_sent_ack_count_change</dref> 
  6523.    --  <dref name="sent_ack_bytes">DataReaderProtocolStatus_sent_ack_bytes</dref> 
  6524.    --  <dref name="sent_ack_bytes_change">DataReaderProtocolStatus_sent_ack_bytes_change</dref> 
  6525.    --  <dref name="sent_nack_count">DataReaderProtocolStatus_sent_nack_count</dref> 
  6526.    --  <dref name="sent_nack_count_change">DataReaderProtocolStatus_sent_nack_count_change</dref> 
  6527.    --  <dref name="sent_nack_bytes">DataReaderProtocolStatus_sent_nack_bytes</dref> 
  6528.    --  <dref name="sent_nack_bytes_change">DataReaderProtocolStatus_sent_nack_bytes_change</dref> 
  6529.    --  <dref name="received_gap_count">DataReaderProtocolStatus_received_gap_count</dref> 
  6530.    --  <dref name="received_gap_count_change">DataReaderProtocolStatus_received_gap_count_change</dref> 
  6531.    --  <dref name="received_gap_bytes">DataReaderProtocolStatus_received_gap_bytes</dref> 
  6532.    --  <dref name="received_gap_bytes_change">DataReaderProtocolStatus_received_gap_bytes_change</dref> 
  6533.    --  <dref name="rejected_sample_count">DataReaderProtocolStatus_rejected_sample_count</dref> 
  6534.    --  <dref name="rejected_sample_count_change">DataReaderProtocolStatus_rejected_sample_count_change</dref> 
  6535.    --  <dref name="first_available_sample_sequence_number">DataReaderProtocolStatus_first_available_sample_sequence_number</dref> 
  6536.    --  <dref name="last_available_sample_sequence_number">DataReaderProtocolStatus_last_available_sample_sequence_number</dref> 
  6537.    --  <dref name="last_committed_sample_sequence_number">DataReaderProtocolStatus_last_committed_sample_sequence_number</dref> 
  6538.    --  <dref name="uncommitted_sample_count">DataReaderProtocolStatus_uncommitted_sample_count</dref> 
  6539.    --  <dref name="Out_Of_Range_Rejected_Sample_Count">DataReaderProtocolStatus_out_of_range_rejected_sample_count</dref> 
  6540.    --  <dref name="received_fragment_count">DataReaderProtocolStatus_received_fragment_count</dref> 
  6541.    --  <dref name="Dropped_Fragment_Count">DataReaderProtocolStatus_dropped_fragment_count</dref> 
  6542.    --  <dref name="Reassembled_Sample_Count">DataReaderProtocolStatus_reassembled_sample_count</dref> 
  6543.    --  <dref name="Sent_Nack_Fragment_Count">DataReaderProtocolStatus_sent_nack_fragment_count</dref> 
  6544.    --  <dref name="Sent_Nack_Fragment_Bytes">DataReaderProtocolStatus_sent_nack_fragment_bytes</dref> 
  6545.  
  6546.    pragma Convention (C_Pass_By_Copy, DataReaderProtocolStatus); 
  6547.  
  6548.    DataReaderProtocolStatus_INITIALIZER : constant DataReaderProtocolStatus := 
  6549.                                             (Received_Sample_Count                  => 0, 
  6550.                                              Received_Sample_Count_Change           => 0, 
  6551.                                              Received_Sample_Bytes                  => 0, 
  6552.                                              Received_Sample_Bytes_Change           => 0, 
  6553.                                              Duplicate_Sample_Count                 => 0, 
  6554.                                              Duplicate_Sample_Count_Change          => 0, 
  6555.                                              Duplicate_Sample_Bytes                 => 0, 
  6556.                                              Duplicate_Sample_Bytes_Change          => 0, 
  6557.                                              Filtered_Sample_Count                  => 0, 
  6558.                                              Filtered_Sample_Count_Change           => 0, 
  6559.                                              Filtered_Sample_Bytes                  => 0, 
  6560.                                              Filtered_Sample_Bytes_Change           => 0, 
  6561.                                              Received_Heartbeat_Count               => 0, 
  6562.                                              Received_Heartbeat_Count_Change        => 0, 
  6563.                                              Received_Heartbeat_Bytes               => 0, 
  6564.                                              Received_Heartbeat_Bytes_Change        => 0, 
  6565.                                              Sent_Ack_Count                         => 0, 
  6566.                                              Sent_Ack_Count_Change                  => 0, 
  6567.                                              Sent_Ack_Bytes                         => 0, 
  6568.                                              Sent_Ack_Bytes_Change                  => 0, 
  6569.                                              Sent_Nack_Count                        => 0, 
  6570.                                              Sent_Nack_Count_Change                 => 0, 
  6571.                                              Sent_Nack_Bytes                        => 0, 
  6572.                                              Sent_Nack_Bytes_Change                 => 0, 
  6573.                                              Received_Gap_Count                     => 0, 
  6574.                                              Received_Gap_Count_Change              => 0, 
  6575.                                              Received_Gap_Bytes                     => 0, 
  6576.                                              Received_Gap_Bytes_Change              => 0, 
  6577.                                              Rejected_Sample_Count                  => 0, 
  6578.                                              Rejected_Sample_Count_Change           => 0, 
  6579.                                              First_Available_Sample_Sequence_Number => (-2147483648, 16#FFFF_FFFF#), 
  6580.                                              Last_Available_Sample_Sequence_Number  => (-2147483648, 16#FFFF_FFFF#), 
  6581.                                              Last_Committed_Sample_Sequence_Number  => (-2147483648, 16#FFFF_FFFF#), 
  6582.                                              Uncommitted_Sample_Count               => 0, 
  6583.                                              Out_Of_Range_Rejected_Sample_Count     => 0, 
  6584.                                              Received_Fragment_Count                => 0, 
  6585.                                              Dropped_Fragment_Count                 => 0, 
  6586.                                              Reassembled_Sample_Count               => 0, 
  6587.                                              Sent_Nack_Fragment_Count               => 0, 
  6588.                                              Sent_Nack_Fragment_Bytes               => 0); 
  6589.  
  6590.    --  ---------------------------------------------------------- 
  6591.    --                  Sample States 
  6592.    --  ---------------------------------------------------------- 
  6593.  
  6594.    type SampleStateKind is new Unsigned_Long; 
  6595.    --  <dref>SampleStateKind</dref> 
  6596.  
  6597.    READ_SAMPLE_STATE : constant SampleStateKind     := 1; 
  6598.    --  <dref>SampleStateKind_READ_SAMPLE_STATE</dref> 
  6599.  
  6600.    NOT_READ_SAMPLE_STATE : constant SampleStateKind := 2; 
  6601.    --  <dref>SampleStateKind_NOT_READ_SAMPLE_STATE</dref> 
  6602.  
  6603.    subtype SampleStateMask is SampleStateKind; 
  6604.    --  <dref>SampleStateMask</dref> 
  6605.  
  6606.    --     ANY_SAMPLE_STATE : constant SampleStateMask := 65535; 
  6607.  
  6608.    ANY_SAMPLE_STATE  : constant SampleStateMask := 16#FFFF#; 
  6609.    --  <dref>ANY_SAMPLE_STATE</dref> 
  6610.  
  6611.    type SampleStateKind_Access is access constant SampleStateKind; 
  6612.  
  6613.    --  ---------------------------------------------------------- 
  6614.    --                  View States 
  6615.    --  ---------------------------------------------------------- 
  6616.  
  6617.    type ViewStateKind is new Unsigned_Long; 
  6618.    --  <dref>ViewStateKind</dref> 
  6619.  
  6620.    NEW_VIEW_STATE  : constant ViewStateKind     := 1; 
  6621.    --  <dref>ViewStateKind_NEW_VIEW_STATE</dref> 
  6622.  
  6623.    NOT_NEW_VIEW_STATE : constant ViewStateKind := 2; 
  6624.    --  <dref>ViewStateKind_NOT_NEW_VIEW_STATE</dref> 
  6625.  
  6626.    subtype ViewStateMask is ViewStateKind; 
  6627.    --  <dref>ViewStateMask</dref> 
  6628.  
  6629.    --     ANY_VIEW_STATE  : constant ViewStateMask      := 65535; 
  6630.  
  6631.    ANY_VIEW_STATE  : constant ViewStateMask := 16#FFFF#; 
  6632.    --  <dref>ANY_VIEW_STATE</dref> 
  6633.  
  6634.    type ViewStateKind_Access is access constant ViewStateKind; 
  6635.  
  6636.    --  ---------------------------------------------------------- 
  6637.    --                  Instance States 
  6638.    --  ---------------------------------------------------------- 
  6639.  
  6640.    type InstanceStateKind is   new Unsigned_Long; 
  6641.    --  <dref>InstanceStateKind</dref> 
  6642.  
  6643.    ALIVE_INSTANCE_STATE : constant InstanceStateKind                := 1; 
  6644.    --  <dref>InstanceStateKind_ALIVE_INSTANCE_STATE</dref> 
  6645.  
  6646.    NOT_ALIVE_DISPOSED_INSTANCE_STATE : constant InstanceStateKind   := 2; 
  6647.    --  <dref>InstanceStateKind_NOT_ALIVE_DISPOSED_INSTANCE_STATE</dref> 
  6648.  
  6649.    NOT_ALIVE_NO_WRITERS_INSTANCE_STATE : constant InstanceStateKind := 4; 
  6650.    --  <dref>InstanceStateKind_NOT_ALIVE_NO_WRITERS_INSTANCE_STATE</dref> 
  6651.  
  6652.    subtype InstanceStateMask is InstanceStateKind; 
  6653.    --  <dref>InstanceStateMask</dref> 
  6654.  
  6655.    NOT_ALIVE_INSTANCE_STATE : constant InstanceStateMask := 6; 
  6656.    --  <dref>NOT_ALIVE_INSTANCE_STATE</dref> 
  6657.  
  6658.    --     ANY_INSTANCE_STATE : constant InstanceStateMask := 65535; 
  6659.  
  6660.    ANY_INSTANCE_STATE  : constant InstanceStateMask := 16#FFFF#; 
  6661.    --  <dref>ANY_INSTANCE_STATE</dref> 
  6662.  
  6663.    type InstanceStateKind_Access is access constant InstanceStateKind; 
  6664.  
  6665.    --  ---------------------------------------------------------- 
  6666.    --                  Sample Info 
  6667.    --  ---------------------------------------------------------- 
  6668.  
  6669.    type SampleInfo is record 
  6670.       Sample_State                                                : aliased SampleStateKind; 
  6671.       View_State                                                  : aliased ViewStateKind; 
  6672.       Instance_State                                              : aliased InstanceStateKind; 
  6673.       Source_Timestamp                                            : aliased Time_T; 
  6674.       Instance_Handle                                             : aliased InstanceHandle_T; 
  6675.       Publication_Handle                                          : aliased InstanceHandle_T; 
  6676.       Disposed_Generation_Count                                   : aliased Long := 0; 
  6677.       No_Writers_Generation_Count                                 : aliased Long := 0; 
  6678.       Sample_Rank                                                 : aliased Long := 0; 
  6679.       Generation_Rank                                             : aliased Long := 0; 
  6680.       Absolute_Generation_Rank                                    : aliased Long := 0; 
  6681.       Valid_Data                                                  : aliased DDS.Boolean := False; 
  6682.       Reception_Timestamp                                         : aliased Time_T; 
  6683.       Publication_Sequence_Number                                 : aliased SequenceNumber_T; 
  6684.       Reception_Sequence_Number                                   : aliased SequenceNumber_T; 
  6685.       Publication_Virtual_Guid                                    : aliased Guid_T; 
  6686.       Publication_Virtual_Sequence_Number                         : aliased SequenceNumber_T; 
  6687.       Original_Publication_Virtual_Guid                           : aliased Guid_T; 
  6688.       Original_Publication_Virtual_Sequence_Number                : aliased SequenceNumber_T; 
  6689.       Related_Original_Publication_Virtual_Guid                   : aliased Guid_T; 
  6690.       Related_Original_Publication_Virtual_Sequence_Number        : aliased SequenceNumber_T; 
  6691.       Flag                                                        : aliased SampleFlag; 
  6692.       Source_Guid                                                 : aliased Guid_T; 
  6693.       Related_Source_Guid                                         : aliased Guid_T; 
  6694.       Related_Subscription_Guid                                   : aliased Guid_T; 
  6695.       Topic_Query_Guid                                            : aliased Guid_T; 
  6696.       Sample_Info_Hash                                            : aliased RTIDDS.Low_Level.ndds_osapi_osapi_hash_h.RTIOsapiHash; 
  6697.       Sample_Signature                                            : aliased access RTIDDS.Low_Level.ndds_pres_pres_common_impl_h.PRESSampleSignature; 
  6698.       Encapsulation_Id                                            : aliased EncapsulationId_T; 
  6699.       Related_Epoch                                               : aliased SequenceNumber_T; 
  6700.       Coherent_Set_Info                                           : aliased access RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_CoherentSetInfo_t; 
  6701.    end record; 
  6702.    --  <dref>SampleInfo</dref> 
  6703.    --  <dref name="Sample_State">SampleInfo_sample_state</dref> 
  6704.    --  <dref name="View_State">SampleInfo_view_state</dref> 
  6705.    --  <dref name="Instance_State">SampleInfo_instance_state</dref> 
  6706.    --  <dref name="Source_Timestamp">SampleInfo_source_timestamp</dref> 
  6707.    --  <dref name="Instance_Handle">SampleInfo_instance_handle</dref> 
  6708.    --  <dref name="Publication_Handle">SampleInfo_publication_handle</dref> 
  6709.    --  <dref name="Disposed_Generation_Count">SampleInfo_disposed_generation_count</dref> 
  6710.    --  <dref name="No_Writers_Generation_Count">SampleInfo_no_writers_generation_count</dref> 
  6711.    --  <dref name="Sample_Rank">SampleInfo_sample_rank</dref> 
  6712.    --  <dref name="Generation_Rank">SampleInfo_generation_rank</dref> 
  6713.    --  <dref name="Absolute_Generation_Rank">SampleInfo_absolute_generation_rank</dref> 
  6714.    --  <dref name="Valid_Data">SampleInfo_valid_data</dref> 
  6715.    --  <dref name="Reception_Timestamp">SampleInfo_reception_timestamp</dref> 
  6716.    --  <dref name="Publication_Sequence_Number">SampleInfo_publication_sequence_number</dref> 
  6717.    --  <dref name="Reception_Sequence_Number">SampleInfo_reception_sequence_number</dref> 
  6718.    --  <dref internal="true" name="Publication_Virtual_Guid">SampleInfo_publication_virtual_guid</dref> 
  6719.    --  <dref internal="true" name="Publication_Virtual_Sequence_Number">SampleInfo_publication_virtual_sequence_number</dref> 
  6720.    --  <dref name="Original_Publication_Virtual_Guid">SampleInfo_original_publication_virtual_guid</dref> 
  6721.    --  <dref name="Original_Publication_Virtual_Sequence_Number">SampleInfo_original_publication_virtual_sequence_number</dref> 
  6722.    --  <dref name="Related_Original_Publication_Virtual_Guid">SampleInfo_related_original_publication_virtual_guid</dref> 
  6723.    --  <dref name="Related_Original_Publication_Virtual_Sequence_Number">SampleInfo_related_original_publication_virtual_sequence_number</dref> 
  6724.    --  <dref name="Flag">SampleInfo_flag</dref> 
  6725.    --  <dref name="Source_Guid">SampleInfo_source_guid</dref> 
  6726.    --  <dref name="Related_Source_Guid">SampleInfo_related_source_guid</dref> 
  6727.    --  <dref name="Related_Subscription_Guid">SampleInfo_related_subscription_guid</dref> 
  6728.    --  <dref internal="true" name="Topic_Query_Guid">SampleInfo_topic_query_guid</dref> 
  6729.    --  <dref internal="true" name="Sample_Info_Hash">SampleInfo_sample_info_hash</dref> 
  6730.    --  <dref internal="true" name="Sample_Signature">SampleInfo_sample_signature</dref> 
  6731.    --  <dref internal="true" name="Encapsulation_Id">SampleInfo_encapsulation_id</dref> 
  6732.    --  <dref internal="true" name="Related_Epoch">SampleInfo_related_epoch</dref> 
  6733.  
  6734.  
  6735.    pragma Convention (C, SampleInfo); 
  6736.  
  6737.    type SampleInfo_Access is access all SampleInfo; 
  6738.    type SampleInfo_Array is array (Natural range <>) of aliased SampleInfo; 
  6739.    procedure Initialize (Self  : in out SampleInfo); 
  6740.    procedure Finalize (Self  : in out SampleInfo); 
  6741.    procedure Copy (Dst : in out SampleInfo; Src : in SampleInfo); 
  6742.  
  6743.    procedure Get_Sample_Identity (From : SampleInfo; Id : out SampleIdentity_T); 
  6744.    function Get_Sample_Identity (From : SampleInfo) return  SampleIdentity_T; 
  6745.  
  6746.    procedure Get_Related_Sample_Identity (From : SampleInfo; Id : out SampleIdentity_T); 
  6747.    function Get_Related_Sample_Identity (From : SampleInfo) return  SampleIdentity_T; 
  6748.  
  6749.    package SampleInfo_Seq is new DDS_Support.Sequences_Generic 
  6750.      (SampleInfo, 
  6751.       SampleInfo_Access, 
  6752.       DDS.Natural, 
  6753.       1, 
  6754.       SampleInfo_Array); 
  6755.    --  <dref>SampleInfoSeq</dref> 
  6756.  
  6757.    --  ---------------------------------------------------------- 
  6758.    --                  DataReaderOos 
  6759.    --  ---------------------------------------------------------- 
  6760.  
  6761.    type DataReaderQoS is new Ada.Finalization.Limited_Controlled with record 
  6762.    --- 
  6763.       Durability             : aliased DurabilityQosPolicy; 
  6764.       Deadline               : aliased DeadlineQosPolicy; 
  6765.       Latency_Budget         : aliased LatencyBudgetQosPolicy; 
  6766.       Liveliness             : aliased LivelinessQosPolicy; 
  6767.       Reliability            : aliased ReliabilityQosPolicy; 
  6768.       Destination_Order      : aliased DestinationOrderQosPolicy; 
  6769.       History                : aliased HistoryQosPolicy; 
  6770.       Resource_Limits        : aliased ResourceLimitsQosPolicy; 
  6771.       User_Data              : aliased UserDataQosPolicy; 
  6772.       Ownership              : aliased OwnershipQosPolicy; 
  6773.       Time_Based_Filter      : aliased TimeBasedFilterQosPolicy; 
  6774.       Reader_Data_Lifecycle  : aliased ReaderDataLifecycleQosPolicy; 
  6775.       Representation         : aliased DataRepresentationQosPolicy; 
  6776.       Type_Consistency       : aliased TypeConsistencyEnforcementQosPolicy; 
  6777.       Data_Tags              : aliased DataTagQosPolicy; 
  6778.       -- --- Extensions: ---------------------------------------------------- 
  6779.       Reader_Resource_Limits : aliased DataReaderResourceLimitsQosPolicy; 
  6780.       Protocol               : aliased DataReaderProtocolQosPolicy; 
  6781.       Transport_Selection    : aliased TransportSelectionQosPolicy; 
  6782.       Unicast                : aliased TransportUnicastQosPolicy; 
  6783.       Multicast              : aliased TransportMulticastQosPolicy; 
  6784.       Encapsulation          : aliased TransportEncapsulationQosPolicy; 
  6785.       Property               : aliased PropertyQosPolicy; 
  6786.       Service                : aliased ServiceQosPolicy; 
  6787.       Availability           : aliased AvailabilityQosPolicy; 
  6788.       Subscription_Name      : aliased EntityNameQosPolicy; 
  6789.       Transport_Priority     : aliased TransportPriorityQosPolicy; 
  6790.       Type_Support           : aliased TypeSupportQosPolicy; 
  6791.    end record; 
  6792.    --  <dref>DataReaderQos</dref> 
  6793.    --  <dref name="Durability">DataReaderQos_durability</dref> 
  6794.    --  <dref name="Deadline">DataReaderQos_deadline</dref> 
  6795.    --  <dref name="Latency_Budget">DataReaderQos_latency_budget</dref> 
  6796.    --  <dref name="Liveliness">DataReaderQos_liveliness</dref> 
  6797.    --  <dref name="Reliability">DataReaderQos_reliability</dref> 
  6798.    --  <dref name="Destination_Order">DataReaderQos_destination_order</dref> 
  6799.    --  <dref name="History">DataReaderQos_history</dref> 
  6800.    --  <dref name="Resource_Limits">DataReaderQos_resource_limits</dref> 
  6801.    --  <dref name="User_Data">DataReaderQos_user_data</dref> 
  6802.    --  <dref name="Ownership">DataReaderQos_ownership</dref> 
  6803.    --  <dref name="Time_Based_Filter">DataReaderQos_time_based_filter</dref> 
  6804.    --  <dref name="Reader_Data_Lifecycle">DataReaderQos_reader_data_lifecycle</dref> 
  6805.    --  <dref name="Representation">DataReaderQos_representation</dref> 
  6806.    --  <dref name="Type_Consistency">DataReaderQos_type_consistency</dref> 
  6807.    --  <dref name="Data_Tags">DataReaderQos_data_tags</dref> 
  6808.    --  <dref name="Reader_Resource_Limits">DataReaderQos_reader_resource_limits</dref> 
  6809.    --  <dref name="Protocol">DataReaderQos_protocol</dref> 
  6810.    --  <dref name="Transport_Selection">DataReaderQos_transport_selection</dref> 
  6811.    --  <dref name="Unicast">DataReaderQos_unicast</dref> 
  6812.    --  <dref name="Multicast">DataReaderQos_multicast</dref> 
  6813.    --  <dref internal="true" name="Encapsulation">DataReaderQos_encapsulation</dref> 
  6814.    --  <dref name="Property">DataReaderQos_property</dref> 
  6815.    --  <dref name="Service">DataReaderQos_service</dref> 
  6816.    --  <dref name="Availability">DataReaderQos_availability</dref> 
  6817.    --  <dref name="Subscription_Name">DataReaderQos_subscription_name</dref> 
  6818.    --  <dref name="Transport_Priority">DataReaderQos_transport_priority</dref> 
  6819.    --  <dref name="Type_Support">DataReaderQos_type_support</dref> 
  6820.  
  6821.    pragma Convention (C, DataReaderQoS); 
  6822.  
  6823.    --  <dref>DataReaderQos_initialize</dref> 
  6824.    procedure Initialize 
  6825.      (Self : in out DataReaderQoS); 
  6826.  
  6827.    --  <dref>DataReaderQos_finalize</dref> 
  6828.    procedure Finalize 
  6829.      (Self : in out DataReaderQoS); 
  6830.  
  6831.    --  <dref>DataReaderQos_copy</dref> 
  6832.    procedure Copy 
  6833.      (Target : out DataReaderQoS; 
  6834.       Source : in DataReaderQoS); 
  6835.  
  6836.  
  6837.    --  ---------------------------------------------------------- 
  6838.    --                  SubscriberOos 
  6839.    --  ---------------------------------------------------------- 
  6840.  
  6841.    type SubscriberQos is new Ada.Finalization.Limited_Controlled with record 
  6842.       Presentation    : PresentationQosPolicy; 
  6843.       Partition       : PartitionQosPolicy; 
  6844.       Group_Data      : GroupDataQosPolicy; 
  6845.       Entity_Factory  : EntityFactoryQosPolicy; 
  6846.       -- --- Extensions: ---------------------------------------------------- 
  6847.       Exclusive_Area  : ExclusiveAreaQosPolicy; 
  6848.       Protocol        : aliased SubscriberProtocolQosPolicy; 
  6849.       Subscriber_Name : aliased EntityNameQosPolicy; 
  6850.    end record; 
  6851.    --  <dref>SubscriberQos</dref> 
  6852.    --  <dref name="Presentation">SubscriberQos_presentation</dref> 
  6853.    --  <dref name="Partition">SubscriberQos_partition</dref> 
  6854.    --  <dref name="Group_Data">SubscriberQos_group_data</dref> 
  6855.    --  <dref name="Entity_Factory">SubscriberQos_entity_factory</dref> 
  6856.    --  <dref name="Enclusive_Area">SubscriberQos_exclusive_area</dref> 
  6857.    --  <dref internal="true" name="Protocol">SubscriberQos_protocol</dref> 
  6858.    --  <dref name="subscriber_name">SubscriberQos_subscriber_name</dref> 
  6859.  
  6860.    pragma Convention (C, SubscriberQos); 
  6861.    type SubscriberQos_Access is access SubscriberQos; 
  6862.  
  6863.    --  <dref>SubscriberQos_initialize</dref> 
  6864.    procedure Initialize 
  6865.      (Self : in out SubscriberQos); 
  6866.  
  6867.    --  <dref>SubscriberQos_finalize</dref> 
  6868.    procedure Finalize 
  6869.      (Self : in out SubscriberQos); 
  6870.  
  6871.    --  <dref>SubscriberQos_copy</dref> 
  6872.    procedure Copy 
  6873.      (Target : out SubscriberQos; 
  6874.       Source : in SubscriberQos); 
  6875.  
  6876.    -- 
  6877.    --  From dds_sqlfilter.h 
  6878.    -- 
  6879.  
  6880.    SQLFILTER_NAME  : constant DDS.String := To_DDS_String ("DDSSQL"); 
  6881.    --  <dref>SQLFILTER_NAME</dref> 
  6882.  
  6883.  
  6884.    STRINGMATCHFILTER_NAME : constant DDS.String := To_DDS_String ("DDSSTRINGMATCH"); 
  6885.    --  <dref>STRINGMATCHFILTER_NAME</dref> 
  6886.    --  <dref>Shared_string_match_filter</dref> 
  6887.  
  6888.    -- 
  6889.    --  From dds_c_domain.h 
  6890.    -- 
  6891.  
  6892.    --  ---------------------------------------------------------- 
  6893.    --                  DomainParticipantQos 
  6894.    --  ---------------------------------------------------------- 
  6895.  
  6896.    type DomainParticipantQos is new Ada.Finalization.Limited_Controlled with  record 
  6897.       User_Data         : aliased UserDataQosPolicy; 
  6898.       Entity_Factory    : aliased EntityFactoryQosPolicy; 
  6899.       -- --------------- Extensions: ---------------------------------- 
  6900.       Wire_Protocol     : aliased WireProtocolQosPolicy; 
  6901.       Transport_Builtin : aliased TransportBuiltinQosPolicy; 
  6902.       Default_Unicast   : aliased TransportUnicastQosPolicy; 
  6903.       Discovery         : aliased DiscoveryQosPolicy; 
  6904.       Resource_Limits   : aliased DomainParticipantResourceLimitsQosPolicy; 
  6905.       Event             : aliased EventQosPolicy; 
  6906.       Receiver_Pool     : aliased ReceiverPoolQosPolicy; 
  6907.       Database          : aliased DatabaseQosPolicy; 
  6908.       Discovery_Config  : aliased DiscoveryConfigQosPolicy; 
  6909.       Exclusive_Area    : aliased ExclusiveAreaQosPolicy; 
  6910.       Property          : aliased PropertyQosPolicy; 
  6911.       Participant_Name  : aliased EntityNameQosPolicy; 
  6912.       Multicast_Mapping : aliased TransportMulticastMappingQosPolicy; 
  6913.       Service           : aliased ServiceQosPolicy; 
  6914.       User_Object       : aliased UserObjectQosPolicy; 
  6915.       Protocol          : aliased DomainParticipantProtocolQosPolicy; 
  6916.       Type_Support      : aliased TypeSupportQosPolicy; 
  6917.    end record; 
  6918.    --  <dref>DomainParticipantQos</dref> 
  6919.    --  <dref name="User_Data">DomainParticipantQos_user_data</dref> 
  6920.    --  <dref name="Entity_Factory">DomainParticipantQos_entity_factory</dref> 
  6921.    --  <dref name="Wire_Protocol">DomainParticipantQos_wire_protocol</dref> 
  6922.    --  <dref name="Transport_Builtin">DomainParticipantQos_transport_builtin</dref> 
  6923.    --  <dref name="Default_Unicast">DomainParticipantQos_default_unicast</dref> 
  6924.    --  <dref name="Discovery">DomainParticipantQos_discovery</dref> 
  6925.    --  <dref name="Resource_Limits">DomainParticipantQos_resource_limits</dref> 
  6926.    --  <dref name="Event">DomainParticipantQos_event</dref> 
  6927.    --  <dref name="Receiver_Pool">DomainParticipantQos_receiver_pool</dref> 
  6928.    --  <dref name="Database">DomainParticipantQos_database</dref> 
  6929.    --  <dref name="Discovery_Config">DomainParticipantQos_discovery_config</dref> 
  6930.    --  <dref name="Exclusive_Area">DomainParticipantQos_exclusive_area</dref> 
  6931.    --  <dref name="Property">DomainParticipantQos_property</dref> 
  6932.    --  <dref name="Participant_Name">DomainParticipantQos_participant_name</dref> 
  6933.    --  <dref name="Multicast_Mapping">DomainParticipantQos_multicast_mapping</dref> 
  6934.    --  <dref internal="true" name="Service">DomainParticipantQos_service</dref> 
  6935.    --  <dref name="User_Object">DomainParticipantQos_user_object</dref> 
  6936.    --  <dref internal="true" name="Protocol">DomainParticipantQos_protocol</dref> 
  6937.    --  <dref name="Type_Support">DomainParticipantQos_type_support</dref> 
  6938.  
  6939.    pragma Convention (C, DomainParticipantQos); 
  6940.    --   <internal> 
  6941.    --   for DomainParticipantQos'Alignment use 4; 
  6942.    --   </internal> 
  6943.  
  6944.    --  <dref>DomainParticipantQos_initialize</dref> 
  6945.    procedure Initialize 
  6946.      (Self : in out DomainParticipantQos); 
  6947.  
  6948.    --  <dref>DomainParticipantQos_finalize</dref> 
  6949.    procedure Finalize 
  6950.      (Self : in out DomainParticipantQos); 
  6951.  
  6952.    --  <dref>DomainParticipantQos_copy</dref> 
  6953.    procedure Copy 
  6954.      (Target : out  DomainParticipantQos; 
  6955.       Source : in DomainParticipantQos); 
  6956.  
  6957.    type LoggingQosPolicy is new DDS_LoggingQosPolicy; 
  6958.  
  6959.    --  ---------------------------------------------------------- 
  6960.    --                  SqlFilterAlignmentQos 
  6961.    --  ---------------------------------------------------------- 
  6962.  
  6963.    type SqlFilterAlignmentQos is record 
  6964.       Char_Alignment       : aliased DDS.Unsigned_Short := 0; 
  6965.       Short_Alignment      : aliased DDS.Unsigned_Short := 0; 
  6966.       Long_Alignment       : aliased DDS.Unsigned_Short := 0; 
  6967.       Float_Alignment      : aliased DDS.Unsigned_Short := 0; 
  6968.       Double_Alignment     : aliased DDS.Unsigned_Short := 0; 
  6969.       Longlong_Alignment   : aliased DDS.Unsigned_Short := 0; 
  6970.       Longdouble_Alignment : aliased DDS.Unsigned_Short := 0; 
  6971.       Pointer_Alignment    : aliased DDS.Unsigned_Short := 0; 
  6972.    end record; 
  6973.    pragma Convention (C_Pass_By_Copy, SqlFilterAlignmentQos);  -- ndds/dds_c/dds_c_sqlfilter.h:170 
  6974.  
  6975.    type SqlFilterMemoryManagementQos is record 
  6976.       Buffer_Min_Size : aliased DDS.Long;  -- ndds/dds_c/dds_c_sqlfilter.h:198 
  6977.       Trim_Buffer     : aliased DDS.Boolean;  -- ndds/dds_c/dds_c_sqlfilter.h:199 
  6978.    end record; 
  6979.  
  6980.    pragma Convention (C_Pass_By_Copy, SqlFilterMemoryManagementQos);  -- ndds/dds_c/dds_c_sqlfilter.h:197 
  6981.    type SqlFilterGeneratorQos is new RTIDDS.Low_Level.ndds_dds_c_dds_c_sqlfilter_h.DDS_SqlFilterGeneratorQos; 
  6982.  
  6983.    --  ---------------------------------------------------------- 
  6984.    --                  DomainParticipantFactoryQos 
  6985.    --  ---------------------------------------------------------- 
  6986.  
  6987.    type DomainParticipantFactoryQos is new Ada.Finalization.Limited_Controlled with  record 
  6988.       Entity_Factory  : aliased EntityFactoryQosPolicy; 
  6989.       -- --- Extensions: ---------------------------------------------------- 
  6990.       Resource_Limits : aliased SystemResourceLimitsQosPolicy; 
  6991.       Profile         : aliased ProfileQosPolicy; 
  6992.       Logging         : aliased DDS_LoggingQosPolicy := (0, 
  6993.                                                          NDDS_CONFIG_LOG_CATEGORY_PLATFORM, 
  6994.                                                          0, 
  6995.                                                          Interfaces.C.Strings.Null_Ptr, 
  6996.                                                          Interfaces.C.Strings.Null_Ptr, 
  6997.                                                          Interfaces.C.int (-1), 
  6998.                                                          Interfaces.C.int (-1)); 
  6999.    end record; 
  7000.    --  <dref>DomainParticipantFactoryQos</dref> 
  7001.    --  <dref name="Entity_Factory">DomainParticipantFactoryQos_entity_factory</dref> 
  7002.    --  <dref name="Resource_Limits">DomainParticipantFactoryQos_resource_limits</dref> 
  7003.    --  <dref name="Profile">DomainParticipantFactoryQos_profile</dref> 
  7004.    --  <dref name="Logging">DomainParticipantFactoryQos_logging</dref> 
  7005.  
  7006.    pragma Convention (C, DomainParticipantFactoryQos); 
  7007.  
  7008.    type DomainParticipantFactoryQos_Access is access constant DomainParticipantFactoryQos; 
  7009.  
  7010.    --  <dref>DomainParticipantFactoryQos_copy</dref> 
  7011.    procedure Copy 
  7012.      (Target : out DomainParticipantFactoryQos; 
  7013.       Source : in DomainParticipantFactoryQos); 
  7014.  
  7015.    --  <dref>DomainParticipantFactoryQos_initialize</dref> 
  7016.    procedure Initialize 
  7017.      (Self : in out DomainParticipantFactoryQos); 
  7018.  
  7019.    --  <dref>DomainParticipantFactoryQos_finalize</dref> 
  7020.    procedure Finalize 
  7021.      (Self : in out DomainParticipantFactoryQos); 
  7022.  
  7023.    -- 
  7024.    --  From dds_c_flowcontroller.h 
  7025.    -- 
  7026.  
  7027.    --  ---------------------------------------------------------- 
  7028.    --                  Flow Confroller 
  7029.    --  ---------------------------------------------------------- 
  7030.  
  7031.    DEFAULT_FLOW_CONTROLLER_NAME : constant DDS.String := To_DDS_String ("DDS_DEFAULT_FLOW_CONTROLLER_NAME"); 
  7032.    --  <dref>DEFAULT_FLOW_CONTROLLER_NAME</dref> 
  7033.    --  <dref>Shared_default_flow_controller_name</dref> 
  7034.  
  7035.    FIXED_RATE_FLOW_CONTROLLER_NAME : constant DDS.String := To_DDS_String ("DDS_FIXED_RATE_FLOW_CONTROLLER_NAME"); 
  7036.    --  <dref>FIXED_RATE_FLOW_CONTROLLER_NAME</dref> 
  7037.    --  <dref>Shared_fixed_rate_flow_controller_name</dref> 
  7038.  
  7039.  
  7040.    ON_DEMAND_FLOW_CONTROLLER_NAME : constant DDS.String := To_DDS_String ("DDS_ON_DEMAND_FLOW_CONTROLLER_NAME"); 
  7041.    --  <dref>ON_DEMAND_FLOW_CONTROLLER_NAME</dref> 
  7042.    --  <dref>Shared_on_demand_flow_controller_name</dref> 
  7043.  
  7044.  
  7045.    type FlowControllerSchedulingPolicy is new Unsigned_Long; 
  7046.    --  <dref>FlowControllerSchedulingPolicy</dref> 
  7047.    --  <dref>Shared_FlowControllerSchedulingPolicy</dref> 
  7048.  
  7049.    RR_FLOW_CONTROLLER_SCHED_POLICY : constant FlowControllerSchedulingPolicy := 0; 
  7050.    --  <dref>FlowControllerSchedulingPolicy_RR_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  7051.    --  <dref>Shared_RR_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  7052.  
  7053.    EDF_FLOW_CONTROLLER_SCHED_POLICY : constant FlowControllerSchedulingPolicy := 1; 
  7054.    --  <dref>FlowControllerSchedulingPolicy_EDF_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  7055.    --  <dref>Shared_EDF_FLOW_CONTROLLER_SCHED_POLICY</dref> 
  7056.  
  7057.    type FlowControllerTokenBucketProperty_T is record 
  7058.       Max_Tokens               : aliased DDS.Long := 0; 
  7059.       Tokens_Added_Per_Period  : aliased DDS.Long := 0; 
  7060.       Tokens_Leaked_Per_Period : aliased DDS.Long := 0; 
  7061.       Period                   : aliased Duration_T; 
  7062.       Bytes_Per_Token          : aliased DDS.Long := 0; 
  7063.    end record; 
  7064.    --  <dref>FlowControllerTokenBucketProperty_t</dref> 
  7065.    --  <dref>Shared_max_tokens</dref> 
  7066.    --  <dref>Shared_tokens_added_per_period</dref> 
  7067.    --  <dref>Shared_tokens_leaked_per_period</dref> 
  7068.    --  <dref>Shared_flow_controller_property_period</dref> 
  7069.    --  <dref>Shared_bytes_per_token</dref> 
  7070.    --  <dref name="max_tokens">FlowControllerTokenBucketProperty_t_max_tokens</dref> 
  7071.    --  <dref name="tokens_added_per_period">FlowControllerTokenBucketProperty_t_tokens_added_per_period</dref> 
  7072.    --  <dref name="tokens_leaked_per_period">FlowControllerTokenBucketProperty_t_tokens_leaked_per_period</dref> 
  7073.    --  <dref name="period">FlowControllerTokenBucketProperty_t_period</dref> 
  7074.    --  <dref name="bytes_per_token">FlowControllerTokenBucketProperty_t_bytes_per_token</dref> 
  7075.  
  7076.    pragma Convention (C, FlowControllerTokenBucketProperty_T); 
  7077.  
  7078.    type FlowControllerProperty_T is record 
  7079.       Scheduling_Policy  : aliased DDS.FlowControllerSchedulingPolicy := EDF_FLOW_CONTROLLER_SCHED_POLICY; 
  7080.       Token_Bucket       : aliased DDS.FlowControllerTokenBucketProperty_T := (-1, -1, 0, (1, 0), -1); 
  7081.       Is_Vendor_Specific : aliased DDS.Boolean := False; 
  7082.    end record; 
  7083.    --  <dref>FlowControllerProperty_t</dref> 
  7084.    --  <dref>Shared_FlowControllerProperty_t</dref> 
  7085.    --  <dref name="scheduling_policy">FlowControllerProperty_t_scheduling_policy</dref> 
  7086.    --  <dref name="token_bucket">FlowControllerProperty_t_token_bucket</dref> 
  7087.    --  <dref internal="true" name="is_vendor_specific">FlowControllerProperty_t_is_vendor_specific</dref> 
  7088.  
  7089.    pragma Convention (C, FlowControllerProperty_T); 
  7090.  
  7091.    FlowControllerProperty_T_INITIALIZER : constant FlowControllerProperty_T := 
  7092.                                             (Scheduling_Policy  => DDS.EDF_FLOW_CONTROLLER_SCHED_POLICY, 
  7093.                                              Token_Bucket       => (-1, -1, 0, (1, 0), -1), 
  7094.                                              Is_Vendor_Specific => False); 
  7095.    --  <dref>FlowControllerProperty_t_INITIALIZER</dref> 
  7096.  
  7097.    procedure Copy (C_Out : not null access FlowControllerProperty_T; 
  7098.                    C_In  : not null access FlowControllerProperty_T); 
  7099.    --  <dref internal="true">FlowControllerProperty_copy</dref> 
  7100.  
  7101.    -- 
  7102.    --  DLRL stuff 
  7103.    -- 
  7104.  
  7105.  
  7106.    type ReferenceScope is 
  7107.      (SIMPLE_CONTENT_SCOPE, 
  7108.       REFERENCED_CONTENTS_SCOPE); 
  7109.  
  7110.    type ObjectScope is 
  7111.      (SIMPLE_OBJECT_SCOPE, 
  7112.       CONTAINED_OBJECTS_SCOPE, 
  7113.       RELATED_OBJECTS_SCOPE); 
  7114.  
  7115.    type DCPSState is 
  7116.      (INITIAL, 
  7117.       REGISTERED, 
  7118.       ENABLED); 
  7119.  
  7120.    type CacheUsage is 
  7121.      (READ_ONLY, 
  7122.       WRITE_ONLY, 
  7123.       READ_WRITE); 
  7124.  
  7125.    type ObjectSubState is new Interfaces.Unsigned_16; 
  7126.  
  7127.    OBJECT_NEW       : constant ObjectSubState := 2#0000_0000_0000_0001#; 
  7128.    OBJECT_MODIFIED  : constant ObjectSubState := 2#0000_0000_0000_0010#; 
  7129.    OBJECT_READ      : constant ObjectSubState := 2#0000_0000_0000_0100#; 
  7130.    OBJECT_DELETED   : constant ObjectSubState := 2#0000_0000_0000_1000#; 
  7131.    OBJECT_CREATED   : constant ObjectSubState := 2#0000_0001_0000_0000#; 
  7132.    OBJECT_CHANGED   : constant ObjectSubState := 2#0000_0010_0000_0000#; 
  7133.    OBJECT_WRITTEN   : constant ObjectSubState := 2#0000_0100_0000_0000#; 
  7134.    OBJECT_DESTROYED : constant ObjectSubState := 2#0000_1000_0000_0000#; 
  7135.  
  7136.    type DLRLOid is record 
  7137.       Creator_Id : aliased Unsigned_Long; 
  7138.       Local_Id   : aliased Unsigned_Long; 
  7139.    end record; 
  7140.  
  7141.    type TimeOutDuration is    new Interfaces.Unsigned_32; 
  7142.  
  7143.    INFINITE_TIME_OUT : constant TimeOutDuration  := -1; 
  7144.  
  7145.    subtype ClassName is DDS.String; 
  7146.    subtype CacheName is  DDS.String; 
  7147.    subtype RelationName is DDS.String; 
  7148.  
  7149.    BadParameter    : exception; 
  7150.  
  7151.    NotFound        : exception; 
  7152.  
  7153.    --  type ReadOnlyMode_Members is 
  7154.  
  7155.    ReadOnlyMode    : exception; 
  7156.  
  7157.    WriteOnlyMode   : exception; 
  7158.  
  7159.    AlreadyClonedInWriteMode : exception; 
  7160.  
  7161.    ExpiredTimeOut  : exception; 
  7162.  
  7163.  
  7164.    type ObjectReference is record 
  7165.       Oid        : DLRLOid; 
  7166.       Home_Index : Unsigned_Long; 
  7167.    end record; 
  7168.  
  7169.    type RelationKind is 
  7170.      (REF_RELATION, 
  7171.       LIST_RELATION, 
  7172.       INT_MAP_RELATION, 
  7173.       STR_MAP_RELATION); 
  7174.  
  7175.  
  7176.    type RelatedObjectDepth is   new Short_Integer; 
  7177.    UNLIMITED_RELATED_OBJECTS : constant RelatedObjectDepth    := -1; 
  7178.  
  7179.    type MembershipState is 
  7180.      (UNDEFINED_MEMBERSHIP, 
  7181.       ALREADY_MEMBER, 
  7182.       NOT_MEMBER); 
  7183.  
  7184.    -- 
  7185.    --  end DLRL stuff 
  7186.    -- 
  7187.  
  7188.  
  7189.    Not_Implemented : exception; 
  7190.  
  7191.    --  type Wide_String is access all Standard.Wide_Character; 
  7192.  
  7193.    --  <internal> 
  7194.    --  DDS_Octets support methods 
  7195.    --  </internal> 
  7196.  
  7197.    function Octets_New 
  7198.      return Octets_Ptr; 
  7199.    --  <dref>Octets_new</dref> 
  7200.  
  7201.    function Octets_New_W_Size 
  7202.      (Size : Integer) 
  7203.       return Octets_Ptr; 
  7204.    --  <dref>Octets_new_with_length</dref> 
  7205.  
  7206.    procedure Octets_Delete 
  7207.      (Self : Octets_Ptr); 
  7208.    --  <dref>Octets_destroy</dref> 
  7209.  
  7210.    --  <internal> 
  7211.    --  DDS_KeyedString support methods 
  7212.    --  </internal> 
  7213.  
  7214.    function KeyedString_New 
  7215.      return KeyedString_Ptr; 
  7216.    --  <dref>KeyedString_new</dref> 
  7217.  
  7218.    function KeyedString_New_W_Size 
  7219.      (Key_Size : Integer; 
  7220.       Size     : Integer) 
  7221.       return KeyedString_Ptr; 
  7222.    --  <dref>KeyedString_new_with_length</dref> 
  7223.  
  7224.    procedure KeyedString_Delete 
  7225.      (Self : KeyedString_Ptr); 
  7226.    --  <dref>KeyedString_destroy</dref> 
  7227.  
  7228.    --  <internal> 
  7229.    --  DDS_KeyedOctets support methods 
  7230.    --  </internal> 
  7231.  
  7232.    function KeyedOctets_New 
  7233.      return KeyedOctets_Ptr; 
  7234.    --  <dref>KeyedOctets_new</dref> 
  7235.  
  7236.    function KeyedOctets_New_W_Size 
  7237.      (Key_Size : Integer; 
  7238.       Size     : Integer) 
  7239.       return KeyedOctets_Ptr; 
  7240.    --  <dref>KeyedOctets_new_with_length</dref> 
  7241.  
  7242.    procedure KeyedOctets_Delete 
  7243.      (Self : KeyedOctets_Ptr); 
  7244.    --  <dref>KeyedOctets_destroy</dref> 
  7245.  
  7246.    function Convert (Code : RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_ReturnCode_t) return DDS.ReturnCode_T; 
  7247.  
  7248.    procedure Ret_Code_To_Exception (Code    : RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_ReturnCode_t; 
  7249.                                     Message : Standard.String := ""); 
  7250.  
  7251.    procedure Ret_Code_To_Exception (Code    : RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Boolean; 
  7252.                                     Message : Standard.String := ""); 
  7253.  
  7254. private 
  7255.    type TypeObject is new  RTIDDS.Low_Level.ndds_dds_c_dds_c_typeobject_h.DDS_Type; 
  7256.  
  7257.    use Interfaces.C.Strings; 
  7258.    --  private routines to get address of c-comaptible Qos 
  7259.  
  7260.    function GetInterface (P_Qos : TopicQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_topic_h.DDS_TopicQos; 
  7261.    function GetInterface (P_Qos : DataWriterQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h.DDS_DataWriterQos; 
  7262.    function GetInterface (P_Qos : PublisherQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_publication_h.DDS_PublisherQos; 
  7263.    function GetInterface (P_Qos : DataReaderQoS) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_subscription_h.DDS_DataReaderQos; 
  7264.    function GetInterface (P_Qos : SubscriberQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_subscription_h.DDS_SubscriberQos; 
  7265.    function GetInterface (P_Qos : DomainParticipantQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantQos; 
  7266.    function GetInterface (P_Qos : DomainParticipantFactoryQos) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_domain_h.DDS_DomainParticipantFactoryQos; 
  7267.    function GetInterface (FC_P : FlowControllerProperty_T) return access RTIDDS.Low_Level.ndds_dds_c_dds_c_flowcontroller_h.DDS_FlowControllerProperty_t; 
  7268.  
  7269.  
  7270.    procedure Free is new Ada.Unchecked_Deallocation (PublisherQos, PublisherQos_Access); 
  7271.    procedure Free is new Ada.Unchecked_Deallocation (SubscriberQos, SubscriberQos_Access); 
  7272.    procedure Free is new Ada.Unchecked_Deallocation (TopicQos, TopicQos_Access); 
  7273.  
  7274.    procedure Validate_Library; 
  7275.  
  7276.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_Time_t; 
  7277.                         Source : DDS.Time_T); 
  7278.  
  7279.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_WriteParams_t; 
  7280.                         Source : DDS.WriteParams_T); 
  7281.  
  7282.    procedure Copy_Up (Dst    : out DDS.Time_T; 
  7283.                       Source : RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_Time_t); 
  7284.  
  7285.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRESInstanceHandle; 
  7286.                         Source : DDS.InstanceHandle_T); 
  7287.  
  7288.    procedure Copy_Up (Dst    : out DDS.InstanceHandle_T; 
  7289.                       Source : RTIDDS.Low_Level.ndds_pres_pres_participant_h.PRESInstanceHandle); 
  7290.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Boolean; 
  7291.                         Source : DDS.Boolean); 
  7292.  
  7293.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_SampleIdentity_t; 
  7294.                         Source : DDS.SampleIdentity_T); 
  7295.  
  7296.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_GUID_t; 
  7297.                         Source : DDS.Guid_T); 
  7298.  
  7299.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Long; 
  7300.                         Source : DDS.Long); 
  7301.  
  7302.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Long; 
  7303.                         Source : DDS.SampleFlag); 
  7304.  
  7305.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_UnsignedLong; 
  7306.                         Source : DDS.Unsigned_Long); 
  7307.  
  7308.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_SequenceNumber_t; 
  7309.                         Source : DDS.SequenceNumber_T); 
  7310.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_OctetSeq; 
  7311.                         Source : DDS.Octet_Seq.Sequence); 
  7312.    procedure Copy_Down (Dst    : out RTIDDS.Low_Level.ndds_dds_c_dds_c_infrastructure_h.DDS_Cookie_t; 
  7313.                         Source : DDS.Cookie_T); 
  7314.  
  7315.  
  7316.  
  7317.    Epoch  : constant Ada.Calendar.Time := Ada.Calendar.Time_Of (1970, 01, 01); 
  7318.    type DDS_Wchar_Ptr is access all RTIDDS.Low_Level.ndds_dds_c_dds_c_common_h.DDS_Wchar 
  7319.       with Convention => C; 
  7320.  
  7321.    function GetInterface (Item : String) return access Interfaces.C.Strings.chars_ptr; 
  7322.    function GetInterface (Item : String) return Interfaces.C.Strings.chars_ptr; 
  7323.    procedure Copy (To : in out String; From : Interfaces.C.Strings.chars_ptr); 
  7324.  
  7325.    procedure Debug_Trap; 
  7326.  
  7327. end DDS;