Changeset 179 for trunk/src/include/ahci-idc.h
- Timestamp:
- Dec 8, 2016, 8:59:33 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/include/ahci-idc.h
r133 r179 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-2016 David Azarewicz 6 7 * 7 8 * Authors: Christian Mueller, Markus Thielen … … 45 46 46 47 /* AHCI_IDC_ENTRY defines a function pointer to the OS2AHCI IDC entry point */ 47 typedef void (_cdecl _far *PFN_AHCI_IDC_ENTRY) (unsigned short real_ds, 48 RP_GENIOCTL _far *ioctl); 48 typedef void (_cdecl *PFN_AHCI_IDC_ENTRY) (unsigned short real_ds, REQPACKET *ioctl); 49 49 50 50 #pragma pack(1) … … 54 54 * to attach to os2ahci.add using DevHelp_AttachDD 55 55 */ 56 typedef struct { 56 typedef struct 57 { 57 58 PFN_AHCI_IDC_ENTRY real_entry_point; /* real mode entry point address */ 58 59 unsigned short real_ds; /* real mode DS */ … … 60 61 PFN_AHCI_IDC_ENTRY prot_entry_point; /* protected mode entry point address */ 61 62 unsigned short prot_ds; /* protected mode DS */ 62 63 } AHCI_ATTACH_AREA; 63 64 64 65 #pragma pack()
Note:
See TracChangeset
for help on using the changeset viewer.