diff dmresw.h @ 72:be6160981428

Improve and finish write functions in resource subsystem.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 01 Oct 2012 14:17:47 +0300
parents c560703e85ed
children 3d9c044ec08d
line wrap: on
line diff
--- a/dmresw.h	Mon Oct 01 13:43:09 2012 +0300
+++ b/dmresw.h	Mon Oct 01 14:17:47 2012 +0300
@@ -14,14 +14,14 @@
 #endif
 
 int          dmf_write_str(DMResource *, Uint8 *, size_t);
-BOOL         dmf_write_be16(DMResource *, Uint16 *);
-BOOL         dmf_write_be32(DMResource *, Uint32 *);
-BOOL         dmf_write_le16(DMResource *, Uint16 *);
-BOOL         dmf_write_le32(DMResource *, Uint32 *);
+BOOL         dmf_write_be16(DMResource *, Uint16);
+BOOL         dmf_write_be32(DMResource *, Uint32);
+BOOL         dmf_write_le16(DMResource *, Uint16);
+BOOL         dmf_write_le32(DMResource *, Uint32);
 
 #ifdef DM_HAVE_64BIT
-BOOL         dmf_write_be64(DMResource *, Uint64 *);
-BOOL         dmf_write_le64(DMResource *, Uint64 *);
+BOOL         dmf_write_be64(DMResource *, Uint64);
+BOOL         dmf_write_le64(DMResource *, Uint64);
 #endif