annotate src/lzfu.h @ 60:97b7706bdda2

Work around bogus 7c.b5 blocks in some messages that have been read. They appear to have attachments, but of some unknown format. Before the message was read, it did not have any attachments. Use autoscan to cleanup our autoconf system. Use autoconf to detect when we need to use our XGetopt files and other header files. More fields, including BCC. Fix missing LE32_CPU byte swapping for FILETIME types.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 16 Feb 2008 12:26:35 -0800
parents f6db1f060a95
children 3cb02cb1e6cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1 #ifndef LZFU_H
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 #define LZFU_H
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
3
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
4 #include <stdint.h>
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
5
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
6 unsigned char* lzfu_decompress (unsigned char* rtfcomp, uint32_t compsize, size_t *size);
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
7
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 36
diff changeset
8 #endif