tagging release
[dasher.git] / Src / Common / ModuleSettings.h
blob4e6e72f2b6b96ec6858545b59e363c2ea6d0676b
1 #ifndef __ModuleSettings_h__
2 #define __ModuleSettings_h__
4 enum setting_t {
5 T_BOOL,
6 T_LONG,
7 T_LONGSPIN,
8 T_STRING
9 };
11 typedef struct _SModuleSettings SModuleSettings;
13 struct _SModuleSettings {
14 int iParameter;
15 setting_t iType;
16 int iMin;
17 int iMax;
18 int iDivisor;
19 int iStep;
20 const char *szDescription;
23 #endif