mirror of
https://github.com/libretro/libretro-prboom.git
synced 2024-11-22 23:49:40 +00:00
11 lines
340 B
C
11 lines
340 B
C
// Copyright (c) 1993-2011 PrBoom developers (see AUTHORS)
|
|
// Licence: GPLv2 or later (see COPYING)
|
|
|
|
// Output wad construction - add lump data, build wad directory
|
|
|
|
// append lump to output wad
|
|
void output_add(const char *filename, const void *data, size_t size);
|
|
|
|
// write output file to filename
|
|
void output_write(const char *filename);
|