home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Include / ioremap.h < prev    next >
C/C++ Source or Header  |  2002-04-26  |  643b  |  32 lines

  1. /* $Id: ioremap.h,v 1.2 2002/04/26 23:09:00 smilcke Exp $ */
  2.  
  3. /*
  4.  * ioremap.h
  5.  * Autor:               Stefan Milcke
  6.  * Erstellt am:         08.11.2001
  7.  * Letzte Aenderung am: 22.04.2002
  8.  *
  9. */
  10.  
  11. #ifndef IOREMAP_H_INCLUDED
  12. #define IOREMAP_H_INCLUDED
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. #if (defined(TARGET_OS2) && !defined(NOOS2LXAPI))
  19. extern unsigned long (*ioremap)(unsigned long addr,unsigned short usSize);
  20. extern void (*iounmap)(void *addr);
  21. #else
  22. unsigned long ioremap(unsigned long addr,unsigned short usSize);
  23. void iounmap(void *addr);
  24. #endif
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30.  
  31. #endif //IOREMAP_H_INCLUDED
  32.