summaryrefslogtreecommitdiff
path: root/src/tool/grfio.h
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-01 20:43:02 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-01 20:43:02 +0000
commit6c4ccacfc199765bb6837da08341f6c7f21464bf (patch)
treebb4e4b7eb6a2a489826b6e5308bd74791def6bd5 /src/tool/grfio.h
parent231c0084678af14b7443cbd47da99ebe380fe85c (diff)
downloadhercules-6c4ccacfc199765bb6837da08341f6c7f21464bf.tar.gz
hercules-6c4ccacfc199765bb6837da08341f6c7f21464bf.tar.bz2
hercules-6c4ccacfc199765bb6837da08341f6c7f21464bf.tar.xz
hercules-6c4ccacfc199765bb6837da08341f6c7f21464bf.zip
* Updates to map cache generator tool.
- Removed unmaintained grfio library copy and made the tool use the one in /common instead (related r12726). - Updated makefile to use compile options/libraries determined by configure (bugreport:1109). - Fixed error messages from the tool and grfio library overlapping each other (bugreport:2403). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14646 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool/grfio.h')
-rw-r--r--src/tool/grfio.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/tool/grfio.h b/src/tool/grfio.h
deleted file mode 100644
index 57439b16d..000000000
--- a/src/tool/grfio.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
-// For more information, see LICENCE in the main folder
-
-#ifndef _GRFIO_H_
-#define _GRFIO_H_
-
-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);
-
-#define grfio_read(fn) grfio_reads(fn, NULL)
-
-int grfio_size(char*); // GRFIO data file size get
-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);
-
-#endif /* _GRFIO_H_ */