Mercurial > libpst
comparison src/lzfu.h @ 43:f6db1f060a95
start on outlook 2003 64 bit format
author | carl |
---|---|
date | Sun, 06 Jan 2008 14:47:06 -0800 |
parents | 183ae993b9ad |
children | 3cb02cb1e6cd |
comparison
equal
deleted
inserted
replaced
42:7a97f50c39c5 | 43:f6db1f060a95 |
---|---|
1 #ifndef LZFU_H | 1 #ifndef LZFU_H |
2 #define LZFU_H | 2 #define LZFU_H |
3 | 3 |
4 #ifdef _MSC_VER | |
5 #define u_int32_t unsigned int | |
6 #else | |
7 #include <stdint.h> | 4 #include <stdint.h> |
8 #endif | |
9 | 5 |
10 unsigned char* lzfu_decompress (unsigned char* rtfcomp, u_int32_t compsize, size_t *size); | 6 unsigned char* lzfu_decompress (unsigned char* rtfcomp, uint32_t compsize, size_t *size); |
11 | 7 |
12 #endif | 8 #endif |