Changeset 45031 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 13, 2013 9:21:34 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84277
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmcardreaderinfs.h
r41363 r45031 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * cardreaderinfs - interface between Usb Card Reader device and its driver. … … 27 26 28 27 #ifndef ___VBox_vmm_pdmcardreaderinfs_h 29 # 28 #define ___VBox_vmm_pdmcardreaderinfs_h 30 29 31 30 #include <VBox/types.h> 32 31 33 #define PDMICARDREADERDOWN_IID "78d65378-889c-4418-8bc2-7a89a5af2817"34 32 35 33 typedef struct PDMICARDREADER_IO_REQUEST … … 50 48 51 49 50 #define PDMICARDREADERDOWN_IID "78d65378-889c-4418-8bc2-7a89a5af2817" 52 51 typedef struct PDMICARDREADERDOWN PDMICARDREADERDOWN; 53 52 typedef PDMICARDREADERDOWN *PPDMICARDREADERDOWN; 54 53 struct PDMICARDREADERDOWN 55 54 { 55 /** @todo r=bird: Why on earth is CardReaderDown part of the names here?? 56 * Please do s/pfnCardReaderDown/pfn/g. */ 56 57 DECLR3CALLBACKMEMBER(int, pfnCardReaderDownEstablishContext,(PPDMICARDREADERDOWN pInterface)); 57 58 DECLR3CALLBACKMEMBER(int, pfnCardReaderDownConnect,(PPDMICARDREADERDOWN pInterface, void *pvUser, const char *pszCardReaderName, … … 72 73 /** 73 74 * Up level provides pvInBuffer of cbInBuffer bytes to call SCardControl, also it specify bytes it expects to receive 74 * @note: device/driver implementation should copy buffers before execution in async mode, and both layers shouldn't 75 * expect permanent storage for the buffer. 75 * @note Device/driver implementation should copy buffers before execution in 76 * async mode, and both layers shouldn't expect permanent storage for the 77 * buffer. 76 78 */ 77 79 DECLR3CALLBACKMEMBER(int, pfnCardReaderDownControl,(PPDMICARDREADERDOWN pInterface, void *pvUser, … … 92 94 struct PDMICARDREADERUP 93 95 { 96 /** @todo r=bird: Why on earth is CardReaderUp part of the names here?? 97 * Please do s/pfnCardReaderUp/pfn/g. */ 94 98 DECLR3CALLBACKMEMBER(int, pfnCardReaderUpEstablishContext,(PPDMICARDREADERUP pInterface, int32_t lSCardRc)); 95 99 DECLR3CALLBACKMEMBER(int, pfnCardReaderUpStatus,(PPDMICARDREADERUP pInterface, void *pvUser, int32_t lSCardRc, … … 115 119 116 120 #endif 121
Note:
See TracChangeset
for help on using the changeset viewer.