diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-29 16:24:39 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-29 16:24:39 +0000 |
| commit | 82d29d4c2a56dabfcb66b64d9d9c498e1d78e77c (patch) | |
| tree | 45ae08c9bde188f3f79be3260cd72ba431c29685 /src/lib/openjpip/target_manager.h | |
| parent | 1a5791750be5f96591d22efc137083cdee0eaeec (diff) | |
[trunk] Remove bool.h, use opj_bool instead
Fix remaining opj_calloc/malloc/free issues
Diffstat (limited to 'src/lib/openjpip/target_manager.h')
| -rw-r--r-- | src/lib/openjpip/target_manager.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/openjpip/target_manager.h b/src/lib/openjpip/target_manager.h index 85259548..0d8fde2f 100644 --- a/src/lib/openjpip/target_manager.h +++ b/src/lib/openjpip/target_manager.h @@ -31,7 +31,6 @@ #ifndef TARGET_MANAGER_H_ # define TARGET_MANAGER_H_ -#include "bool.h" #include "index_manager.h" /** maximum length of target identifier*/ @@ -48,8 +47,8 @@ typedef struct target_param{ int csn; /**< codestream number */ index_param_t *codeidx; /**< index information of codestream */ int num_of_use; /**< numbers of sessions refering to this target */ - bool jppstream; /**< if this target can return JPP-stream */ - bool jptstream; /**< if this target can return JPP-stream */ + opj_bool jppstream; /**< if this target can return JPP-stream */ + opj_bool jptstream; /**< if this target can return JPP-stream */ struct target_param *next; /**< pointer to the next target */ } target_param_t; |
