- 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:
Randy Heit 2013-02-09 01:30:09 +00:00
parent 8af26bc8e6
commit 90f51e21e3
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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);