diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-06 09:55:27 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-06 09:55:27 +0100 |
commit | 4ff6090dfb9c947e894a7c1d0474b8d8d8f9031a (patch) | |
tree | 6c137a20f95f0be71d11940c6acb77e11aee6377 /src/common.h | |
parent | Fix warning (diff) | |
download | redshift-ng-4ff6090dfb9c947e894a7c1d0474b8d8d8f9031a.tar.gz redshift-ng-4ff6090dfb9c947e894a7c1d0474b8d8d8f9031a.tar.bz2 redshift-ng-4ff6090dfb9c947e894a7c1d0474b8d8d8f9031a.tar.xz |
Style
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index 83b15e8..170f97a 100644 --- a/src/common.h +++ b/src/common.h @@ -20,6 +20,9 @@ #ifndef REDSHIFT_COMMON_H #define REDSHIFT_COMMON_H +#include <libsimple.h> +#include <libsimple-arg.h> + #ifndef WINDOWS # if defined(__WIN32__) || defined(_WIN32) # define WINDOWS @@ -45,6 +48,7 @@ #endif #ifdef WINDOWS # include <windows.h> +# define localtime_r(T, TM) localtime_s((TM), (T)) #else # include <pwd.h> # include <signal.h> @@ -216,6 +220,17 @@ struct location_provider { X(double, double, 1, 1, -2) #define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\ + /** + * Fill the gamma ramps + * + * @param gamma_r The gamma ramp for the red channel + * @param gamma_g The gamma ramp for the green channel + * @param gamma_b The gamma ramp for the blue channel + * @param size_r The number of stops in `gamma_r` + * @param size_g The number of stops in `gamma_g` + * @param size_b The number of stops in `gamma_b` + * @param settings The colour settings to apply (temperature, brightness, gamma) + */\ void colorramp_fill_##SUFFIX(TYPE *gamma_r, TYPE *gamma_g, TYPE *gamma_b,\ size_t size_r, size_t size_g, size_t size_b,\ const struct color_setting *setting) @@ -232,14 +247,12 @@ struct config_ini_section *config_ini_get_section(struct config_ini_state *state void options_init(struct options *options); -void options_parse_args( - struct options *options, int argc, char *argv[], - const struct gamma_method *gamma_methods, - const struct location_provider *location_providers); -void options_parse_config_file( - struct options *options, struct config_ini_state *config_state, - const struct gamma_method *gamma_methods, - const struct location_provider *location_providers); +void options_parse_args(struct options *options, int argc, char *argv[], + const struct gamma_method *gamma_methods, + const struct location_provider *location_providers); +void options_parse_config_file(struct options *options, struct config_ini_state *config_state, + const struct gamma_method *gamma_methods, + const struct location_provider *location_providers); void options_set_defaults(struct options *options); |