Changeset 98341 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 30, 2023 3:09:52 AM (2 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleSharedFolderImpl.h
r98340 r98341 121 121 }; 122 122 123 #endif /* !MAIN_INCLUDED_ SharedFolderImpl_h */123 #endif /* !MAIN_INCLUDED_ConsoleSharedFolderImpl_h */ 124 124 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ -
trunk/src/VBox/Main/include/SharedFolderImpl.h
r98103 r98341 5 5 6 6 /* 7 * Copyright (C) 2006-202 3Oracle and/or its affiliates.7 * Copyright (C) 2006-2022 Oracle and/or its affiliates. 8 8 * 9 9 * This file is part of VirtualBox base platform packages, as … … 51 51 bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError); 52 52 HRESULT initCopy(Machine *aMachine, SharedFolder *aThat); 53 HRESULT init(Console *aConsole, const com::Utf8Str &aName, const com::Utf8Str &aHostPath,54 bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError);53 // HRESULT init(Console *aConsole, const com::Utf8Str &aName, const com::Utf8Str &aHostPath, 54 // bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError); 55 55 // HRESULT init(VirtualBox *aVirtualBox, const Utf8Str &aName, const Utf8Str &aHostPath, 56 56 // bool aWritable, const com::Utf8Str &aAutoMountPoint, bool aAutoMount, bool fFailOnError); … … 115 115 116 116 /* weak parents (only one of them is not null) */ 117 #if !defined(VBOX_COM_INPROC)118 117 Machine * const mMachine; 119 118 VirtualBox * const mVirtualBox; 120 #else121 Console * const mConsole;122 #endif123 119 124 struct Data; // opaque data struct, defined in SharedFolderImpl.cpp120 struct Data; // opaque data struct, defined in MachineSharedFolderImpl.cpp 125 121 Data *m; 126 122 };
Note:
See TracChangeset
for help on using the changeset viewer.