aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h29
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);