summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2012-10-25 08:38:04 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2012-10-25 08:38:04 +0000
commit6300a8a0a2206ff6771b05263fbaa870ef7e109a (patch)
treec95b21bb09a78a769f086aed0d44f199117e6138 /src
parent66c1228c95bffc71de0f8f68ff80b14107151132 (diff)
[trunk] marking as deprecated the old cio interface
Diffstat (limited to 'src')
-rw-r--r--src/lib/openjp2/cio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/openjp2/cio.h b/src/lib/openjp2/cio.h
index f5c4a862..87b750f6 100644
--- a/src/lib/openjp2/cio.h
+++ b/src/lib/openjp2/cio.h
@@ -71,20 +71,20 @@ Write some bytes
@param n Number of bytes to write
@return Returns the number of bytes written or 0 if an error occured
*/
-unsigned int cio_write(opj_cio_t *cio, unsigned long long int v, int n);
+DEPRECATED(unsigned int cio_write(opj_cio_t *cio, unsigned long long int v, int n));
/**
Read some bytes
@param cio CIO handle
@param n Number of bytes to read
@return Returns the value of the n bytes read
*/
-unsigned int cio_read(opj_cio_t *cio, int n);
+DEPRECATED(unsigned int cio_read(opj_cio_t *cio, int n));
/**
Skip some bytes
@param cio CIO handle
@param n Number of bytes to skip
*/
-void cio_skip(opj_cio_t *cio, int n);
+DEPRECATED(void cio_skip(opj_cio_t *cio, int n));
/* ----------------------------------------------------------------------- */
/*@}*/