Changeset 55512 in vbox for trunk/include
- Timestamp:
- Apr 29, 2015 11:34:53 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99869
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/DragAndDrop.h
r55422 r55512 94 94 int OpenEx(const RTCString &strPath, Type enmType, Dest enmDest, uint64_t fMode = 0, uint32_t fFlags = 0); 95 95 int Read(void *pvBuf, size_t cbBuf, uint32_t *pcbRead); 96 void Reset(void); 96 97 int Write(const void *pvBuf, size_t cbBuf, uint32_t *pcbWritten); 97 98 … … 145 146 RTCString RootToString(const RTCString &strBasePath = "", const RTCString &strSeparator = "\r\n"); 146 147 size_t RootCount(void) { return m_lstRoot.size(); } 148 uint32_t TotalCount(void) { return m_cTotal; } 147 149 size_t TotalBytes(void) { return m_cbTotal; } 148 150 … … 159 161 /** List of all URI objects added. */ 160 162 RTCList<DnDURIObject> m_lstTree; 163 /** Total number of all URI objects. */ 164 uint32_t m_cTotal; 161 165 /** Total size of all URI objects, that is, the file 162 166 * size of all objects (in bytes). */
Note:
See TracChangeset
for help on using the changeset viewer.