home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / e2fltsrc.zip / e2router.h < prev    next >
C/C++ Source or Header  |  1995-07-24  |  1KB  |  28 lines

  1. /************************************************************************/
  2. /*  Linux partition filter (C) Deon van der Westhuysen.                 */
  3. /*                                                                      */
  4. /*  Dedicated to Jesus Christ, my Lord and Saviour.                     */
  5. /*                                                                      */
  6. /*  Permission is granted to freely use and modify this code for non-   */
  7. /*  profit use on the condition that this notice is not removed. All    */
  8. /*  other rights are reserved. No warranty, etc.                        */
  9. /*                                                                      */
  10. /*  This code is still under development; expect some rough edges.      */
  11. /*                                                                      */
  12. /************************************************************************/
  13.  
  14. #ifndef _E2ROUTER_H_
  15. #define _E2ROUTER_H_
  16.  
  17. #include "os2head.h"
  18.  
  19. void E2FilterIORB (PIORB pIORB);
  20. void AddIORBToQueue (NPIORBQueue pQueue, PIORB pIORB);
  21. PIORB GetIORBFromQueue (NPIORBQueue pQueue);
  22. void StartIORBQueue (NPIORBQueue pQueue);
  23.  
  24. void NotifyDone (PIORB pIORB);
  25. void IORBError (PIORB pIORB, USHORT ErrorCode);
  26.  
  27. #endif
  28.