diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-17 10:03:30 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-17 10:03:30 +0000 |
commit | 58d47620f3fc6cde55c6c39ebfe65ffdb8b0d8c1 (patch) | |
tree | 04f13dca0888a9e384970fd3996a306b5972fd7f /src/tool/grfio.h | |
parent | 069d63bc755e5a9335946eb70ba610956c307386 (diff) | |
download | hercules-58d47620f3fc6cde55c6c39ebfe65ffdb8b0d8c1.tar.gz hercules-58d47620f3fc6cde55c6c39ebfe65ffdb8b0d8c1.tar.bz2 hercules-58d47620f3fc6cde55c6c39ebfe65ffdb8b0d8c1.tar.xz hercules-58d47620f3fc6cde55c6c39ebfe65ffdb8b0d8c1.zip |
* Discarded extra deflate function needed for afm reading
- as a result, discarded the whole chain of support functions, .c files and includes needed to make that one function run
- also removed zlib compile/link dependencies where they are not needed
- reduced the whole zlib package into two core include files
- adjusted makefiles / project files to reflect this change
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10273 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool/grfio.h')
-rw-r--r-- | src/tool/grfio.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tool/grfio.h b/src/tool/grfio.h index 0d6268b0d..5f4701900 100644 --- a/src/tool/grfio.h +++ b/src/tool/grfio.h @@ -8,7 +8,6 @@ void grfio_init(char*); // GRFIO Initialize void grfio_final(void); // GRFIO Finalize void* grfio_reads(char*,int*); // GRFIO data file read & size get char *grfio_find_file(char *fname); -char *grfio_alloc_ptr(char *fname); #define grfio_read(fn) grfio_reads(fn, NULL) @@ -17,7 +16,6 @@ unsigned long grfio_crc32(const unsigned char *buf, unsigned int len); int decode_zip(unsigned char *dest, unsigned long* destLen, const unsigned char* source, unsigned long sourceLen); int encode_zip(unsigned char *dest, unsigned long* destLen, const unsigned char* source, unsigned long sourceLen); -int deflate_file (const char *source, const char *filename); #endif /* _GRFIO_H_ */ |