summaryrefslogtreecommitdiff
path: root/src/common/grfio.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/grfio.hpp')
-rw-r--r--src/common/grfio.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/common/grfio.hpp b/src/common/grfio.hpp
index 58afb07..7707b2b 100644
--- a/src/common/grfio.hpp
+++ b/src/common/grfio.hpp
@@ -8,11 +8,17 @@
// Note that there currently is a 1-1 correlation between them,
// but it is possible for a single .wlk to have multiple .gats reference it
-/// Load file into memory
-# define grfio_read(resourcename) grfio_reads(resourcename, NULL)
/// Load file into memory and possibly record length
// For some reason, this allocates an extra 1024 bytes at the end
void *grfio_reads(const char *resourcename, size_t *size);
+
+/// Load file into memory
+inline
+void *grfio_read(const char *resourcename)
+{
+ return grfio_reads(resourcename, NULL);
+}
+
/// Get size of file
// This is only called once, and that is to check the existence of a file.
size_t grfio_size(const char *resourcename) __attribute__((deprecated));