blob: faaff95681d0749ff8fb14954bf957084c26e73e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "common/option.h"
typedef struct FFPhysicalMemoryOptions {
FFModuleArgs moduleArgs;
bool showEmptySlots;
} FFPhysicalMemoryOptions;
static_assert(sizeof(FFPhysicalMemoryOptions) <= FF_OPTION_MAX_SIZE, "FFPhysicalMemoryOptions size exceeds maximum allowed size");
|