summaryrefslogtreecommitdiffstats
path: root/src/modules/mouse/option.h
blob: ec2c26ee361afe93c3f91a48cda057ff258007d4 (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 FFMouseOptions {
    FFModuleArgs moduleArgs;

    FFlist ignores; // List of FFstrbuf
} FFMouseOptions;

static_assert(sizeof(FFMouseOptions) <= FF_OPTION_MAX_SIZE, "FFMouseOptions size exceeds maximum allowed size");