Changeset 37687 in vbox for trunk/include/VBox
- Timestamp:
- Jun 29, 2011 3:22:11 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r36573 r37687 4 4 5 5 /* 6 * Copyright (C) 2006-201 0Oracle Corporation6 * Copyright (C) 2006-2011 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 2642 2642 2643 2643 2644 /** Pointer to a Media Notification interface. */ 2645 typedef struct PDMIMEDIANOTIFY *PPDMIMEDIANOTIFY; 2646 /** 2647 * Interface for exporting Medium eject information (up). No interface pair. 2648 */ 2649 typedef struct PDMIMEDIANOTIFY 2650 { 2651 /** 2652 * Signals that the medium was ejected. 2653 * 2654 * @returns VBox status code. 2655 * @param pInterface Pointer to the interface structure containing the called function pointer. 2656 * @param iLUN The unit which had the medium ejected. 2657 */ 2658 DECLR3CALLBACKMEMBER(int, pfnEjected,(PPDMIMEDIANOTIFY pInterface, unsigned iLUN)); 2659 2660 } PDMIMEDIANOTIFY; 2661 /** PDMIMEDIANOTIFY interface ID. */ 2662 #define PDMIMEDIANOTIFY_IID "fc22d53e-feb1-4a9c-b9fb-0a990a6ab288" 2663 2664 2644 2665 /** The special status unit number */ 2645 2666 #define PDM_STATUS_LUN 999
Note:
See TracChangeset
for help on using the changeset viewer.