Changeset 100948 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Aug 22, 2023 10:56:32 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/pdbvfs.cpp
r100914 r100948 1632 1632 } 1633 1633 else 1634 return RTERRINFO_LOG_SET_F(pErrInfo, rc, "Unknown file header signature: %.44Rhxs", Buf.Hdr70.szSignature);1634 return RTERRINFO_LOG_SET_F(pErrInfo, VERR_INVALID_MAGIC, "Unknown file header signature: %.44Rhxs", Buf.Hdr70.szSignature); 1635 1635 1636 1636 if ( pThis->cbPage != _4K … … 1808 1808 1809 1809 1810 /**1811 * Opens an PDB file system volume.1812 *1813 * @returns IPRT status code.1814 * @param hVfsFileIn The file or device backing the volume.1815 * @param fFlags 0 or RTFSPDB_F_NO_NAMES1816 * @param phVfs Where to return the virtual file system handle.1817 * @param pErrInfo Where to return additional error information.1818 */1819 1810 RTDECL(int) RTFsPdbVolOpen(RTVFSFILE hVfsFileIn, uint32_t fFlags, PRTVFS phVfs, PRTERRINFO pErrInfo) 1820 1811 {
Note:
See TracChangeset
for help on using the changeset viewer.