VirtualBox

Changeset 10377 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jul 8, 2008 4:26:13 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
33025
Message:

Implemented the IDC methods. Moved the setting of the R0Process and Process SUPDRVSESSION members to SUPDrv.c, and made SUPDrv.c provide default initialization of the Uid and Gid members.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/sup.h

    r10259 r10377  
    689689     * @returns Pointer to the factory interfaces on success, NULL on failure.
    690690     *
     691     * @param   pSupDrvFactory      Pointer to this structure.
    691692     * @param   pSession            The SUPDRV session making the query.
    692      * @param   pSupDrvFactory      Pointer to this structure.
    693693     * @param   pszInterfaceUuid    The UUID of the factory interface.
    694694     */
    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));
    696696} SUPDRVFACTORY;
    697697/** Pointer to a support driver factory. */
     
    700700typedef SUPDRVFACTORY const *PCSUPDRVFACTORY;
    701701
    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);
     702SUPR0DECL(int) SUPR0ComponentRegisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
     703SUPR0DECL(int) SUPR0ComponentDeregisterFactory(PSUPDRVSESSION pSession, PCSUPDRVFACTORY pFactory);
     704SUPR0DECL(int) SUPR0ComponentQueryFactory(PSUPDRVSESSION pSession, const char *pszName, const char *pszInterfaceUuid, void **ppvFactoryIf);
    738705
    739706
     
    764731typedef SUPDRVIDCHANDLE *PSUPDRVIDCHANDLE;
    765732
    766 SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion, uint32_t *puVersion);
     733SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion,
     734                            uint32_t *puSessionVersion, uint32_t *puDriverVersion, uint32_t *puDriverRevision);
    767735SUPR0DECL(int) SUPR0IdcCall(PSUPDRVIDCHANDLE pHandle, uint32_t iReq, void *pvReq, uint32_t cbReq);
    768736SUPR0DECL(int) SUPR0IdcClose(PSUPDRVIDCHANDLE pHandle);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette