mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2026-03-22 09:40:55 +03:00
Add short list to HSFV_manage
This commit is contained in:
@@ -29,17 +29,21 @@
|
||||
* here are some typedef's for global data
|
||||
*/
|
||||
typedef struct{
|
||||
char *wheelID; // ID of wheel to work with
|
||||
char *wheelName; // and/or its name
|
||||
char *serial; // turret's serial (string description)
|
||||
int filterPos; // position of filter
|
||||
char *filterName; // and/or its name
|
||||
char *filterId; // or full ID like "A2"
|
||||
char *wheelID; // ID of wheel to work with
|
||||
char *wheelName; // and/or its name
|
||||
char *serial; // turret's serial (string description)
|
||||
int filterPos; // position of filter
|
||||
char *filterName; // and/or its name
|
||||
char *filterId; // or full ID like "A2"
|
||||
} glob_pars;
|
||||
|
||||
// ids for "list all" & "list present"
|
||||
#define LIST_ALL (1)
|
||||
#define LIST_PRES (2)
|
||||
// ids for "list all", "list present", "list short"
|
||||
typedef enum{
|
||||
LIST_NONE = 0,
|
||||
LIST_ALL,
|
||||
LIST_PRES,
|
||||
LIST_SHORT
|
||||
} listopts;
|
||||
|
||||
// default & global parameters
|
||||
extern glob_pars const Gdefault;
|
||||
|
||||
Reference in New Issue
Block a user