home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip22.zip / windll / structs.h < prev    next >
C/C++ Source or Header  |  1997-07-03  |  345b  |  25 lines

  1. #ifndef _ZIP_STRUCTS_H
  2. #define _ZIP_STRUCTS_H
  3.  
  4. #ifndef Far
  5. #  define Far far
  6. #endif
  7.  
  8. /* Porting definations between Win 3.1x and Win32 */
  9. #ifdef WIN32
  10. #  define far
  11. #  define _far
  12. #  define __far
  13. #  define near
  14. #  define _near
  15. #  define __near
  16. #endif
  17.  
  18. #ifndef PATH_MAX
  19. # define PATH_MAX 128
  20. #endif
  21.  
  22. #include "api.h"
  23.  
  24. #endif /* _ZIP_STRUCTS_H */
  25.