blob: 602c7c17d15ee8bc1164bd7f7449c7e079c24b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* $XConsortium$ */
/*
* Copyright 1988-1993 Network Computing Devices, Inc. All rights reserved.
* An unpublished work.
*
* $NCDId: @(#)lbxbuf.h,v 1.1 1994/02/16 18:57:32 lemke Exp $
*/
#ifndef _BUFFER_H_
#define _BUFFER_H_
#define INBUFFER_SIZE (1 << 13) /* 8K */
#define OUTBUFFER_SIZE (1 << 12) /* 4K */
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef struct _lzwbuffer *LzwBufferPtr;
extern int InitLzwBuffer();
extern void FreeLzwBuffer();
extern char *ReserveOutBuf();
#endif /* _BUFFER_H_ */
|