Rev 19 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
19 | f9daq | 1 | #ifndef __PCIVME_IO_H__ |
2 | #define __PCIVME_IO_H__ |
||
3 | //------------------------------------------------------------------------- |
||
4 | // WINNT driver for PCIVME interface from ARW Elektronik, Germany --------- |
||
5 | // the ioctl functions header file |
||
6 | // |
||
7 | // (c) 1999-2004 ARW Elektronik |
||
8 | // |
||
9 | // this source code is published under GPL (Open Source). You can use, redistrubute and |
||
10 | // modify it unless this header is not modified or deleted. No warranty is given that |
||
11 | // this software will work like expected. |
||
12 | // This product is not authorized for use as critical component in life support systems |
||
13 | // wihout the express written approval of ARW Elektronik Germany. |
||
14 | // |
||
15 | // Please announce changes and hints to ARW Elektronik |
||
16 | // ntddk.h must included first! |
||
17 | // |
||
18 | // $Log: pcivme_io.h,v $ |
||
19 | // Revision 1.3 2004/07/24 07:07:26 klaus |
||
20 | // Update copyright to 2004 |
||
21 | // |
||
22 | // Revision 1.2 2003/11/15 19:12:51 klaus |
||
23 | // Update copyright to 2003 |
||
24 | // |
||
25 | // Revision 1.1.1.1 2003/11/14 23:16:33 klaus |
||
26 | // First put into repository |
||
27 | // |
||
28 | // Revision 1.3 2002/10/27 16:17:48 klaus |
||
29 | // Typing bug fixed caused at log addition |
||
30 | // |
||
31 | // Revision 1.2 2002/10/27 16:11:02 klaus |
||
32 | // Added CVS log into header |
||
33 | // |
||
34 | // what who when |
||
35 | // started AR 03.07.99 |
||
36 | // changed resource allocation caused by WIN2000 AR 08.06.2002 |
||
37 | // |
||
38 | |||
39 | |||
40 | //------------------------------------------------------------------------ |
||
41 | // FUNCTIONS + EXTERNALS |
||
42 | // |
||
43 | NTSTATUS (*ioctl[])(PDEVICE_OBJECT device_Obj, PIRP irp, PIO_STACK_LOCATION IrpStack); |
||
44 | void fMyDefferedRoutine(PKDPC Dpc, PVOID pvDevice_object, PVOID pvPciada, PVOID Nothing); |
||
45 | void CancelRequest(PDEVICE_OBJECT device_Obj, PIRP Irp); |
||
46 | NTSTATUS removeQueueFromList(PFILE_OBJ pFile_obj, PCIADA *pciada); |
||
47 | |||
48 | void InsertIRPtoQueue(PDEVICE_OBJECT device_Obj, PIRP Irp); |
||
49 | PIRP RemoveIRPfromQueue(PDEVICE_OBJECT device_Obj, FILE_OBJ *pFile_obj); |
||
50 | PIRP RemoveIRPfromQueueByIrp(PDEVICE_OBJECT device_Obj, PIRP pIrpIn); |
||
51 | |||
52 | |||
53 | #endif // __PCIVME_IO_H__ |