repo.or.cz
/
dasher.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated German translation
[dasher.git]
/
Src
/
Common
/
ModuleSettings.h
blob
4e6e72f2b6b96ec6858545b59e363c2ea6d0676b
1
#ifndef __ModuleSettings_h__
2
#define __ModuleSettings_h__
3
4
enum
setting_t
{
5
T_BOOL
,
6
T_LONG
,
7
T_LONGSPIN
,
8
T_STRING
9
};
10
11
typedef
struct
_SModuleSettings SModuleSettings
;
12
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
;
21
};
22
23
#endif