Changeset 62847 in vbox for trunk/src/VBox
- Timestamp:
- Aug 1, 2016 9:27:18 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestCtrl.cpp
r62521 r62847 736 736 char *pszSharing, uint32_t cbSharing, 737 737 uint32_t *puCreationMode, 738 uint64_t *p uOffset)738 uint64_t *poffAt) 739 739 { 740 740 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 750 750 AssertReturn(cbSharing, VERR_INVALID_PARAMETER); 751 751 AssertPtrReturn(puCreationMode, VERR_INVALID_POINTER); 752 AssertPtrReturn(p uOffset, VERR_INVALID_POINTER);752 AssertPtrReturn(poffAt, VERR_INVALID_POINTER); 753 753 754 754 HGCMMsgFileOpen Msg; … … 779 779 Msg.context.GetUInt32(&pCtx->uContextID); 780 780 Msg.creationmode.GetUInt32(puCreationMode); 781 Msg.offset.GetUInt64(p uOffset);781 Msg.offset.GetUInt64(poffAt); 782 782 } 783 783 } … … 861 861 862 862 VBGLR3DECL(int) VbglR3GuestCtrlFileGetReadAt(PVBGLR3GUESTCTRLCMDCTX pCtx, 863 uint32_t *puHandle, uint32_t *puToRead, uint64_t *p uOffset)863 uint32_t *puHandle, uint32_t *puToRead, uint64_t *poffAt) 864 864 { 865 865 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 893 893 Msg.context.GetUInt32(&pCtx->uContextID); 894 894 Msg.handle.GetUInt32(puHandle); 895 Msg.offset.GetUInt64(p uOffset);895 Msg.offset.GetUInt64(poffAt); 896 896 Msg.size.GetUInt32(puToRead); 897 897 } … … 944 944 945 945 VBGLR3DECL(int) VbglR3GuestCtrlFileGetWriteAt(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t *puHandle, 946 void *pvData, uint32_t cbData, uint32_t *pcbSize, uint64_t *p uOffset)946 void *pvData, uint32_t cbData, uint32_t *pcbSize, uint64_t *poffAt) 947 947 { 948 948 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 980 980 Msg.handle.GetUInt32(puHandle); 981 981 Msg.size.GetUInt32(pcbSize); 982 Msg.offset.GetUInt64(poffAt); 982 983 } 983 984 } … … 987 988 988 989 VBGLR3DECL(int) VbglR3GuestCtrlFileGetSeek(PVBGLR3GUESTCTRLCMDCTX pCtx, 989 uint32_t *puHandle, uint32_t *puSeekMethod, uint64_t *p uOffset)990 uint32_t *puHandle, uint32_t *puSeekMethod, uint64_t *poffAt) 990 991 { 991 992 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 994 995 AssertPtrReturn(puHandle, VERR_INVALID_POINTER); 995 996 AssertPtrReturn(puSeekMethod, VERR_INVALID_POINTER); 996 AssertPtrReturn(p uOffset, VERR_INVALID_POINTER);997 AssertPtrReturn(poffAt, VERR_INVALID_POINTER); 997 998 998 999 HGCMMsgFileSeek Msg; … … 1021 1022 Msg.handle.GetUInt32(puHandle); 1022 1023 Msg.method.GetUInt32(puSeekMethod); 1023 Msg.offset.GetUInt64(p uOffset);1024 Msg.offset.GetUInt64(poffAt); 1024 1025 } 1025 1026 } -
trunk/src/VBox/Additions/common/crOpenGL/load.c
r62551 r62847 32 32 #include <D3dumddi.h> 33 33 #include "../../WINNT/Graphics/Video/common/wddm/VBoxMPIf.h" 34 #endif 35 36 #if defined(VBOX_WITH_CRHGSMI) && defined(IN_GUEST) 37 # include <VBox/VBoxCrHgsmi.h> 34 38 #endif 35 39
Note:
See TracChangeset
for help on using the changeset viewer.