diff options
Diffstat (limited to 'src/modules/physicalmemory/option.h')
| -rw-r--r-- | src/modules/physicalmemory/option.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/modules/physicalmemory/option.h b/src/modules/physicalmemory/option.h new file mode 100644 index 0000000..faaff95 --- /dev/null +++ b/src/modules/physicalmemory/option.h @@ -0,0 +1,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"); |