Fast DDS  Version 3.0.1
Fast DDS
Loading...
Searching...
No Matches
DDSReturnCode.idl
1// The content of this file, related to the DDS's return code values, was extracted from the omg idl
2// https://www.omg.org/spec/DDS/20140501/dds_dcps.idl
3
4module DDS {
5
6 typedef long ReturnCode_t;
7
8 // ----------------------------------------------------------------------
9 // Return codes
10 // ----------------------------------------------------------------------
11 const ReturnCode_t RETCODE_OK = 0;
12 const ReturnCode_t RETCODE_ERROR = 1;
13 const ReturnCode_t RETCODE_UNSUPPORTED = 2;
14 const ReturnCode_t RETCODE_BAD_PARAMETER = 3;
15 const ReturnCode_t RETCODE_PRECONDITION_NOT_MET = 4;
16 const ReturnCode_t RETCODE_OUT_OF_RESOURCES = 5;
17 const ReturnCode_t RETCODE_NOT_ENABLED = 6;
18 const ReturnCode_t RETCODE_IMMUTABLE_POLICY = 7;
19 const ReturnCode_t RETCODE_INCONSISTENT_POLICY = 8;
20 const ReturnCode_t RETCODE_ALREADY_DELETED = 9;
21 const ReturnCode_t RETCODE_TIMEOUT = 10;
22 const ReturnCode_t RETCODE_NO_DATA = 11;
23 const ReturnCode_t RETCODE_ILLEGAL_OPERATION = 12;
24
25};
Definition DDSReturnCode.idl:4
long ReturnCode_t
Definition DDSReturnCode.idl:6