structs.h 677 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. windll/structs.h - Zip 3
  3. Copyright (c) 1990-2003 Info-ZIP. All rights reserved.
  4. See the accompanying file LICENSE, version 2003-May-08 or later
  5. (the contents of which are also included in zip.h) for terms of use.
  6. If, for some reason, all these files are missing, the Info-ZIP license
  7. also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
  8. */
  9. #ifndef _ZIP_STRUCTS_H
  10. #define _ZIP_STRUCTS_H
  11. #ifndef Far
  12. # define Far far
  13. #endif
  14. /* Porting definations between Win 3.1x and Win32 */
  15. #ifdef WIN32
  16. # define far
  17. # define _far
  18. # define __far
  19. # define near
  20. # define _near
  21. # define __near
  22. #endif
  23. #include "../api.h"
  24. #endif /* _ZIP_STRUCTS_H */