Move __stdcall into the parens for function pointer definitions.

MSVC 2010 appears to require that it be located there.
macos/v1.5.9
Eric Anholt 11 years ago
parent 6eb075c70e
commit 568533441f
  1. 11
      include/epoxy/gl.h
  2. 19
      src/dispatch_common.h
  3. 2
      src/gen_dispatch.py

@ -51,7 +51,8 @@ extern "C" {
/* APIENTRY and GLAPIENTRY are not used on Linux or Mac. */
#define APIENTRY
#define GLAPIENTRY
#define EPOXYAPIENTRY
#define EPOXY_IMPORTEXPORT
#define EPOXY_CALLSPEC
#define GLAPI
#define KHRONOS_APIENTRY
#define KHRONOS_APICALL
@ -65,8 +66,12 @@ extern "C" {
#define GLAPIENTRY APIENTRY
#endif
#ifndef EPOXYAPIENTRY
#define EPOXYAPIENTRY __declspec(dllimport) __stdcall
#ifndef EPOXY_CALLSPEC
#define EPOXY_CALLSPEC __stdcall
#endif
#ifndef EPOXY_IMPORTEXPORT
#define EPOXY_IMPORTEXPORT __declspec(dllimport)
#endif
#ifndef GLAPI

@ -27,18 +27,17 @@
#define PLATFORM_HAS_EGL 0
#define PLATFORM_HAS_GLX 0
#define PLATFORM_HAS_WGL 1
#define EPOXYCALL __stdcall
#define EPOXYAPIENTRY __declspec(dllexport) EPOXYCALL
#define EPOXY_IMPORTEXPORT __declspec(dllexport)
#elif defined(__APPLE__)
#define PLATFORM_HAS_EGL 0
#define PLATFORM_HAS_GLX 1
#define PLATFORM_HAS_WGL 0
#define EPOXYCALL
#define EPOXY_IMPORTEXPORT
#else
#define PLATFORM_HAS_EGL 1
#define PLATFORM_HAS_GLX 1
#define PLATFORM_HAS_WGL 0
#define EPOXYCALL
#define EPOXY_IMPORTEXPORT
#endif
#include "epoxy/gl.h"
@ -77,7 +76,7 @@
#define WRAPPER(x) x ## _wrapped
#define GEN_GLOBAL_REWRITE_PTR(name, args, passthrough) \
static EPOXYCALL void \
static EPOXY_CALLSPEC void \
name##_global_rewrite_ptr args \
{ \
name = (void *)name##_resolver(); \
@ -85,7 +84,7 @@
}
#define GEN_GLOBAL_REWRITE_PTR_RET(ret, name, args, passthrough) \
static EPOXYCALL ret \
static EPOXY_CALLSPEC ret \
name##_global_rewrite_ptr args \
{ \
name = (void *)name##_resolver(); \
@ -94,7 +93,7 @@
#if USING_DISPATCH_TABLE
#define GEN_DISPATCH_TABLE_REWRITE_PTR(name, args, passthrough) \
static EPOXYCALL void \
static EPOXY_CALLSPEC void \
name##_dispatch_table_rewrite_ptr args \
{ \
struct dispatch_table *dispatch_table = get_dispatch_table(); \
@ -104,7 +103,7 @@
}
#define GEN_DISPATCH_TABLE_REWRITE_PTR_RET(ret, name, args, passthrough) \
static EPOXYCALL ret \
static EPOXY_CALLSPEC ret \
name##_dispatch_table_rewrite_ptr args \
{ \
struct dispatch_table *dispatch_table = get_dispatch_table(); \
@ -114,14 +113,14 @@
}
#define GEN_DISPATCH_TABLE_THUNK(name, args, passthrough) \
static EPOXYCALL void \
static EPOXY_CALLSPEC void \
name##_dispatch_table_thunk args \
{ \
get_dispatch_table()->name passthrough; \
}
#define GEN_DISPATCH_TABLE_THUNK_RET(ret, name, args, passthrough) \
static EPOXYCALL ret \
static EPOXY_CALLSPEC ret \
name##_dispatch_table_thunk args \
{ \
return get_dispatch_table()->name passthrough; \

@ -525,7 +525,7 @@ class Generator(object):
self.write_function_ptr_typedefs()
for func in self.sorted_functions:
self.outln('extern EPOXYAPIENTRY {0} (*epoxy_{1})({2});'.format(func.ret_type,
self.outln('extern EPOXY_IMPORTEXPORT {0} (EPOXY_CALLSPEC *epoxy_{1})({2});'.format(func.ret_type,
func.name,
func.args_decl))
self.outln('')

Loading…
Cancel
Save