summaryrefslogtreecommitdiffstats
path: root/src/fls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fls.h')
-rw-r--r--src/fls.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fls.h b/src/fls.h
index 57b3869..2db9029 100644
--- a/src/fls.h
+++ b/src/fls.h
@@ -74,12 +74,12 @@ typedef struct {
fls_element** elements;
const fls_0c_element* c_element;
void* data;
- uint32_t size;
+ size_t size;
} fls_file;
-fls_file* fls_parse(unsigned char* data, unsigned int size);
+fls_file* fls_parse(const void* data, size_t size);
void fls_free(fls_file* fls);
-int fls_update_sig_blob(fls_file* fls, const unsigned char* data, unsigned int size);
-int fls_insert_ticket(fls_file* fls, const unsigned char* data, unsigned int size);
+int fls_update_sig_blob(fls_file* fls, const void* data, size_t size);
+int fls_insert_ticket(fls_file* fls, const void* data, size_t size);
#endif