Changeset 68551 in vbox
- Timestamp:
- Aug 31, 2017 12:09:45 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117768
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflSizes.cpp
r62489 r68551 71 71 */ 72 72 # if ARCH_BITS == 64 73 STRUCT(VBoxSFQueryMappings, 64);74 STRUCT(VBoxSFQueryMapName, 48);75 STRUCT(VBoxSFMapFolder_Old, 64);76 STRUCT(VBoxSFMapFolder, 80);77 STRUCT(VBoxSFUnmapFolder, 32);78 STRUCT(VBoxSFCreate, 64);79 STRUCT(VBoxSFClose, 48);80 STRUCT(VBoxSFRead, 96);81 STRUCT(VBoxSFWrite, 96);82 STRUCT(VBoxSFLock, 96);83 STRUCT(VBoxSFFlush, 48);84 STRUCT(VBoxSFList, 1 44);85 STRUCT(VBoxSFInformation, 96);86 STRUCT(VBoxSFRemove, 64);87 STRUCT(VBoxSFRename, 80);73 STRUCT(VBoxSFQueryMappings, 88); 74 STRUCT(VBoxSFQueryMapName, 72); 75 STRUCT(VBoxSFMapFolder_Old, 88); 76 STRUCT(VBoxSFMapFolder, 104); 77 STRUCT(VBoxSFUnmapFolder, 56); 78 STRUCT(VBoxSFCreate, 88); 79 STRUCT(VBoxSFClose, 72); 80 STRUCT(VBoxSFRead, 120); 81 STRUCT(VBoxSFWrite, 120); 82 STRUCT(VBoxSFLock, 120); 83 STRUCT(VBoxSFFlush, 72); 84 STRUCT(VBoxSFList, 168); 85 STRUCT(VBoxSFInformation, 120); 86 STRUCT(VBoxSFRemove, 88); 87 STRUCT(VBoxSFRename, 104); 88 88 # elif ARCH_BITS == 32 89 STRUCT(VBoxSFQueryMappings, 52);90 STRUCT(VBoxSFQueryMapName, 40); /* this was changed from 52 in 21976 after VBox-1.4. */91 STRUCT(VBoxSFMapFolder_Old, 52);92 STRUCT(VBoxSFMapFolder, 64);93 STRUCT(VBoxSFUnmapFolder, 2 8);94 STRUCT(VBoxSFCreate, 52);95 STRUCT(VBoxSFClose, 40);96 STRUCT(VBoxSFRead, 76);97 STRUCT(VBoxSFWrite, 76);98 STRUCT(VBoxSFLock, 76);99 STRUCT(VBoxSFFlush, 40);100 STRUCT(VBoxSFList, 112);101 STRUCT(VBoxSFInformation, 76);102 STRUCT(VBoxSFRemove, 52);103 STRUCT(VBoxSFRename, 64);89 STRUCT(VBoxSFQueryMappings, 24+52); 90 STRUCT(VBoxSFQueryMapName, 24+40); /* this was changed from 52 in 21976 after VBox-1.4. */ 91 STRUCT(VBoxSFMapFolder_Old, 24+52); 92 STRUCT(VBoxSFMapFolder, 24+64); 93 STRUCT(VBoxSFUnmapFolder, 24+28); 94 STRUCT(VBoxSFCreate, 24+52); 95 STRUCT(VBoxSFClose, 24+40); 96 STRUCT(VBoxSFRead, 24+76); 97 STRUCT(VBoxSFWrite, 24+76); 98 STRUCT(VBoxSFLock, 24+76); 99 STRUCT(VBoxSFFlush, 24+40); 100 STRUCT(VBoxSFList, 24+112); 101 STRUCT(VBoxSFInformation, 24+76); 102 STRUCT(VBoxSFRemove, 24+52); 103 STRUCT(VBoxSFRename, 24+64); 104 104 # else 105 105 # error "Unsupported ARCH_BITS" 106 106 # endif /* ARCH_BITS */ 107 107 #else 108 STRUCT(VBoxSFQueryMappings, 52);109 STRUCT(VBoxSFQueryMapName, 40); /* this was changed from 52 in 21976 after VBox-1.4. */110 STRUCT(VBoxSFMapFolder_Old, 52);111 STRUCT(VBoxSFMapFolder, 64);112 STRUCT(VBoxSFUnmapFolder, 2 8);113 STRUCT(VBoxSFCreate, 52);114 STRUCT(VBoxSFClose, 40);115 STRUCT(VBoxSFRead, 76);116 STRUCT(VBoxSFWrite, 76);117 STRUCT(VBoxSFLock, 76);118 STRUCT(VBoxSFFlush, 40);119 STRUCT(VBoxSFList, 112);120 STRUCT(VBoxSFInformation, 76);121 STRUCT(VBoxSFRemove, 52);122 STRUCT(VBoxSFRename, 64);108 STRUCT(VBoxSFQueryMappings, 24+52); 109 STRUCT(VBoxSFQueryMapName, 24+40); /* this was changed from 52 in 21976 after VBox-1.4. */ 110 STRUCT(VBoxSFMapFolder_Old, 24+52); 111 STRUCT(VBoxSFMapFolder, 24+64); 112 STRUCT(VBoxSFUnmapFolder, 24+28); 113 STRUCT(VBoxSFCreate, 24+52); 114 STRUCT(VBoxSFClose, 24+40); 115 STRUCT(VBoxSFRead, 24+76); 116 STRUCT(VBoxSFWrite, 24+76); 117 STRUCT(VBoxSFLock, 24+76); 118 STRUCT(VBoxSFFlush, 24+40); 119 STRUCT(VBoxSFList, 24+112); 120 STRUCT(VBoxSFInformation, 24+76); 121 STRUCT(VBoxSFRemove, 24+52); 122 STRUCT(VBoxSFRename, 24+64); 123 123 #endif /* VBOX_WITH_64_BITS_GUESTS */ 124 124
Note:
See TracChangeset
for help on using the changeset viewer.