2023-01-26 12:52:00 +01:00
|
|
|
#pragma once
|
|
|
|
|
2023-12-14 21:29:11 +01:00
|
|
|
#define ENABLED_CONFIG_DEFAULT true
|
|
|
|
#define FORMAT_CONFIG_DEFAULT IMAGE_OUTPUT_FORMAT_JPEG
|
|
|
|
#define QUALITY_CONFIG_DEFAULT 90
|
|
|
|
#define SCREEN_CONFIG_DEFAULT IMAGE_SOURCE_TV_AND_DRC
|
|
|
|
#define BUTTON_COMBO_CONFIG_DEFAULT 0
|
|
|
|
#define RESERVED_BIT_USAGE_CONFIG_DEFAULT true
|
|
|
|
|
|
|
|
#define ENABLED_CONFIG_STRING "enabled"
|
|
|
|
#define BUTTON_COMBO_CONFIG_STRING "buttonCombo"
|
|
|
|
#define FORMAT_CONFIG_STRING "format"
|
|
|
|
#define QUALITY_CONFIG_STRING "quality"
|
|
|
|
#define SCREEN_CONFIG_STRING "screen"
|
|
|
|
#define RESERVED_BIT_USAGE_CONFIG_STRING "reservedBitUsage"
|
2023-01-26 12:52:00 +01:00
|
|
|
|
2023-01-26 13:21:35 +01:00
|
|
|
void InitConfig();
|