Untangle headers

Thanks, clang -fmodules.

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2019-08-10 00:56:04 +01:00
parent a01ec1ec94
commit 0ba7761bd5
20 changed files with 129 additions and 88 deletions

View File

@ -19,13 +19,12 @@
#include <libconfig.h>
#endif
#include "backend/backend.h"
#include "compiler.h"
#include "kernel.h"
#include "log.h"
#include "region.h"
#include "win_defs.h"
#include "types.h"
#include "win.h"
typedef struct session session_t;
@ -56,6 +55,14 @@ typedef struct win_option {
double opacity;
} win_option_t;
enum blur_method {
BLUR_METHOD_NONE = 0,
BLUR_METHOD_KERNEL,
BLUR_METHOD_BOX,
BLUR_METHOD_GAUSSIAN,
BLUR_METHOD_INVALID,
};
typedef struct _c2_lptr c2_lptr_t;
/// Structure representing all options.