|
Revision 1032, 1.1 kB
(checked in by shawnw, 1 year ago)
|
Merged 1.8.3p4 into trunk
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
#include "config.h" |
|---|
| 12 |
#include "options.h" |
|---|
| 13 |
#include <time.h> |
|---|
| 14 |
|
|---|
| 15 |
#include "mushtype.h" |
|---|
| 16 |
#include "log.h" |
|---|
| 17 |
|
|---|
| 18 |
#if defined(COMPRESSION_TYPE) && (COMPRESSION_TYPE == 0) |
|---|
| 19 |
|
|---|
| 20 |
char ucbuff[BUFFER_LEN]; |
|---|
| 21 |
|
|---|
| 22 |
#elif (COMPRESSION_TYPE == 1) || (COMPRESSION_TYPE == 2) |
|---|
| 23 |
|
|---|
| 24 |
#include "comp_h.c" |
|---|
| 25 |
|
|---|
| 26 |
#elif (COMPRESSION_TYPE == 3) |
|---|
| 27 |
|
|---|
| 28 |
#include "comp_w.c" |
|---|
| 29 |
#elif (COMPRESSION_TYPE == 4) |
|---|
| 30 |
|
|---|
| 31 |
* language with an extended character set. 0x06 is the only character |
|---|
| 32 |
* we can't encode right now. |
|---|
| 33 |
*/ |
|---|
| 34 |
#include "comp_w8.c" |
|---|
| 35 |
#else |
|---|
| 36 |
|
|---|
| 37 |
* Lucky for you, we're forgiving. You get no compression. |
|---|
| 38 |
*/ |
|---|
| 39 |
char ucbuff[BUFFER_LEN]; |
|---|
| 40 |
|
|---|
| 41 |
#endif |
|---|