diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2010-05-24 21:26:06 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2010-05-24 21:26:06 +0200 |
commit | 1d88c2b10ca295ddd8636cc0338bb07d76bfae04 (patch) | |
tree | c0d676c0fa818cba8c5b883ae4094707cb7c651d /src/redshift.h | |
parent | Move gamma method spec structs to redshift.h (diff) | |
download | redshift-ng-1d88c2b10ca295ddd8636cc0338bb07d76bfae04.tar.gz redshift-ng-1d88c2b10ca295ddd8636cc0338bb07d76bfae04.tar.bz2 redshift-ng-1d88c2b10ca295ddd8636cc0338bb07d76bfae04.tar.xz |
Pass arguments as string to adjustment methods.
Diffstat (limited to 'src/redshift.h')
-rw-r--r-- | src/redshift.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redshift.h b/src/redshift.h index 84e7818..3cfe738 100644 --- a/src/redshift.h +++ b/src/redshift.h @@ -21,7 +21,7 @@ #define _REDSHIFT_REDSHIFT_H -typedef int gamma_method_init_func(void *state, int screen_num, int crtc_num); +typedef int gamma_method_init_func(void *state, char *args); typedef void gamma_method_free_func(void *state); typedef void gamma_method_restore_func(void *state); typedef int gamma_method_set_temperature_func(void *state, int temp, |