Avoided ABI breakage
[openjpeg.git] / indexer_JPIP / cio.h
index 2e351c087bcb40e67d27d3d402e15c8da9266227..3e29789760ca4a98baa8c98fcb3b098df79894a5 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright (c) 2001-2002, David Janssens
- * Copyright (c) 2003, Yannick Verschueren
- * Copyright (c) 2003 Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
+ * Copyright (c) 2003-2004, Yannick Verschueren
+ * Copyright (c) 2003-2004, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -35,9 +35,10 @@ int cio_numbytes();
 int cio_numbytesleft();
 unsigned char *cio_getbp();
 void cio_init(unsigned char *bp, int len);
-//void cio_write(unsigned int v, int n);
+/* void cio_write(unsigned int v, int n); */
 void cio_write(long long v, int n);
-unsigned int cio_read(int n);
+/* unsigned int cio_read(int n); */
+long long cio_read(int n);
 void cio_skip(int n);
 
 #endif