"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "c-headers/windll/structs.h" of archive zip232dN.zip:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 /*
    2   Copyright (c) 1990-2005 Info-ZIP.  All rights reserved.
    3 
    4   See the accompanying file LICENSE, version 2004-May-22 or later
    5   (the contents of which are also included in zip.h) for terms of use.
    6   If, for some reason, both of 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 
   12 #ifndef Far
   13 #  define Far far
   14 #endif
   15 
   16 /* Porting definations between Win 3.1x and Win32 */
   17 #ifdef WIN32
   18 #  define far
   19 #  define _far
   20 #  define __far
   21 #  define near
   22 #  define _near
   23 #  define __near
   24 #endif
   25 
   26 #include "../api.h"
   27 
   28 #endif /* _ZIP_STRUCTS_H */