Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2009-01-24 21:09:03 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-01-24 21:09:03 +0300
commitca5fe954f4f26972ad4ff7a07417df7253ad7f6f (patch)
tree0a546548bee46bff2d2bc35b29931cc08919e262 /extern/libopenjpeg/openjpeg.h
parent10e39a23311d392e916b02ed9f551d8eee214047 (diff)
* make sure openjpeg stuff compiles and links properly.
- since we use this only as statically linked, I took out some confusing #ifdefs.
Diffstat (limited to 'extern/libopenjpeg/openjpeg.h')
-rw-r--r--extern/libopenjpeg/openjpeg.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/extern/libopenjpeg/openjpeg.h b/extern/libopenjpeg/openjpeg.h
index ffcaacaf6e5..ae7764eab2f 100644
--- a/extern/libopenjpeg/openjpeg.h
+++ b/extern/libopenjpeg/openjpeg.h
@@ -40,25 +40,8 @@
==========================================================
*/
-#if defined(OPJ_STATIC) || !(defined(WIN32) || defined(__WIN32__))
#define OPJ_API
#define OPJ_CALLCONV
-#else
-#define OPJ_CALLCONV __stdcall
-/*
-The following ifdef block is the standard way of creating macros which make exporting
-from a DLL simpler. All files within this DLL are compiled with the OPJ_EXPORTS
-symbol defined on the command line. this symbol should not be defined on any project
-that uses this DLL. This way any other project whose source files include this file see
-OPJ_API functions as being imported from a DLL, wheras this DLL sees symbols
-defined with this macro as being exported.
-*/
-#ifdef OPJ_EXPORTS
-#define OPJ_API __declspec(dllexport)
-#else
-#define OPJ_API __declspec(dllimport)
-#endif /* OPJ_EXPORTS */
-#endif /* !OPJ_STATIC || !WIN32 */
#ifndef __cplusplus
#if defined(HAVE_STDBOOL_H)