Changeset 58370 in vbox for trunk/include/VBox/GuestHost
- Timestamp:
- Oct 22, 2015 10:34:26 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/DragAndDrop.h
r58212 r58370 75 75 76 76 /** Open flags. */ 77 uint32_t fOpen;77 uint32_t m_fOpen; 78 78 /** Directory handle for drop directory. */ 79 PRTDIR hDir;79 PRTDIR m_hDir; 80 80 /** Absolute path to drop directory. */ 81 RTCString strPathAbs;81 RTCString m_strPathAbs; 82 82 /** List for holding created directories in the case of a rollback. */ 83 RTCList<RTCString> lstDirs;83 RTCList<RTCString> m_lstDirs; 84 84 /** List for holding created files in the case of a rollback. */ 85 RTCList<RTCString> lstFiles;85 RTCList<RTCString> m_lstFiles; 86 86 }; 87 87
Note:
See TracChangeset
for help on using the changeset viewer.