File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Result code and message for service calls.
2
2
# Note that additional results for specific services can defined within them using values above 100.
3
3
4
- uint8 RESULT_FEATURE_UNSUPPORTED = 0 # Feature is not supported by the simulator, check GetSimulatorFeatures.
4
+ int32 RESULT_FEATURE_UNSUPPORTED = 0 # Feature is not supported by the simulator, check GetSimulatorFeatures.
5
5
# While feature support can sometimes be deduced from presence of corresponding
6
6
# service / action interface, in other cases it is about supporting certain
7
7
# call parameters, formats and options within interface call.
8
- uint8 RESULT_OK = 1
9
- uint8 RESULT_NOT_FOUND = 2 # No match for input (such as when entity name does not exist).
10
- uint8 RESULT_INCORRECT_STATE = 3 # Simulator is in an incorrect state for this interface call, e.g. a service
8
+ int32 RESULT_OK = 1
9
+ int32 RESULT_NOT_FOUND = 2 # No match for input (such as when entity name does not exist).
10
+ int32 RESULT_INCORRECT_STATE = 3 # Simulator is in an incorrect state for this interface call, e.g. a service
11
11
# requires paused state but the simulator is not paused.
12
- uint8 RESULT_OPERATION_FAILED = 4 # Request could not be completed successfully even though feature is supported
12
+ int32 RESULT_OPERATION_FAILED = 4 # Request could not be completed successfully even though feature is supported
13
13
# and the input is correct; check error_message for details.
14
14
# Implementation rule: check extended codes for called service
15
15
# (e.g. SpawnEntity) to provide a return code which is more specific.
You can’t perform that action at this time.
0 commit comments