]> Creatis software - gdcm.git/commitdiff
COMP: Need to export those symbols too
authormalaterre <malaterre>
Mon, 24 Oct 2005 16:11:11 +0000 (16:11 +0000)
committermalaterre <malaterre>
Mon, 24 Oct 2005 16:11:11 +0000 (16:11 +0000)
src/gdcmopenjpeg/libopenjpeg/int.h
src/gdcmopenjpeg/libopenjpeg/j2k.h

index a1b590dd98a65ac4819b8348acd621ba9df19703..52add1acf1a97028b34b447938ff9307f57674e1 100644 (file)
@@ -24,6 +24,8 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include "j2k.h"
+
 #ifndef __INT_H
 #define __INT_H
 
@@ -67,14 +69,14 @@ int int_ceildiv(int a, int b);
  *
  * a divided by 2^b
  */
-int int_ceildivpow2(int a, int b);
+LIBJ2K_API int int_ceildivpow2(int a, int b);
 
 /*
  * Divide an integer by a power of 2 and round downwards.
  *
  * a divided by 2^b
  */
-int int_floordivpow2(int a, int b);
+LIBJ2K_API int int_floordivpow2(int a, int b);
 
 /*
  * Get logarithm of an integer and round downwards.
index b62f955a71cbfadea183025742f8228353f22c84..a4645c3c8bd970d87890defa836e0621fb2794e2 100644 (file)
@@ -231,6 +231,6 @@ LIBJ2K_API int j2k_decode(unsigned char *src, int len, j2k_image_t * img,
 int j2k_decode_jpt_stream(unsigned char *src, int len, j2k_image_t * img,
            j2k_cp_t * cp);
 
-void j2k_dec_release();//antonin
+LIBJ2K_API void j2k_dec_release();//antonin
 
 #endif