1/*
2  Copyright (c) 1990-2003 Info-ZIP.  All rights reserved.
3
4  See the accompanying file LICENSE, version 2000-Apr-09 or later
5  (the contents of which are also included in unzip.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 __windll_h   /* prevent multiple inclusions */
10#define __windll_h
11
12#include <windows.h>
13#include <assert.h>    /* required for all Windows applications */
14#include <setjmp.h>
15
16#include "../unzip.h"
17#include "../windll/structs.h"
18#include "../windll/decs.h"
19
20/* Allow compilation under Borland C++ also */
21#ifndef __based
22#  define __based(A)
23#endif
24
25#ifdef UNZIP_INTERNAL
26
27extern jmp_buf dll_error_return;
28
29extern HANDLE hInst;        /* current instance */
30
31int win_fprintf(zvoid *pG, FILE *file, unsigned int, char far *);
32#endif
33
34#endif /* __windll_h */
35