1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use crate::rc;
pub const RESULT_SUBMODULE: u32 = 600;
result_define_subgroup!(rc::RESULT_MODULE, RESULT_SUBMODULE => {
CopyHandlesFull: 1,
MoveHandlesFull: 2,
DomainObjectsFull: 3,
InvalidDomainObject: 4,
PointerSizesFull: 5,
SendStaticsFull: 6,
ReceiveStaticsFull: 7,
SendBuffersFull: 8,
ReceiveBuffersFull: 9,
ExchangeBuffersFull: 10,
InvalidSendStaticCount: 11,
InvalidReceiveStaticCount: 12,
InvalidSendBufferCount: 13,
InvalidReceiveBufferCount: 14,
InvalidExchangeBufferCount: 15,
InvalidBufferAttributes: 16,
InvalidProtocol: 17
});