comparison 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
comparison
equal deleted inserted replaced
71:b908fda1036e 72:be6160981428
12 #ifdef __cplusplus 12 #ifdef __cplusplus
13 extern "C" { 13 extern "C" {
14 #endif 14 #endif
15 15
16 int dmf_write_str(DMResource *, Uint8 *, size_t); 16 int dmf_write_str(DMResource *, Uint8 *, size_t);
17 BOOL dmf_write_be16(DMResource *, Uint16 *); 17 BOOL dmf_write_be16(DMResource *, Uint16);
18 BOOL dmf_write_be32(DMResource *, Uint32 *); 18 BOOL dmf_write_be32(DMResource *, Uint32);
19 BOOL dmf_write_le16(DMResource *, Uint16 *); 19 BOOL dmf_write_le16(DMResource *, Uint16);
20 BOOL dmf_write_le32(DMResource *, Uint32 *); 20 BOOL dmf_write_le32(DMResource *, Uint32);
21 21
22 #ifdef DM_HAVE_64BIT 22 #ifdef DM_HAVE_64BIT
23 BOOL dmf_write_be64(DMResource *, Uint64 *); 23 BOOL dmf_write_be64(DMResource *, Uint64);
24 BOOL dmf_write_le64(DMResource *, Uint64 *); 24 BOOL dmf_write_le64(DMResource *, Uint64);
25 #endif 25 #endif
26 26
27 27
28 #ifdef __cplusplus 28 #ifdef __cplusplus
29 } 29 }