summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-11-19 22:39:10 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-11-19 22:39:10 +0000
commita24b8eec96b21d6d225f1795e8f50f7b54a30adf (patch)
treec860ae86aa91da443f1e2a9d4a270b7ec359fbed
parentff93b0001dfac11eef824779bc4c0fda080c74d7 (diff)
downloadlibnsbmp-a24b8eec96b21d6d225f1795e8f50f7b54a30adf.tar.gz
libnsbmp-a24b8eec96b21d6d225f1795e8f50f7b54a30adf.tar.bz2
Correct arg name
Include stddef.h as it typedefs size_t svn path=/trunk/libnsbmp/; revision=10945
-rw-r--r--include/libnsbmp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libnsbmp.h b/include/libnsbmp.h
index 1ccf820..31af9eb 100644
--- a/include/libnsbmp.h
+++ b/include/libnsbmp.h
@@ -16,6 +16,7 @@
#include <stdbool.h>
#include <stdint.h>
+#include <stddef.h>
/* bmp flags */
#define BMP_NEW 0
@@ -99,7 +100,7 @@ typedef struct ico_collection {
ico_image *first;
} ico_collection;
-void bmp_create(bmp_image *gif, bmp_bitmap_callback_vt *bitmap_callbacks);
+void bmp_create(bmp_image *bmp, bmp_bitmap_callback_vt *bitmap_callbacks);
void ico_collection_create(ico_collection *ico,
bmp_bitmap_callback_vt *bitmap_callbacks);
bmp_result bmp_analyse(bmp_image *bmp, size_t size, uint8_t *data);