Changeset 63783 in vbox for trunk/src/VBox/Storage/Parallels.cpp
- Timestamp:
- Sep 9, 2016 9:46:55 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 110604
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/Parallels.cpp
r63781 r63783 341 341 } 342 342 343 /** @copydoc V BOXHDDBACKEND::pfnCheckIfValid */343 /** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */ 344 344 static DECLCALLBACK(int) parallelsCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk, 345 345 PVDINTERFACE pVDIfsImage, VDTYPE *penmType) … … 402 402 } 403 403 404 /** @copydoc V BOXHDDBACKEND::pfnOpen */404 /** @copydoc VDIMAGEBACKEND::pfnOpen */ 405 405 static DECLCALLBACK(int) parallelsOpen(const char *pszFilename, unsigned uOpenFlags, 406 406 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage, … … 439 439 } 440 440 441 /** @copydoc V BOXHDDBACKEND::pfnCreate */441 /** @copydoc VDIMAGEBACKEND::pfnCreate */ 442 442 static DECLCALLBACK(int) parallelsCreate(const char *pszFilename, uint64_t cbSize, 443 443 unsigned uImageFlags, const char *pszComment, … … 511 511 } 512 512 513 /** @copydoc V BOXHDDBACKEND::pfnRename */513 /** @copydoc VDIMAGEBACKEND::pfnRename */ 514 514 static DECLCALLBACK(int) parallelsRename(void *pBackendData, const char *pszFilename) 515 515 { … … 548 548 } 549 549 550 /** @copydoc V BOXHDDBACKEND::pfnClose */550 /** @copydoc VDIMAGEBACKEND::pfnClose */ 551 551 static DECLCALLBACK(int) parallelsClose(void *pBackendData, bool fDelete) 552 552 { … … 560 560 } 561 561 562 /** @copydoc V BOXHDDBACKEND::pfnRead */562 /** @copydoc VDIMAGEBACKEND::pfnRead */ 563 563 static DECLCALLBACK(int) parallelsRead(void *pBackendData, uint64_t uOffset, size_t cbToRead, 564 564 PVDIOCTX pIoCtx, size_t *pcbActuallyRead) … … 605 605 } 606 606 607 /** @copydoc V BOXHDDBACKEND::pfnWrite */607 /** @copydoc VDIMAGEBACKEND::pfnWrite */ 608 608 static DECLCALLBACK(int) parallelsWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite, 609 609 PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead, … … 689 689 } 690 690 691 /** @copydoc V BOXHDDBACKEND::pfnFlush */691 /** @copydoc VDIMAGEBACKEND::pfnFlush */ 692 692 static DECLCALLBACK(int) parallelsFlush(void *pBackendData, PVDIOCTX pIoCtx) 693 693 { … … 704 704 } 705 705 706 /** @copydoc V BOXHDDBACKEND::pfnGetVersion */706 /** @copydoc VDIMAGEBACKEND::pfnGetVersion */ 707 707 static DECLCALLBACK(unsigned) parallelsGetVersion(void *pBackendData) 708 708 { … … 715 715 } 716 716 717 /** @copydoc V BOXHDDBACKEND::pfnGetSectorSize */717 /** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */ 718 718 static DECLCALLBACK(uint32_t) parallelsGetSectorSize(void *pBackendData) 719 719 { … … 731 731 } 732 732 733 /** @copydoc V BOXHDDBACKEND::pfnGetSize */733 /** @copydoc VDIMAGEBACKEND::pfnGetSize */ 734 734 static DECLCALLBACK(uint64_t) parallelsGetSize(void *pBackendData) 735 735 { … … 747 747 } 748 748 749 /** @copydoc V BOXHDDBACKEND::pfnGetFileSize */749 /** @copydoc VDIMAGEBACKEND::pfnGetFileSize */ 750 750 static DECLCALLBACK(uint64_t) parallelsGetFileSize(void *pBackendData) 751 751 { … … 763 763 } 764 764 765 /** @copydoc V BOXHDDBACKEND::pfnGetPCHSGeometry */765 /** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */ 766 766 static DECLCALLBACK(int) parallelsGetPCHSGeometry(void *pBackendData, 767 767 PVDGEOMETRY pPCHSGeometry) … … 782 782 } 783 783 784 /** @copydoc V BOXHDDBACKEND::pfnSetPCHSGeometry */784 /** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */ 785 785 static DECLCALLBACK(int) parallelsSetPCHSGeometry(void *pBackendData, 786 786 PCVDGEOMETRY pPCHSGeometry) … … 802 802 } 803 803 804 /** @copydoc V BOXHDDBACKEND::pfnGetLCHSGeometry */804 /** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */ 805 805 static DECLCALLBACK(int) parallelsGetLCHSGeometry(void *pBackendData, 806 806 PVDGEOMETRY pLCHSGeometry) … … 821 821 } 822 822 823 /** @copydoc V BOXHDDBACKEND::pfnSetLCHSGeometry */823 /** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */ 824 824 static DECLCALLBACK(int) parallelsSetLCHSGeometry(void *pBackendData, 825 825 PCVDGEOMETRY pLCHSGeometry) … … 840 840 } 841 841 842 /** @copydoc V BOXHDDBACKEND::pfnGetImageFlags */842 /** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */ 843 843 static DECLCALLBACK(unsigned) parallelsGetImageFlags(void *pBackendData) 844 844 { … … 852 852 } 853 853 854 /** @copydoc V BOXHDDBACKEND::pfnGetOpenFlags */854 /** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */ 855 855 static DECLCALLBACK(unsigned) parallelsGetOpenFlags(void *pBackendData) 856 856 { … … 864 864 } 865 865 866 /** @copydoc V BOXHDDBACKEND::pfnSetOpenFlags */866 /** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */ 867 867 static DECLCALLBACK(int) parallelsSetOpenFlags(void *pBackendData, unsigned uOpenFlags) 868 868 { … … 887 887 } 888 888 889 /** @copydoc V BOXHDDBACKEND::pfnGetComment */889 /** @copydoc VDIMAGEBACKEND::pfnGetComment */ 890 890 static DECLCALLBACK(int) parallelsGetComment(void *pBackendData, char *pszComment, 891 891 size_t cbComment) … … 901 901 } 902 902 903 /** @copydoc V BOXHDDBACKEND::pfnSetComment */903 /** @copydoc VDIMAGEBACKEND::pfnSetComment */ 904 904 static DECLCALLBACK(int) parallelsSetComment(void *pBackendData, const char *pszComment) 905 905 { … … 920 920 } 921 921 922 /** @copydoc V BOXHDDBACKEND::pfnGetUuid */922 /** @copydoc VDIMAGEBACKEND::pfnGetUuid */ 923 923 static DECLCALLBACK(int) parallelsGetUuid(void *pBackendData, PRTUUID pUuid) 924 924 { … … 933 933 } 934 934 935 /** @copydoc V BOXHDDBACKEND::pfnSetUuid */935 /** @copydoc VDIMAGEBACKEND::pfnSetUuid */ 936 936 static DECLCALLBACK(int) parallelsSetUuid(void *pBackendData, PCRTUUID pUuid) 937 937 { … … 952 952 } 953 953 954 /** @copydoc V BOXHDDBACKEND::pfnGetModificationUuid */954 /** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */ 955 955 static DECLCALLBACK(int) parallelsGetModificationUuid(void *pBackendData, PRTUUID pUuid) 956 956 { … … 965 965 } 966 966 967 /** @copydoc V BOXHDDBACKEND::pfnSetModificationUuid */967 /** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */ 968 968 static DECLCALLBACK(int) parallelsSetModificationUuid(void *pBackendData, PCRTUUID pUuid) 969 969 { … … 984 984 } 985 985 986 /** @copydoc V BOXHDDBACKEND::pfnGetParentUuid */986 /** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */ 987 987 static DECLCALLBACK(int) parallelsGetParentUuid(void *pBackendData, PRTUUID pUuid) 988 988 { … … 997 997 } 998 998 999 /** @copydoc V BOXHDDBACKEND::pfnSetParentUuid */999 /** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */ 1000 1000 static DECLCALLBACK(int) parallelsSetParentUuid(void *pBackendData, PCRTUUID pUuid) 1001 1001 { … … 1016 1016 } 1017 1017 1018 /** @copydoc V BOXHDDBACKEND::pfnGetParentModificationUuid */1018 /** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */ 1019 1019 static DECLCALLBACK(int) parallelsGetParentModificationUuid(void *pBackendData, PRTUUID pUuid) 1020 1020 { … … 1035 1035 } 1036 1036 1037 /** @copydoc V BOXHDDBACKEND::pfnSetParentModificationUuid */1037 /** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */ 1038 1038 static DECLCALLBACK(int) parallelsSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid) 1039 1039 { … … 1054 1054 } 1055 1055 1056 /** @copydoc V BOXHDDBACKEND::pfnDump */1056 /** @copydoc VDIMAGEBACKEND::pfnDump */ 1057 1057 static DECLCALLBACK(void) parallelsDump(void *pBackendData) 1058 1058 {
Note:
See TracChangeset
for help on using the changeset viewer.