diff options
| author | allusive-dev <[email protected]> | 2023-09-19 17:46:20 +1000 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-09-19 17:46:20 +1000 |
| commit | 5650d887357bf2a3fac8c5fd4f467bf8795b5fc4 (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/options.h | |
| parent | Update picom.sample.conf (diff) | |
| download | compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.tar.xz compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.zip | |
reset
Diffstat (limited to 'src/options.h')
| -rw-r--r-- | src/options.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/options.h b/src/options.h deleted file mode 100644 index 08aa15e..0000000 --- a/src/options.h +++ /dev/null @@ -1,37 +0,0 @@ -// SPDX-License-Identifier: MPL-2.0 -// Copyright (c) Yuxuan Shui <[email protected]> -#pragma once - -/// Parse command line options - -#include <stdbool.h> -#include <xcb/render.h> // for xcb_render_fixed_t - -#include "compiler.h" -#include "config.h" -#include "types.h" -#include "win.h" // for wintype_t - -typedef struct session session_t; - -/// Get config options that are needed to parse the rest of the options -/// Return true if we should quit -bool get_early_config(int argc, char *const *argv, char **config_file, bool *all_xerrors, - bool *fork, int *exit_code); - -/** - * Process arguments and configuration files. - * - * Parameters: - * shadow_enable = Carry overs from parse_config - * fading_enable - * conv_kern_hasneg - * winopt_mask - * Returns: - * Whether configuration are processed successfully. - */ -bool must_use get_cfg(options_t *opt, int argc, char *const *argv, bool shadow_enable, - bool fading_enable, bool conv_kern_hasneg, - win_option_mask_t *winopt_mask); - -// vim: set noet sw=8 ts=8: |