home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / e2fltsrc.zip / e2wrap.h < prev    next >
C/C++ Source or Header  |  1995-07-21  |  682b  |  26 lines

  1. #ifndef _EXTDEFS_H_
  2. #define _EXTDEFS_H_
  3.  
  4. #include "os2head.h"
  5.  
  6. /* In file e2wrap.asm */
  7. void memset (void FAR *Buffer, UCHAR Value, USHORT Count);
  8. void memcpy (void FAR *Dest, void FAR *Source, USHORT Size);
  9.  
  10. void VirtToPhys (void FAR *pDataSeg,ULONG FAR *ppDataSeg);
  11. void far * PhysToVirt(ULONG ppXferBuf, USHORT XferLength);
  12.  
  13. VOID FAR E2FilterIORBWrapper (PIORB pIORB);
  14. PIORB FAR FilterNotifyWrapper (PIORB pIORB);
  15. PIORB FAR PartNotifyWrapper (PIORB pIORB);
  16.  
  17. int FAR ProcRun (PIORB pIORB);
  18. int ProcBlock(PIORB pIORB);
  19.  
  20. PDevClassTableStruc E2GetADDTable (void);
  21. USHORT RegisterADD (PADDEntryPoint pAddEP, PSZ DriverName);
  22. void E2Print (PSZ Text);
  23.  
  24.  
  25. #endif
  26.