Changeset 83319 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 18, 2020 5:23:39 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136511
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r82968 r83319 611 611 struct GuestDirectoryOpenInfo 612 612 { 613 GuestDirectoryOpenInfo(void) 614 : mFlags(0) { } 615 613 616 /** The directory path. */ 614 617 Utf8Str mPath; … … 626 629 struct GuestFileOpenInfo 627 630 { 631 GuestFileOpenInfo(void) 632 : mAccessMode((FileAccessMode_T)0) 633 , mOpenAction((FileOpenAction_T)0) 634 , mSharingMode((FileSharingMode_T)0) 635 , mCreationMode(0) 636 , mfOpenEx(0) { } 637 628 638 /** The filename. */ 629 639 Utf8Str mFilename; … … 647 657 struct GuestFsObjData 648 658 { 659 GuestFsObjData(void) 660 : mType(FsObjType_Unknown) 661 , mObjectSize(0) 662 , mAllocatedSize(0) 663 , mAccessTime(0) 664 , mBirthTime(0) 665 , mChangeTime(0) 666 , mModificationTime(0) 667 , mUID(0) 668 , mGID(0) 669 , mNodeID(0) 670 , mNodeIDDevice(0) 671 , mNumHardLinks(0) 672 , mDeviceNumber(0) 673 , mGenerationID(0) 674 , mUserFlags(0) { } 675 649 676 /** @name Helper functions to extract the data from a certin VBoxService tool's guest stream block. 650 677 * @{ */
Note:
See TracChangeset
for help on using the changeset viewer.