diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-29 12:11:35 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-04-29 12:11:35 +0200 |
commit | dcef13a23c06398c0c9b3145c08b28d1110bc169 (patch) | |
tree | df8d3227b3d71fdd356b3c1e69c62533d1759f72 /app/bin/misc.h | |
parent | 3e11d9c0e6173fce8a482efed8d7f965e8bd6dfa (diff) | |
parent | 16e9630b79f0a7a90c6cedb6781175bb8b337dc1 (diff) |
Merge tag 'upstream/4.3.0'
Upstream version 4.3.0
Diffstat (limited to 'app/bin/misc.h')
-rw-r--r-- | app/bin/misc.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/app/bin/misc.h b/app/bin/misc.h index 7d3231e..1747189 100644 --- a/app/bin/misc.h +++ b/app/bin/misc.h @@ -318,6 +318,7 @@ addButtonCallBack_t OutputBitMapInit( void ); addButtonCallBack_t CustomMgrInit( void ); addButtonCallBack_t PriceListInit( void ); addButtonCallBack_t ParamFilesInit( void ); +addButtonCallBack_t ControlMgrInit ( void ); wIndex_t InitGrid( wMenu_p menu ); @@ -373,6 +374,18 @@ void CarCustMgmLoad(); BOOL_T CompoundCustomSave(FILE*); BOOL_T CarCustomSave(FILE*); +/* dcontmgm.c */ +#define CONTMGM_CAN_EDIT (1) +#define CONTMGM_DO_EDIT (2) +#define CONTMGM_CAN_DELETE (3) +#define CONTMGM_DO_DELETE (4) +#define CONTMGM_GET_TITLE (5) +#define CONTMGM_DO_HILIGHT (6) +#define CONTMGM_UN_HILIGHT (7) + +typedef int (*contMgmCallBack_p) (int, void *); +void ContMgmLoad (wIcon_p,contMgmCallBack_p,void *); + /* doption.c */ long GetDistanceFormat( void ); @@ -382,10 +395,21 @@ void ClearCars( void ); void CarDlgAddProto( void ); void CarDlgAddDesc( void ); void AttachTrains( void ); -#endif + /* cblock.c */ void InitCmdBlock( wMenu_p menu ); - +void BlockMgmLoad( void ); /* cswitchmotor.c */ void InitCmdSwitchMotor( wMenu_p menu ); +void SwitchmotorMgmLoad( void ); +/* csignal.c */ +void InitCmdSignal ( wMenu_p menu ); +void SignalMgmLoad ( void ); +/* ccontrol.c */ +void ControlMgmLoad ( void ); +void InitCmdControl ( wMenu_p menu ); +/* csensor.c */ +void SensorMgmLoad ( void ); +void InitCmdSensor ( wMenu_p menu ); +#endif |