Changeset 42898 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 21, 2012 10:07:13 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r42808 r42898 244 244 /** @name Public internal methods. 245 245 * @{ */ 246 int directory Close(ComObjPtr<GuestDirectory>pDirectory);246 int directoryRemoveFromList(GuestDirectory *pDirectory); 247 247 int directoryCreateInternal(const Utf8Str &strPath, uint32_t uMode, uint32_t uFlags); 248 248 int objectCreateTempInternal(Utf8Str strTemplate, … … 254 254 int directoryQueryInfoInternal(const Utf8Str &strPath, GuestFsObjData &objData); 255 255 int dispatchToProcess(uint32_t uContextID, uint32_t uFunction, void *pvData, size_t cbData); 256 int file Close(ComObjPtr<GuestFile>pFile);256 int fileRemoveFromList(GuestFile *pFile); 257 257 int fileRemoveInternal(Utf8Str strPath, int *prc); 258 258 int fileOpenInternal(const Utf8Str &strPath, const Utf8Str &strOpenMode, const Utf8Str &strDisposition, … … 264 264 const GuestEnvironment &getEnvironment(void); 265 265 Utf8Str getName(void); 266 ULONG getId(void) { return mData.mId; } 266 267 Guest *getParent(void) { return mData.mParent; } 267 268 uint32_t getProtocolVersion(void) { return mData.mProtocolVersion; } 268 int process Close(ComObjPtr<GuestProcess>pProcess);269 int processRemoveFromList(GuestProcess *pProcess); 269 270 int processCreateExInteral(GuestProcessStartupInfo &procInfo, ComObjPtr<GuestProcess> &pProgress); 270 271 inline bool processExists(uint32_t uProcessID, ComObjPtr<GuestProcess> *pProcess); … … 304 305 /** Process objects bound to this session. */ 305 306 SessionProcesses mProcesses; 307 /** Total number of session objects (processes, 308 * files, ...). */ 309 uint32_t mNumObjects; 306 310 } mData; 307 311 };
Note:
See TracChangeset
for help on using the changeset viewer.