blob: 5d691d52062ec97210f7f4e04506e80dae4749e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "common/option.h"
#include "common/FFlist.h"
typedef struct FFKeyboardOptions {
FFModuleArgs moduleArgs;
FFlist ignores; // List of FFstrbuf
} FFKeyboardOptions;
static_assert(sizeof(FFKeyboardOptions) <= FF_OPTION_MAX_SIZE, "FFKeyboardOptions size exceeds maximum allowed size");
|