diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index 1b352f2..fa1a0f2 100644 --- a/src/common.h +++ b/src/common.h @@ -957,10 +957,8 @@ struct gamma_method { /** * Print help on options for the adjustment method - * - * @param f Output sink */ - void (*print_help)(FILE *f); + void (*print_help)(void); /** * Finalise option-dependent initialisation and connections @@ -1054,10 +1052,8 @@ struct location_provider { /** * Print help on options for the location provider - * - * @param f Output sink */ - void (*print_help)(FILE *f); + void (*print_help)(void); /** * Finalise option-dependent initialisation and connections @@ -1204,10 +1200,9 @@ int direct_create(GAMMA_STATE **state_out, int method, const char *method_name); /** * Print help on options for the adjustment method using direct gamma adjustments * - * @param f Output sink * @param method libgamma constant for the adjustment method */ -void direct_print_help(FILE *f, int method); +void direct_print_help(int method); /** * Configure the adjustment method using direct gamma adjustments |