Cog/Frameworks/Dumb/dumb/src/it/loadptm2.c

32 lines
1.5 KiB
C
Raw Normal View History

2013-09-28 00:24:23 -03:00
/* _______ ____ __ ___ ___
* \ _ \ \ / \ / \ \ / / ' ' '
* | | \ \ | | || | \/ | . .
* | | | | | | || ||\ /| |
* | | | | | | || || \/ | | ' ' '
* | | | | | | || || | | . .
* | |_/ / \ \__// || | |
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
* / \
* / . \
* loadptm2.c - Code to read a Poly Tracker v2.03 / / \ \
* file, opening and closing it for | < / \_
* you, and do an initial run-through. | \/ /\ /
* \_ / > /
2017-10-08 22:48:02 -03:00
* By Christopher Snowhill. | \ / /
2013-09-28 00:24:23 -03:00
* | ' /
* \__/
*/
#include "dumb.h"
#include "internal/it.h"
/* dumb_load_ptm(): loads a PTM 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.
*/
2017-09-26 20:11:54 -03:00
DUH *dumb_load_ptm(const char *filename) {
DUH *duh = dumb_load_ptm_quick(filename);
dumb_it_do_initial_runthrough(duh);
return duh;
2013-09-28 00:24:23 -03:00
}