Changeset 11046 in vbox for trunk/include/VBox
- Timestamp:
- Jul 31, 2008 8:09:59 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33941
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD-new.h
r10715 r11046 32 32 #define ___VBox_VD_h 33 33 34 #include <iprt/assert.h> 35 #include <iprt/string.h> 36 #include <iprt/mem.h> 34 37 #include <VBox/cdefs.h> 35 38 #include <VBox/types.h> 39 #include <VBox/err.h> 40 /** @todo eliminate this dependency by moving data type definitions to the 41 * right place. PFNVMPROGRESS and P*PDMMEDIAGEOMETRY are affected. */ 36 42 #include <VBox/pdm.h> 37 43 … … 233 239 /** Interface for progress notification. */ 234 240 VDINTERFACETYPE_PROGRESS, 241 /** Interface for configuration information. */ 242 VDINTERFACETYPE_CONFIG, 235 243 /** invalid interface. */ 236 244 VDINTERFACETYPE_INVALID … … 267 275 * Get a specific interface from a list of interfaces specified by the type. 268 276 * 269 * @return sPointer to the matching interface or NULL if none was found.277 * @return Pointer to the matching interface or NULL if none was found. 270 278 * @param pInterfaces Pointer to the first interface in the list. 271 279 * @param enmInterface Interface to search for. … … 376 384 * to inform the backend that a task finished. 377 385 * 378 * @return sVBox status code.386 * @return VBox status code. 379 387 * @param pvUser Opaque user data which is passed on request submission. 380 388 */ … … 402 410 * Open callback 403 411 * 404 * @return sVBox status code.412 * @return VBox status code. 405 413 * @param pvUser The opaque data passed on container creation. 406 414 * @param pszLocation Name of the location to open. … … 413 421 * Close callback. 414 422 * 415 * @return sVBox status code.423 * @return VBox status code. 416 424 * @param pvUser The opaque data passed on container creation. 417 425 * @param pStorage The opaque storage handle to close. … … 422 430 * Synchronous write callback. 423 431 * 424 * @return sVBox status code.432 * @return VBox status code. 425 433 * @param pvUser The opaque data passed on container creation. 426 434 * @param pStorage The storage handle to use. … … 436 444 * Synchronous read callback. 437 445 * 438 * @return sVBox status code.446 * @return VBox status code. 439 447 * @param pvUser The opaque data passed on container creation. 440 448 * @param pStorage The storage handle to use. … … 450 458 * Flush data to the storage backend. 451 459 * 452 * @return sVBox statis code.460 * @return VBox statis code. 453 461 * @param pvUser The opaque data passed on container creation. 454 462 * @param pStorage The storage handle to flush. … … 459 467 * Prepare an asynchronous read task. 460 468 * 461 * @return sVBox status code.469 * @return VBox status code. 462 470 * @param pvUser The opqaue user data passed on container creation. 463 471 * @param pStorage The storage handle. … … 473 481 * Prepare an asynchronous write task. 474 482 * 475 * @return sVBox status code.483 * @return VBox status code. 476 484 * @param pvUser The opaque user data passed on conatiner creation. 477 485 * @param pStorage The storage handle. … … 487 495 * Submit an array of tasks for processing 488 496 * 489 * @return sVBox status code.497 * @return VBox status code. 490 498 * @param pvUser The opaque user data passed on container creation. 491 499 * @param apTasks Array of task handles to submit. … … 552 560 AssertMsgReturn( (pInterfaceProgress->cbSize == sizeof(VDINTERFACEPROGRESS)) 553 561 && (pInterfaceProgress->enmInterface == VDINTERFACETYPE_PROGRESS), 554 ("Not a nprogress notification interface\n"), NULL);562 ("Not a progress notification interface\n"), NULL); 555 563 556 564 return pInterfaceProgress; 565 } 566 567 /** Configuration node for configuration information interface. */ 568 typedef struct VDCFGNODE *PVDCFGNODE; 569 570 /** 571 * Configuration value type for configuration information interface. 572 */ 573 typedef enum VDCFGVALUETYPE 574 { 575 /** Integer value. */ 576 VDCFGVALUETYPE_INTEGER = 1, 577 /** String value. */ 578 VDCDFVALUETYPE_STRING, 579 /** Bytestring value. */ 580 VDCFGVALUETYPE_BYTES 581 } VDCFGVALUETYPE; 582 /** Pointer to configuration value type for configuration information interface. */ 583 typedef VDCFGVALUETYPE *PVDCFGVALUETYPE; 584 585 /** 586 * Configuration information interface 587 */ 588 typedef struct VDINTERFACECONFIG 589 { 590 /** 591 * Size of the configuration interface. 592 */ 593 uint32_t cbSize; 594 595 /** 596 * Interface type. 597 */ 598 VDINTERFACETYPE enmInterface; 599 600 /** 601 * Validates that the values are within a set of valid names. 602 * 603 * @return true if all names are found in pszzAllowed. 604 * @return false if not. 605 * @param pNode The node which values should be examined. 606 * @param pszzValid List of valid names separated by '\\0' and ending with 607 * a double '\\0'. 608 */ 609 DECLR3CALLBACKMEMBER(bool, pfnAreValuesValid, (PVDCFGNODE pNode, const char *pszzValid)); 610 DECLR3CALLBACKMEMBER(int, pfnQueryType, (PVDCFGNODE pNode, const char *pszName, PVDCFGVALUETYPE penmType)); 611 DECLR3CALLBACKMEMBER(int, pfnQuerySize, (PVDCFGNODE pNode, const char *pszName, size_t *pcb)); 612 DECLR3CALLBACKMEMBER(int, pfnQueryInteger, (PVDCFGNODE pNode, const char *pszName, uint64_t *pu64)); 613 DECLR3CALLBACKMEMBER(int, pfnQueryIntegerDef, (PVDCFGNODE pNode, const char *pszName, uint64_t *pu64, uint64_t u64Def)); 614 DECLR3CALLBACKMEMBER(int, pfnQueryString, (PVDCFGNODE pNode, const char *pszName, char *pszString, size_t cchString)); 615 DECLR3CALLBACKMEMBER(int, pfnQueryStringDef, (PVDCFGNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef)); 616 DECLR3CALLBACKMEMBER(int, pfnQueryBytes, (PVDCFGNODE pNode, const char *pszName, void *pvData, size_t cbData)); 617 } VDINTERFACECONFIG, *PVDINTERFACECONFIG; 618 619 /** 620 * Get configuration information interface from opaque callback table. 621 * 622 * @return Pointer to the callback table. 623 * @param pCallbacks Opaque interface pointer. 624 */ 625 DECLINLINE(PVDINTERFACECONFIG) VDGetInterfaceConfig(void *pCallbacks) 626 { 627 PVDINTERFACECONFIG pInterfaceConfig = (PVDINTERFACECONFIG)pCallbacks; 628 629 /* Do basic checks. */ 630 AssertMsgReturn( (pInterfaceConfig->cbSize == sizeof(VDINTERFACECONFIG)) 631 && (pInterfaceConfig->enmInterface == VDINTERFACETYPE_CONFIG), 632 ("Not a configuration informaion interface\n"), NULL); 633 634 return pInterfaceConfig; 635 } 636 637 /** 638 * Query configuration, validates that the values are within a set of valid names. 639 * 640 * @returns true if all names are found in pszzAllowed. 641 * @returns false if not. 642 * @param pCfgIf Pointer to configuration callback table. 643 * @param pNode The node which values should be examined. 644 * @param pszzValid List of valid names separated by '\\0' and ending with 645 * a double '\\0'. 646 */ 647 DECLINLINE(bool) VDCFGAreValuesValid(PVDINTERFACECONFIG pCfgIf, 648 PVDCFGNODE pNode, 649 const char *pszzValid) 650 { 651 return pCfgIf->pfnAreValuesValid(pNode, pszzValid); 652 } 653 654 /** 655 * Query configuration, unsigned 64-bit integer value with default. 656 * 657 * @return VBox status code. 658 * @param pCfgIf Pointer to configuration callback table. 659 * @param pNode Which node to search for pszName in. 660 * @param pszName Name of an integer value 661 * @param pu64 Where to store the value. Set to default on failure. 662 * @param u64Def The default value. 663 */ 664 DECLINLINE(int) VDCFGQueryU64Def(PVDINTERFACECONFIG pCfgIf, PVDCFGNODE pNode, 665 const char *pszName, uint64_t *pu64, 666 uint64_t u64Def) 667 { 668 return pCfgIf->pfnQueryIntegerDef(pNode, pszName, pu64, u64Def); 669 } 670 671 /** 672 * Query configuration, unsigned 32-bit integer value with default. 673 * 674 * @return VBox status code. 675 * @param pCfgIf Pointer to configuration callback table. 676 * @param pNode Which node to search for pszName in. 677 * @param pszName Name of an integer value 678 * @param pu32 Where to store the value. Set to default on failure. 679 * @param u32Def The default value. 680 */ 681 DECLINLINE(int) VDCFGQueryU32Def(PVDINTERFACECONFIG pCfgIf, PVDCFGNODE pNode, 682 const char *pszName, uint32_t *pu32, 683 uint32_t u32Def) 684 { 685 uint64_t u64; 686 int rc = pCfgIf->pfnQueryIntegerDef(pNode, pszName, &u64, u32Def); 687 if (VBOX_SUCCESS(rc)) 688 { 689 if (!(u64 & UINT64_C(0xffffffff00000000))) 690 *pu32 = (uint32_t)u64; 691 else 692 rc = VERR_CFGM_INTEGER_TOO_BIG; 693 } 694 return rc; 695 } 696 697 /** 698 * Query configuration, bool value with default. 699 * 700 * @return VBox status code. 701 * @param pCfgIf Pointer to configuration callback table. 702 * @param pNode Which node to search for pszName in. 703 * @param pszName Name of an integer value 704 * @param pf Where to store the value. Set to default on failure. 705 * @param fDef The default value. 706 */ 707 DECLINLINE(int) VDCFGQueryBoolDef(PVDINTERFACECONFIG pCfgIf, PVDCFGNODE pNode, 708 const char *pszName, bool *pf, 709 bool fDef) 710 { 711 uint64_t u64; 712 int rc = pCfgIf->pfnQueryIntegerDef(pNode, pszName, &u64, fDef); 713 if (VBOX_SUCCESS(rc)) 714 *pf = u64 ? true : false; 715 return rc; 716 } 717 718 /** 719 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated 720 * character value. 721 * 722 * @return VBox status code. 723 * @param pCfgIf Pointer to configuration callback table. 724 * @param pNode Which node to search for pszName in. 725 * @param pszName Name of an zero terminated character value 726 * @param ppszString Where to store the string pointer. Not set on failure. 727 * Free this using RTMemFree(). 728 */ 729 DECLINLINE(int) VDCFGQueryStringAlloc(PVDINTERFACECONFIG pCfgIf, 730 PVDCFGNODE pNode, 731 const char *pszName, 732 char **ppszString) 733 { 734 size_t cch; 735 int rc = pCfgIf->pfnQuerySize(pNode, pszName, &cch); 736 if (VBOX_SUCCESS(rc)) 737 { 738 char *pszString = (char *)RTMemAlloc(cch); 739 if (pszString) 740 { 741 rc = pCfgIf->pfnQueryString(pNode, pszName, pszString, cch); 742 if (VBOX_SUCCESS(rc)) 743 *ppszString = pszString; 744 else 745 RTMemFree(pszString); 746 } 747 else 748 rc = VERR_NO_MEMORY; 749 } 750 return rc; 751 } 752 753 /** 754 * Query configuration, dynamically allocated (RTMemAlloc) zero terminated 755 * character value with default. 756 * 757 * @return VBox status code. 758 * @param pCfgIf Pointer to configuration callback table. 759 * @param pNode Which node to search for pszName in. 760 * @param pszName Name of an zero terminated character value 761 * @param ppszString Where to store the string pointer. Not set on failure. 762 * Free this using RTMemFree(). 763 * @param pszDef The default value. 764 */ 765 DECLINLINE(int) VDCFGQueryStringAllocDef(PVDINTERFACECONFIG pCfgIf, 766 PVDCFGNODE pNode, 767 const char *pszName, 768 char **ppszString, 769 const char *pszDef) 770 { 771 size_t cch; 772 int rc = pCfgIf->pfnQuerySize(pNode, pszName, &cch); 773 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT) 774 { 775 cch = strlen(pszDef) + 1; 776 rc = VINF_SUCCESS; 777 } 778 if (VBOX_SUCCESS(rc)) 779 { 780 char *pszString = (char *)RTMemAlloc(cch); 781 if (pszString) 782 { 783 rc = pCfgIf->pfnQueryStringDef(pNode, pszName, pszString, cch, pszDef); 784 if (VBOX_SUCCESS(rc)) 785 *ppszString = pszString; 786 else 787 RTMemFree(pszString); 788 } 789 else 790 rc = VERR_NO_MEMORY; 791 } 792 return rc; 793 } 794 795 /** 796 * Query configuration, dynamically allocated (RTMemAlloc) byte string value. 797 * 798 * @return VBox status code. 799 * @param pCfgIf Pointer to configuration callback table. 800 * @param pNode Which node to search for pszName in. 801 * @param pszName Name of an zero terminated character value 802 * @param ppvData Where to store the byte string pointer. Not set on failure. 803 * Free this using RTMemFree(). 804 * @param pcbData Where to store the byte string length. 805 */ 806 DECLINLINE(int) VDCFGQueryBytesAlloc(PVDINTERFACECONFIG pCfgIf, 807 PVDCFGNODE pNode, const char *pszName, 808 void **ppvData, size_t *pcbData) 809 { 810 size_t cb; 811 int rc = pCfgIf->pfnQuerySize(pNode, pszName, &cb); 812 if (VBOX_SUCCESS(rc)) 813 { 814 char *pvData = (char *)RTMemAlloc(cb); 815 if (pvData) 816 { 817 rc = pCfgIf->pfnQueryBytes(pNode, pszName, pvData, cb); 818 if (VBOX_SUCCESS(rc)) 819 { 820 *ppvData = pvData; 821 *pcbData = cb; 822 } 823 else 824 RTMemFree(pvData); 825 } 826 else 827 rc = VERR_NO_MEMORY; 828 } 829 return rc; 557 830 } 558 831 … … 571 844 * Free all returned names with RTStrFree() when you no longer need them. 572 845 * 573 * @return sVBox status code.846 * @return VBox status code. 574 847 * VERR_BUFFER_OVERFLOW if not enough space is passed. 575 848 * @param cEntriesAlloc Number of list entries available. … … 584 857 * Free all returned names with RTStrFree() when you no longer need them. 585 858 * 586 * @return sVBox status code.859 * @return VBox status code. 587 860 * @param pszBackend The backend name. 588 861 * @param pEntries Pointer to an entry. … … 594 867 * No image files are opened. 595 868 * 596 * @return sVBox status code.869 * @return VBox status code. 597 870 * @param pInterfaces Pointer to the first supported interface. 598 871 * @param ppDisk Where to store the reference to HDD container. … … 611 884 * Try to get the backend name which can use this image. 612 885 * 613 * @return sVBox status code.886 * @return VBox status code. 614 887 * @param pszFilename Name of the image file for which the backend is queried. 615 888 * @param ppszFormat Receives pointer of the UTF-8 string which contains the format name. … … 631 904 * Use VDIsReadOnly to check open mode. 632 905 * 633 * @return sVBox status code.906 * @return VBox status code. 634 907 * @param pDisk Pointer to HDD container. 635 908 * @param pszBackend Name of the image file backend to use. … … 643 916 * Creates and opens a new base image file. 644 917 * 645 * @return sVBox status code.918 * @return VBox status code. 646 919 * @param pDisk Pointer to HDD container. 647 920 * @param pszBackend Name of the image file backend to use. … … 670 943 * See comments for VDOpen function about differencing images. 671 944 * 672 * @return sVBox status code.945 * @return VBox status code. 673 946 * @param pDisk Pointer to HDD container. 674 947 * @param pszBackend Name of the image file backend to use. … … 691 964 * images in the HDD container. 692 965 * 693 * @return sVBox status code.694 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.966 * @return VBox status code. 967 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 695 968 * @param pDisk Pointer to HDD container. 696 969 * @param nImageFrom Name of the image file to merge from. … … 713 986 * the image at the new location is opened in the same way as the old one was. 714 987 * 715 * @return sVBox status code.716 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.988 * @return VBox status code. 989 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 717 990 * @param pDiskFrom Pointer to source HDD container. 718 991 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 736 1009 * will be reopened in read/write mode. 737 1010 * 738 * @return sVBox status code.739 * @return sVERR_VDI_NOT_OPENED if no image is opened in HDD container.1011 * @return VBox status code. 1012 * @return VERR_VDI_NOT_OPENED if no image is opened in HDD container. 740 1013 * @param pDisk Pointer to HDD container. 741 1014 * @param fDelete If true, delete the image from the host disk. … … 746 1019 * Closes all opened image files in HDD container. 747 1020 * 748 * @return sVBox status code.1021 * @return VBox status code. 749 1022 * @param pDisk Pointer to HDD container. 750 1023 */ … … 754 1027 * Read data from virtual HDD. 755 1028 * 756 * @return sVBox status code.757 * @return sVERR_VDI_NOT_OPENED if no image is opened in HDD container.1029 * @return VBox status code. 1030 * @return VERR_VDI_NOT_OPENED if no image is opened in HDD container. 758 1031 * @param pDisk Pointer to HDD container. 759 1032 * @param uOffset Offset of first reading byte from start of disk. … … 766 1039 * Write data to virtual HDD. 767 1040 * 768 * @return sVBox status code.769 * @return sVERR_VDI_NOT_OPENED if no image is opened in HDD container.1041 * @return VBox status code. 1042 * @return VERR_VDI_NOT_OPENED if no image is opened in HDD container. 770 1043 * @param pDisk Pointer to HDD container. 771 1044 * @param uOffset Offset of first writing byte from start of disk. … … 778 1051 * Make sure the on disk representation of a virtual HDD is up to date. 779 1052 * 780 * @return sVBox status code.781 * @return sVERR_VDI_NOT_OPENED if no image is opened in HDD container.1053 * @return VBox status code. 1054 * @return VERR_VDI_NOT_OPENED if no image is opened in HDD container. 782 1055 * @param pDisk Pointer to HDD container. 783 1056 */ … … 787 1060 * Get number of opened images in HDD container. 788 1061 * 789 * @return sNumber of opened images for HDD container. 0 if no images have been opened.1062 * @return Number of opened images for HDD container. 0 if no images have been opened. 790 1063 * @param pDisk Pointer to HDD container. 791 1064 */ … … 795 1068 * Get read/write mode of HDD container. 796 1069 * 797 * @return sVirtual disk ReadOnly status.798 * @return strue if no image is opened in HDD container.1070 * @return Virtual disk ReadOnly status. 1071 * @return true if no image is opened in HDD container. 799 1072 * @param pDisk Pointer to HDD container. 800 1073 */ … … 804 1077 * Get total capacity of an image in HDD container. 805 1078 * 806 * @return sVirtual disk size in bytes.807 * @return s0 if image with specified number was not opened.1079 * @return Virtual disk size in bytes. 1080 * @return 0 if image with specified number was not opened. 808 1081 * @param pDisk Pointer to HDD container. 809 1082 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 814 1087 * Get total file size of an image in HDD container. 815 1088 * 816 * @return sVirtual disk size in bytes.817 * @return s0 if image with specified number was not opened.1089 * @return Virtual disk size in bytes. 1090 * @return 0 if image with specified number was not opened. 818 1091 * @param pDisk Pointer to HDD container. 819 1092 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 824 1097 * Get virtual disk PCHS geometry of an image in HDD container. 825 1098 * 826 * @return sVBox status code.827 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.828 * @return sVERR_VDI_GEOMETRY_NOT_SET if no geometry present in the HDD container.1099 * @return VBox status code. 1100 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1101 * @return VERR_VDI_GEOMETRY_NOT_SET if no geometry present in the HDD container. 829 1102 * @param pDisk Pointer to HDD container. 830 1103 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 837 1110 * Store virtual disk PCHS geometry of an image in HDD container. 838 1111 * 839 * @return sVBox status code.840 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1112 * @return VBox status code. 1113 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 841 1114 * @param pDisk Pointer to HDD container. 842 1115 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 849 1122 * Get virtual disk LCHS geometry of an image in HDD container. 850 1123 * 851 * @return sVBox status code.852 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.853 * @return sVERR_VDI_GEOMETRY_NOT_SET if no geometry present in the HDD container.1124 * @return VBox status code. 1125 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1126 * @return VERR_VDI_GEOMETRY_NOT_SET if no geometry present in the HDD container. 854 1127 * @param pDisk Pointer to HDD container. 855 1128 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 862 1135 * Store virtual disk LCHS geometry of an image in HDD container. 863 1136 * 864 * @return sVBox status code.865 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1137 * @return VBox status code. 1138 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 866 1139 * @param pDisk Pointer to HDD container. 867 1140 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 874 1147 * Get version of image in HDD container. 875 1148 * 876 * @return sVBox status code.877 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1149 * @return VBox status code. 1150 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 878 1151 * @param pDisk Pointer to HDD container. 879 1152 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 886 1159 * Get type of image in HDD container. 887 1160 * 888 * @return sVBox status code.889 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1161 * @return VBox status code. 1162 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 890 1163 * @param pDisk Pointer to HDD container. 891 1164 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 898 1171 * List the capabilities of image backend in HDD container. 899 1172 * 900 * @return sVBox status code.901 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1173 * @return VBox status code. 1174 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 902 1175 * @param pDisk Pointer to the HDD container. 903 1176 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 910 1183 * Get flags of image in HDD container. 911 1184 * 912 * @return sVBox status code.913 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1185 * @return VBox status code. 1186 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 914 1187 * @param pDisk Pointer to HDD container. 915 1188 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 921 1194 * Get open flags of image in HDD container. 922 1195 * 923 * @return sVBox status code.924 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1196 * @return VBox status code. 1197 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 925 1198 * @param pDisk Pointer to HDD container. 926 1199 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 935 1208 * Note that in case of unrecoverable error all images in HDD container will be closed. 936 1209 * 937 * @return sVBox status code.938 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1210 * @return VBox status code. 1211 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 939 1212 * @param pDisk Pointer to HDD container. 940 1213 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 949 1222 * purposes. 950 1223 * 951 * @return sVBox status code.952 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.953 * @return sVERR_BUFFER_OVERFLOW if pszFilename buffer too small to hold filename.1224 * @return VBox status code. 1225 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1226 * @return VERR_BUFFER_OVERFLOW if pszFilename buffer too small to hold filename. 954 1227 * @param pDisk Pointer to HDD container. 955 1228 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 963 1236 * Get the comment line of image in HDD container. 964 1237 * 965 * @return sVBox status code.966 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.967 * @return sVERR_BUFFER_OVERFLOW if pszComment buffer too small to hold comment text.1238 * @return VBox status code. 1239 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1240 * @return VERR_BUFFER_OVERFLOW if pszComment buffer too small to hold comment text. 968 1241 * @param pDisk Pointer to HDD container. 969 1242 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 977 1250 * Changes the comment line of image in HDD container. 978 1251 * 979 * @return sVBox status code.980 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1252 * @return VBox status code. 1253 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 981 1254 * @param pDisk Pointer to HDD container. 982 1255 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 989 1262 * Get UUID of image in HDD container. 990 1263 * 991 * @return sVBox status code.992 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1264 * @return VBox status code. 1265 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 993 1266 * @param pDisk Pointer to HDD container. 994 1267 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 1000 1273 * Set the image's UUID. Should not be used by normal applications. 1001 1274 * 1002 * @return sVBox status code.1003 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1275 * @return VBox status code. 1276 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1004 1277 * @param pDisk Pointer to HDD container. 1005 1278 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 1011 1284 * Get last modification UUID of image in HDD container. 1012 1285 * 1013 * @return sVBox status code.1014 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1286 * @return VBox status code. 1287 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1015 1288 * @param pDisk Pointer to HDD container. 1016 1289 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 1023 1296 * Set the image's last modification UUID. Should not be used by normal applications. 1024 1297 * 1025 * @return sVBox status code.1026 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1298 * @return VBox status code. 1299 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1027 1300 * @param pDisk Pointer to HDD container. 1028 1301 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 1035 1308 * Get parent UUID of image in HDD container. 1036 1309 * 1037 * @return sVBox status code.1038 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1310 * @return VBox status code. 1311 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1039 1312 * @param pDisk Pointer to HDD container. 1040 1313 * @param nImage Image number, counts from 0. 0 is always base image of the container. … … 1047 1320 * Set the image's parent UUID. Should not be used by normal applications. 1048 1321 * 1049 * @return sVBox status code.1322 * @return VBox status code. 1050 1323 * @param pDisk Pointer to HDD container. 1051 1324 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 1067 1340 * Query if asynchronous operations are supported for this disk. 1068 1341 * 1069 * @return sVBox status code.1070 * @return sVERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened.1342 * @return VBox status code. 1343 * @return VERR_VDI_IMAGE_NOT_FOUND if image with specified number was not opened. 1071 1344 * @param pDisk Pointer to the HDD container. 1072 1345 * @param nImage Image number, counts from 0. 0 is always base image of container. … … 1079 1352 * Start a asynchronous read request. 1080 1353 * 1081 * @return sVBox status code.1354 * @return VBox status code. 1082 1355 * @param pDisk Pointer to the HDD container. 1083 1356 * @param uOffset The offset of the virtual disk to read from. … … 1095 1368 * Start a asynchronous write request. 1096 1369 * 1097 * @return sVBox status code.1370 * @return VBox status code. 1098 1371 * @param pDisk Pointer to the HDD container. 1099 1372 * @param uOffset The offset of the virtual disk to write to. -
trunk/include/VBox/err.h
r10715 r11046 1049 1049 /** Configuration value not found. */ 1050 1050 #define VERR_VDI_VALUE_NOT_FOUND (-3216) 1051 /** Configuration value is unknown. This indicates misconfiguration. */ 1052 #define VERR_VDI_UNKNOWN_CFG_VALUES (-3217) 1051 1053 /** Asynchronous I/O request finished. */ 1052 1054 #define VINF_VDI_ASYNC_IO_FINISHED 3218
Note:
See TracChangeset
for help on using the changeset viewer.