view dmresw.h @ 64:ad1ef3f0d474

More work on the text subsystem.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 01 Oct 2012 11:03:10 +0300
parents c560703e85ed
children be6160981428
line wrap: on
line source

/*
 * DMLib
 * -- Resource management write helpers
 * Programmed and designed by Matti 'ccr' Hamalainen
 * (C) Copyright 2011-2012 Tecnic Software productions (TNSP)
 */
#ifndef DMRESW_H
#define DMRESW_H

#include "dmres.h"

#ifdef __cplusplus
extern "C" {
#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 *);

#ifdef DM_HAVE_64BIT
BOOL         dmf_write_be64(DMResource *, Uint64 *);
BOOL         dmf_write_le64(DMResource *, Uint64 *);
#endif


#ifdef __cplusplus
}
#endif

#endif // DMRESW_H