noobdoesre / openjpeg

Automatically exported from code.google.com/p/openjpeg
Other
0 stars 0 forks source link

Compiler Borland C++ v. 5.5 #154

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
To allow compilation under Borland C++ compiler please change:

1. in file cio.h

#if defined(__BORLANDC__)
unsigned int cio_write(opj_cio_t *cio, unsigned __int64 v, int n);
#else
unsigned int cio_write(opj_cio_t *cio, unsigned long long int v, int n);
#endif

2. in file cio.c

#if defined(__BORLANDC__)
unsigned int cio_write(opj_cio_t *cio, unsigned __int64 v, int n)
#else
unsigned int cio_write(opj_cio_t *cio, unsigned long long int v, int n)
#endif 

Original issue reported on code.google.com by rob...@prog.olsztyn.pl on 28 Jun 2012 at 6:38

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r1733.

Original comment by mathieu.malaterre on 11 Jul 2012 at 3:07