Changeset 21198 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
- Timestamp:
- Jul 3, 2009 1:21:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
r18451 r21198 66 66 { 67 67 VBoxGuestHGCMConnectInfo Info; 68 Info.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */68 Info.result = VERR_WRONG_ORDER; 69 69 Info.Loc.type = VMMDevHGCMLoc_LocalHost_Existing; 70 70 memset(&Info.Loc.u, 0, sizeof(Info.Loc.u)); … … 92 92 { 93 93 VBoxGuestHGCMDisconnectInfo Info; 94 Info.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */94 Info.result = VERR_WRONG_ORDER; 95 95 Info.u32ClientID = u32ClientId; 96 96 … … 120 120 SetProperty Msg; 121 121 122 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */122 Msg.hdr.result = VERR_WRONG_ORDER; 123 123 Msg.hdr.u32ClientID = u32ClientId; 124 124 Msg.hdr.u32Function = SET_PROP_VALUE; … … 135 135 DelProperty Msg; 136 136 137 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */137 Msg.hdr.result = VERR_WRONG_ORDER; 138 138 Msg.hdr.u32ClientID = u32ClientId; 139 139 Msg.hdr.u32Function = DEL_PROP; … … 169 169 SetPropertyValue Msg; 170 170 171 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */171 Msg.hdr.result = VERR_WRONG_ORDER; 172 172 Msg.hdr.u32ClientID = u32ClientId; 173 173 Msg.hdr.u32Function = SET_PROP_VALUE; … … 183 183 DelProperty Msg; 184 184 185 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */185 Msg.hdr.result = VERR_WRONG_ORDER; 186 186 Msg.hdr.u32ClientID = u32ClientId; 187 187 Msg.hdr.u32Function = DEL_PROP; … … 277 277 GetProperty Msg; 278 278 279 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */279 Msg.hdr.result = VERR_WRONG_ORDER; 280 280 Msg.hdr.u32ClientID = u32ClientId; 281 281 Msg.hdr.u32Function = GET_PROP; … … 490 490 EnumProperties Msg; 491 491 492 Msg.hdr.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */492 Msg.hdr.result = VERR_WRONG_ORDER; 493 493 Msg.hdr.u32ClientID = u32ClientId; 494 494 Msg.hdr.u32Function = ENUM_PROPS; … … 836 836 Msg.hdr.u32Timeout = u32Timeout; 837 837 Msg.hdr.fInterruptible = true; 838 Msg.hdr.info.result = (uint32_t)VERR_WRONG_ORDER; /** @todo drop the cast when the result type has been fixed! */838 Msg.hdr.info.result = VERR_WRONG_ORDER; 839 839 Msg.hdr.info.u32ClientID = u32ClientId; 840 840 Msg.hdr.info.u32Function = GET_NOTIFICATION;
Note:
See TracChangeset
for help on using the changeset viewer.