Fixed mixup in win32 plugin provider code, and added win32 & dc plugin providers to the build system

svn-id: r24150
This commit is contained in:
Max Horn 2006-10-07 00:35:05 +00:00
parent 8d82ffd31b
commit d88288120b
2 changed files with 4 additions and 2 deletions

View File

@ -13,7 +13,9 @@ MODULE_OBJS := \
midi/quicktime.o \
midi/seq.o \
midi/windows.o \
plugins/dc/dc-provider.o \
plugins/posix/posix-provider.o \
plugins/win32/win32-provider.o \
saves/savefile.o \
saves/default/default-saves.o \
timer/default/default-timer.o

View File

@ -21,7 +21,7 @@
*
*/
#ifdef DYNAMIC_MODULES
#if defined(DYNAMIC_MODULES) && defined(_WIN32)
#include "backends/plugins/win32/win32-provider.h"
#include "backends/plugins/dynamic-plugin.h"
@ -121,4 +121,4 @@ PluginList Win32PluginProvider::getPlugins() {
}
#endif // DYNAMIC_MODULES
#endif // defined(DYNAMIC_MODULES) && defined(_WIN32)