Changeset 14352 in vbox for trunk/include/VBox
- Timestamp:
- Nov 19, 2008 2:10:24 PM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestPropertySvc.h
r14214 r14352 448 448 typedef struct _GetNotification 449 449 { 450 VBoxGuestHGCMCallInfoTime outhdr;450 VBoxGuestHGCMCallInfoTimed hdr; 451 451 452 452 /** -
trunk/include/VBox/VBoxGuest.h
r14266 r14352 1371 1371 } VBoxGuestHGCMCallInfo; 1372 1372 1373 typedef struct _VBoxGuestHGCMCallInfoTime out1373 typedef struct _VBoxGuestHGCMCallInfoTimed 1374 1374 { 1375 1375 uint32_t u32Timeout; /**< IN How long to wait for completion before cancelling the call */ 1376 uint32_t fInterruptible; /**< IN Is this request interruptible? */ 1376 1377 VBoxGuestHGCMCallInfo info; /**< IN/OUT The rest of the call information. Placed after the timeout 1377 1378 * so that the parameters follow as they would for a normal call. */ 1378 1379 /* Parameters follow in form HGCMFunctionParameter aParms[cParms] */ 1379 } VBoxGuestHGCMCallInfoTime out;1380 } VBoxGuestHGCMCallInfoTimed; 1380 1381 # pragma pack() 1381 1382 … … 1383 1384 # define VBOXGUEST_IOCTL_HGCM_DISCONNECT VBOXGUEST_IOCTL_CODE(17, sizeof(VBoxGuestHGCMDisconnectInfo)) 1384 1385 # define VBOXGUEST_IOCTL_HGCM_CALL(Size) VBOXGUEST_IOCTL_CODE(18, (Size)) 1385 # define VBOXGUEST_IOCTL_HGCM_CALL_TIME OUT(Size)VBOXGUEST_IOCTL_CODE(20, (Size))1386 # define VBOXGUEST_IOCTL_HGCM_CALL_TIMED(Size) VBOXGUEST_IOCTL_CODE(20, (Size)) 1386 1387 # define VBOXGUEST_IOCTL_CLIPBOARD_CONNECT VBOXGUEST_IOCTL_CODE(19, sizeof(uint32_t)) 1387 1388 -
trunk/include/VBox/VBoxGuestLib.h
r14207 r14352 252 252 * @return VBox status code. 253 253 */ 254 DECLVBGL(int) VbglHGCMCallTime out(VBGLHGCMHANDLE handle,255 VBoxGuestHGCMCallInfoTimeout*pData, uint32_t cbData);254 DECLVBGL(int) VbglHGCMCallTimed (VBGLHGCMHANDLE handle, 255 VBoxGuestHGCMCallInfoTimed *pData, uint32_t cbData); 256 256 /** @} */ 257 257
Note:
See TracChangeset
for help on using the changeset viewer.