Fix up Win32 build.

This commit is contained in:
Themaister 2011-05-11 21:37:50 +02:00
parent efa731fc6d
commit bdc85f2def
3 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ ifeq ($(HAVE_FBO), 1)
endif endif
ifeq ($(HAVE_DYLIB), 1) ifeq ($(HAVE_DYLIB), 1)
OBJ += gfx/ext.c OBJ += gfx/ext.o
endif endif
ifneq ($(V),1) ifneq ($(V),1)

View File

@ -82,7 +82,7 @@ ifeq ($(HAVE_FBO), 1)
endif endif
ifeq ($(HAVE_DYLIB), 1) ifeq ($(HAVE_DYLIB), 1)
OBJ += gfx/ext.c OBJ += gfx/ext.o
endif endif

View File

@ -11,7 +11,7 @@ extern "C" {
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
#define SSNES_API_DECL __decltype(dllexport) __cdecl #define SSNES_API_DECL __declspec(dllexport) __cdecl
#else #else
#define SSNES_API_DECL #define SSNES_API_DECL
#endif #endif