mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-07 05:20:38 +00:00
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
|
/* _______ ____ __ ___ ___
|
||
|
* \ _ \ \ / \ / \ \ / / ' ' '
|
||
|
* | | \ \ | | || | \/ | . .
|
||
|
* | | | | | | || ||\ /| |
|
||
|
* | | | | | | || || \/ | | ' ' '
|
||
|
* | | | | | | || || | | . .
|
||
|
* | |_/ / \ \__// || | |
|
||
|
* /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
|
||
|
* / \
|
||
|
* / . \
|
||
|
* loadptm.c - Code to read a Poly Tracker v2.03 / / \ \
|
||
|
* file, opening and closing it for | < / \_
|
||
|
* you. | \/ /\ /
|
||
|
* \_ / > /
|
||
|
* By Chris Moeller. | \ / /
|
||
|
* | ' /
|
||
|
* \__/
|
||
|
*/
|
||
|
|
||
|
#include "dumb.h"
|
||
|
#include "internal/it.h"
|
||
|
|
||
|
|
||
|
|
||
|
/* dumb_load_ptm_quick(): 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.
|
||
|
*/
|
||
|
DUH *DUMBEXPORT dumb_load_ptm_quick(const char *filename)
|
||
|
{
|
||
|
DUH *duh;
|
||
|
DUMBFILE *f = dumbfile_open(filename);
|
||
|
|
||
|
if (!f)
|
||
|
return NULL;
|
||
|
|
||
|
duh = dumb_read_ptm_quick(f);
|
||
|
|
||
|
dumbfile_close(f);
|
||
|
|
||
|
return duh;
|
||
|
}
|