Changeset 47294 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Jul 22, 2013 11:19:20 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87431
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/GenericRequest.cpp
r44528 r47294 5 5 6 6 /* 7 * Copyright (C) 2006-201 1Oracle Corporation7 * Copyright (C) 2006-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 70 70 } 71 71 72 /* This can be a variable size request. Check the request type and limit the size 72 /* 73 * This can be a variable size request. Check the request type and limit the size 73 74 * to VMMDEV_MAX_VMMDEVREQ_SIZE, which is max size supported by the host. 75 * 76 * Note: Keep this list sorted for easier human lookup! 74 77 */ 75 if ( pReq->requestType == VMMDevReq_LogString 76 || pReq->requestType == VMMDevReq_VideoSetVisibleRegion 77 || pReq->requestType == VMMDevReq_SetPointerShape 78 if ( pReq->requestType == VMMDevReq_ChangeMemBalloon 78 79 #ifdef VBOX_WITH_64_BITS_GUESTS 79 80 || pReq->requestType == VMMDevReq_HGCMCall32 … … 82 83 || pReq->requestType == VMMDevReq_HGCMCall 83 84 #endif /* VBOX_WITH_64_BITS_GUESTS */ 84 || pReq->requestType == VMMDevReq_ChangeMemBalloon 85 || pReq->requestType == VMMDevReq_RegisterSharedModule) 85 || pReq->requestType == VMMDevReq_RegisterSharedModule 86 || pReq->requestType == VMMDevReq_ReportGuestUserState 87 || pReq->requestType == VMMDevReq_LogString 88 || pReq->requestType == VMMDevReq_SetPointerShape 89 || pReq->requestType == VMMDevReq_VideoSetVisibleRegion) 86 90 { 87 91 if (cbReq > VMMDEV_MAX_VMMDEVREQ_SIZE) -
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r46147 r47294 5 5 6 6 # 7 # Copyright (C) 2006-201 2Oracle Corporation7 # Copyright (C) 2006-2013 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 112 112 VBoxGuestR3LibCredentials.cpp \ 113 113 VBoxGuestR3LibEvent.cpp \ 114 VBoxGuestR3LibGuestUser.cpp \ 114 115 VBoxGuestR3LibGR.cpp \ 115 116 VBoxGuestR3LibHostChannel.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.