mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-06 08:31:37 +00:00
- Add missing DUMBEXPORT to the dumb_load_okt[_quick] functions to fix building for VC++ release builds.
SVN r4121 (trunk)
This commit is contained in:
parent
8af26bc8e6
commit
90f51e21e3
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
||||||
* pointer to the DUH struct. When you have finished with it, you must
|
* 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.
|
* pass the pointer to unload_duh() so that the memory can be freed.
|
||||||
*/
|
*/
|
||||||
DUH *dumb_load_okt_quick(const char *filename)
|
DUH *DUMBEXPORT dumb_load_okt_quick(const char *filename)
|
||||||
{
|
{
|
||||||
DUH *duh;
|
DUH *duh;
|
||||||
DUMBFILE *f = dumbfile_open(filename);
|
DUMBFILE *f = dumbfile_open(filename);
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
DUH *dumb_load_okt(const char *filename)
|
DUH *DUMBEXPORT dumb_load_okt(const char *filename)
|
||||||
{
|
{
|
||||||
DUH *duh = dumb_load_okt_quick(filename);
|
DUH *duh = dumb_load_okt_quick(filename);
|
||||||
dumb_it_do_initial_runthrough(duh);
|
dumb_it_do_initial_runthrough(duh);
|
||||||
|
|
Loading…
Reference in a new issue