Changeset 22277 in vbox for trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
- Timestamp:
- Aug 16, 2009 9:12:50 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51119
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
r18443 r22277 396 396 * Construct a named pipe stream driver instance. 397 397 * 398 * @returns VBox status. 399 * @param pDrvIns The driver instance data. 400 * If the registration structure is needed, pDrvIns->pDrvReg points to it. 401 * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration 402 * of the driver instance. It's also found in pDrvIns->pCfgHandle, but like 403 * iInstance it's expected to be used a bit in this function. 404 */ 405 static DECLCALLBACK(int) drvNamedPipeConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle) 398 * @copydoc FNPDMDRVCONSTRUCT 399 */ 400 static DECLCALLBACK(int) drvNamedPipeConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags) 406 401 { 407 402 int rc; … … 646 641 /* pfnResume */ 647 642 NULL, 643 /* pfnAttach */ 644 NULL, 648 645 /* pfnDetach */ 649 646 NULL, 650 647 /* pfnPowerOff */ 651 648 drvNamedPipePowerOff, 649 /* pfnSoftReset */ 650 NULL, 651 /* u32EndVersion */ 652 PDM_DRVREG_VERSION 652 653 }; 654
Note:
See TracChangeset
for help on using the changeset viewer.