| OLD | NEW |
| 1 /* | 1 /* |
| 2 * The copyright in this software is being made available under the 2-clauses | 2 * The copyright in this software is being made available under the 2-clauses |
| 3 * BSD License, included below. This software may be subject to other third | 3 * BSD License, included below. This software may be subject to other third |
| 4 * party and contributor rights, including patent rights, and no such rights | 4 * party and contributor rights, including patent rights, and no such rights |
| 5 * are granted under this license. | 5 * are granted under this license. |
| 6 * | 6 * |
| 7 * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s
.fr> | 7 * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s
.fr> |
| 8 * All rights reserved. | 8 * All rights reserved. |
| 9 * | 9 * |
| 10 * Redistribution and use in source and binary forms, with or without | 10 * Redistribution and use in source and binary forms, with or without |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 void opj_procedure_list_destroy(opj_procedure_list_t * p_list); | 88 void opj_procedure_list_destroy(opj_procedure_list_t * p_list); |
| 89 | 89 |
| 90 /** | 90 /** |
| 91 * Adds a new validation procedure. | 91 * Adds a new validation procedure. |
| 92 * | 92 * |
| 93 * @param p_validation_list the list of procedure to modify. | 93 * @param p_validation_list the list of procedure to modify. |
| 94 * @param p_procedure the procedure to add. | 94 * @param p_procedure the procedure to add. |
| 95 * | 95 * |
| 96 * @return OPJ_TRUE if the procedure could be added. | 96 * @return OPJ_TRUE if the procedure could be added. |
| 97 */ | 97 */ |
| 98 OPJ_BOOL opj_procedure_list_add_procedure (opj_procedure_list_t * p_validation_l
ist, opj_procedure p_procedure); | 98 OPJ_BOOL opj_procedure_list_add_procedure (opj_procedure_list_t * p_validation_l
ist, opj_procedure p_procedure, opj_event_mgr_t* p_manager); |
| 99 | 99 |
| 100 /** | 100 /** |
| 101 * Gets the number of validation procedures. | 101 * Gets the number of validation procedures. |
| 102 * | 102 * |
| 103 * @param p_validation_list the list of procedure to modify. | 103 * @param p_validation_list the list of procedure to modify. |
| 104 * | 104 * |
| 105 * @return the number of validation procedures. | 105 * @return the number of validation procedures. |
| 106 */ | 106 */ |
| 107 OPJ_UINT32 opj_procedure_list_get_nb_procedures (opj_procedure_list_t * p_valida
tion_list); | 107 OPJ_UINT32 opj_procedure_list_get_nb_procedures (opj_procedure_list_t * p_valida
tion_list); |
| 108 | 108 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 122 * Clears the list of validation procedures. | 122 * Clears the list of validation procedures. |
| 123 * | 123 * |
| 124 * @param p_validation_list the list of procedure to clear. | 124 * @param p_validation_list the list of procedure to clear. |
| 125 * | 125 * |
| 126 */ | 126 */ |
| 127 void opj_procedure_list_clear (opj_procedure_list_t * p_validation_list); | 127 void opj_procedure_list_clear (opj_procedure_list_t * p_validation_list); |
| 128 /*@}*/ | 128 /*@}*/ |
| 129 | 129 |
| 130 #endif /* __FUNCTION_LIST_H */ | 130 #endif /* __FUNCTION_LIST_H */ |
| 131 | 131 |
| OLD | NEW |