shithub: dumb

ref: 03827e669c3ded9f6aaabe1f24eb281f761f7a34
dir: /src/it/loadriff.c/

View raw version
/*  _______         ____    __         ___    ___
 * \    _  \       \    /  \  /       \   \  /   /       '   '  '
 *  |  | \  \       |  |    ||         |   \/   |         .      .
 *  |  |  |  |      |  |    ||         ||\  /|  |
 *  |  |  |  |      |  |    ||         || \/ |  |         '  '  '
 *  |  |  |  |      |  |    ||         ||    |  |         .      .
 *  |  |_/  /        \  \__//          ||    |  |
 * /_______/ynamic    \____/niversal  /__\  /____\usic   /|  .  . ibliotheque
 *                                                      /  \
 *                                                     / .  \
 * loadriff.c - Code to read a RIFF module file       / / \  \
 *              opening and closing it for you.      | <  /   \_
 *                                                   |  \/ /\   /
 *                                                    \_  /  > /
 * By Chris Moeller.                                    | \ / /
 *                                                      |  ' /
 *                                                       \__/
 */

#include "dumb.h"
#include "internal/it.h"



/* dumb_load_riff_quick(): loads a RIFF file into a DUH struct, returning
 * a pointer to the DUH struct. When you have finished with it, you must
 * pass the pointer to unload_duh() so that the memory can be freed.
 */
DUH * dumb_load_riff_quick( const char *filename )
{
	DUH * duh;
	DUMBFILE * f = dumbfile_open( filename );

	if ( ! f )
		return NULL;

	duh = dumb_read_riff_quick( f );

	dumbfile_close( f );

	return duh;
}