diff options
| author | Ian Elliott <ian@LunarG.com> | 2015-02-26 17:01:30 -0700 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-03-02 17:21:11 -0700 |
| commit | 61a8ce5773bd08c551f90c65ad817566fc0cf861 (patch) | |
| tree | 6d356091aafbb1a6f017377ed4da421e6ac565d0 | |
| parent | 4aaa3ed005530a2b1600d1981fcc39a6297d94b3 (diff) | |
| download | usermoji-61a8ce5773bd08c551f90c65ad817566fc0cf861.tar.xz | |
Win/glave: Compile/link the glvtrace_xgl64.dll library on Windows.
| -rwxr-xr-x | glave-generate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glave-generate.py b/glave-generate.py index 1f40af72..0bc21ab1 100755 --- a/glave-generate.py +++ b/glave-generate.py @@ -160,7 +160,7 @@ class Subcommand(object): func_protos.append('// Hooked function prototypes\n') for proto in self.protos: if 'Dbg' not in proto.name and 'Wsi' not in proto.name: - func_protos.append('%s;' % proto.c_func(prefix="__HOOKED_xgl", attr="XGLAPI")) + func_protos.append('GLVTRACER_EXPORT %s;' % proto.c_func(prefix="__HOOKED_xgl", attr="XGLAPI")) return "\n".join(func_protos) @@ -169,7 +169,7 @@ class Subcommand(object): func_protos.append('// Hooked function prototypes\n') for proto in self.protos: if func_class in proto.name: - func_protos.append('%s;' % proto.c_func(prefix="__HOOKED_xgl", attr="XGLAPI")) + func_protos.append('GLVTRACER_EXPORT %s;' % proto.c_func(prefix="__HOOKED_xgl", attr="XGLAPI")) return "\n".join(func_protos) |
