2021-09-24 19:57:15 +02:00
|
|
|
#include <wups.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct ConfigItemIntegerRange {
|
2022-09-24 17:41:20 +02:00
|
|
|
char *configId;
|
2021-09-24 19:57:15 +02:00
|
|
|
WUPSConfigItemHandle handle;
|
|
|
|
int defaultValue;
|
|
|
|
int value;
|
|
|
|
int minValue;
|
|
|
|
int maxValue;
|
|
|
|
void *callback;
|
|
|
|
} ConfigItemIntegerRange;
|
|
|
|
|
|
|
|
typedef void (*IntegerRangeValueChangedCallback)(ConfigItemIntegerRange *, int32_t);
|
|
|
|
|
2022-09-24 17:41:20 +02:00
|
|
|
bool WUPSConfigItemIntegerRange_AddToCategory(WUPSConfigCategoryHandle cat, const char *configId, const char *displayName,
|
2022-02-03 16:24:36 +01:00
|
|
|
int32_t defaultValue, int32_t minValue, int32_t maxValue,
|
|
|
|
IntegerRangeValueChangedCallback callback);
|
2021-09-24 19:57:15 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|