Changeset 10377 in vbox for trunk/include/VBox
- Timestamp:
- Jul 8, 2008 4:26:13 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33025
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r10259 r10377 689 689 * @returns Pointer to the factory interfaces on success, NULL on failure. 690 690 * 691 * @param pSupDrvFactory Pointer to this structure. 691 692 * @param pSession The SUPDRV session making the query. 692 * @param pSupDrvFactory Pointer to this structure.693 693 * @param pszInterfaceUuid The UUID of the factory interface. 694 694 */ 695 DECLR0CALLBACKMEMBER(void *, pfnQueryFactoryInterface,( PSUPDRVSESSION pSession, struct SUPDRVFACTORY *pSupDrvFactory, const char *pszInterfaceUuid));695 DECLR0CALLBACKMEMBER(void *, pfnQueryFactoryInterface,(struct SUPDRVFACTORY const *pSupDrvFactory, PSUPDRVSESSION pSession, const char *pszInterfaceUuid)); 696 696 } SUPDRVFACTORY; 697 697 /** Pointer to a support driver factory. */ … … 700 700 typedef SUPDRVFACTORY const *PCSUPDRVFACTORY; 701 701 702 /** 703 * Register a component factory with the support driver. 704 * 705 * @returns VBox status code. 706 * @param pSession The SUPDRV session (must be a ring-0 session). 707 * @param pFactory Pointer to the component factory registration structure. 708 * 709 * @remarks This interface is also available thru the IDC interfaces. 710 */ 711 SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PSUPDRVFACTORY pFactory); 712 713 /** 714 * Deregister a component factory. 715 * 716 * @returns VBox status code. 717 * @param pSession The SUPDRV session (must be a ring-0 session). 718 * @param pFactory Pointer to the component factory registration structure 719 * previously passed SUPR0ComponentRegisterFactory(). 720 * 721 * @remarks This interface is also available thru the IDC interfaces. 722 */ 723 SUPR0DECL(int) SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PSUPDRVFACTORY pFactory); 724 725 /** 726 * Queries a component factory. 727 * 728 * @returns VBox status code. 729 * @retval VBOX_SUPDRV_COMPONENT_NOT_FOUND if the component factory wasn't found. 730 * @retval VBOX_SUPDRV_INTERFACE_NOT_SUPPORTED if the interface wasn't supported. 731 * 732 * @param pSession The SUPDRV session. 733 * @param pszName The name of the component factory. 734 * @param pInterfaceUuid The UUID of the factory interface. 735 * @param ppvFactoryIf Where to store the factory interface. 736 */ 737 SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, PCRTUUID pInterfaceUuid, void **ppvFactoryIf); 702 SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory); 703 SUPR0DECL(int) SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory); 704 SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, const char *pszInterfaceUuid, void **ppvFactoryIf); 738 705 739 706 … … 764 731 typedef SUPDRVIDCHANDLE *PSUPDRVIDCHANDLE; 765 732 766 SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion, uint32_t *puVersion); 733 SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion, 734 uint32_t *puSessionVersion, uint32_t *puDriverVersion, uint32_t *puDriverRevision); 767 735 SUPR0DECL(int) SUPR0IdcCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, void *pvReq, uint32_t cbReq); 768 736 SUPR0DECL(int) SUPR0IdcClose(PSUPDRVIDCHANDLE pHandle);
Note:
See TracChangeset
for help on using the changeset viewer.