diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-11 20:04:29 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-13 17:53:58 -0700 |
commit | 6531b8c73d1eb069e39804167c42948f5f6cd412 (patch) | |
tree | cc23f5d236d03473647233a9971765d3888f8f2d /src/gamma-dummy.h | |
parent | Merge pull request #536 from jonls/gtk-help-args (diff) | |
download | redshift-ng-6531b8c73d1eb069e39804167c42948f5f6cd412.tar.gz redshift-ng-6531b8c73d1eb069e39804167c42948f5f6cd412.tar.bz2 redshift-ng-6531b8c73d1eb069e39804167c42948f5f6cd412.tar.xz |
Move module struct definitions to separate files
Diffstat (limited to 'src/gamma-dummy.h')
-rw-r--r-- | src/gamma-dummy.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/gamma-dummy.h b/src/gamma-dummy.h index 3e58ec1..df4dfe9 100644 --- a/src/gamma-dummy.h +++ b/src/gamma-dummy.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2013-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2013-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_DUMMY_H @@ -23,16 +23,7 @@ #include "redshift.h" -int gamma_dummy_init(void *state); -int gamma_dummy_start(void *state); -void gamma_dummy_free(void *state); - -void gamma_dummy_print_help(FILE *f); -int gamma_dummy_set_option(void *state, const char *key, const char *value); - -void gamma_dummy_restore(void *state); -int gamma_dummy_set_temperature(void *state, - const color_setting_t *setting); +extern const gamma_method_t dummy_gamma_method; #endif /* ! REDSHIFT_GAMMA_DUMMY_H */ |