updated XCode project file
[openjpeg.git] / libopenjpeg / raw.h
index 0a45ecd91f6fa1ab272709e020b1e9ba9652a287..3c4b372f3f6182fbcc2cea57203144db4d2d848b 100644 (file)
@@ -1,7 +1,8 @@
 /*
- * Copyright (c) 2003-2005, Francois Devaux and Antonin Descampe
- * Copyright (c) 2005, Herv� Drolon, FreeImage Team
- * Copyright (c) 2002-2005, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
+ * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
+ * Copyright (c) 2002-2007, Professor Benoit Macq
+ * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
+ * Copyright (c) 2005, Herve Drolon, FreeImage Team
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -43,20 +44,20 @@ with the corresponding mode switch.
 RAW encoding operations
 */
 typedef struct opj_raw {
-  /** temporary buffer where bits are coded or decoded */
-  unsigned char c;
-  /** number of bits already read or free to write */
-  unsigned int ct;
-  /** maximum length to decode */
-  unsigned int lenmax;
-  /** length decoded */
-  unsigned int len;
-  /** pointer to the current position in the buffer */
-  unsigned char *bp;
-  /** pointer to the start of the buffer */
-  unsigned char *start;
-  /** pointer to the end of the buffer */
-  unsigned char *end;
+       /** temporary buffer where bits are coded or decoded */
+       unsigned char c;
+       /** number of bits already read or free to write */
+       unsigned int ct;
+       /** maximum length to decode */
+       unsigned int lenmax;
+       /** length decoded */
+       unsigned int len;
+       /** pointer to the current position in the buffer */
+       unsigned char *bp;
+       /** pointer to the start of the buffer */
+       unsigned char *start;
+       /** pointer to the end of the buffer */
+       unsigned char *end;
 } opj_raw_t;
 
 /** @name Exported functions */
@@ -66,7 +67,7 @@ typedef struct opj_raw {
 Create a new RAW handle 
 @return Returns a new RAW handle if successful, returns NULL otherwise
 */
-opj_raw_t* raw_create();
+opj_raw_t* raw_create(void);
 /**
 Destroy a previously created RAW handle
 @param raw RAW handle to destroy