blob: 4bd0c9e6bc4c47b2be50110c3467818e65cc86ec (
plain) (
tree)
|
|
/* actions.h - ck actions ----------------------------------------------*- C -*-
*
* This file is part of ck, the config keeper
*
* -----------------------------------------------------------------------------
*
* Copyright (C) 2018 Anastasis Grammenos
* GPLv3 (see LICENCE for the full notice)
*
* -----------------------------------------------------------------------------
*
* The various structs actions use to keep track of their
* specific options and the run_ACTION routines.
*
* -------------------------------------------------------------------------- */
#ifndef ACTIONS_H
#define ACTIONS_H
#include "ckutil.h"
#include "actionparser.h"
#include "confparser.h"
#define X(ACTION) \
extern int run_##ACTION(UserOpt *, Conf *);
CK_ACTIONS
#undef X
enum AddOptErrors {
ADD_NO_ERR = 0,
ADD_ERR_WRONG_CONFIG,
ADD_ERR_WRONG_FLAGS
};
typedef enum AddOptErrors AddOptErr;
typedef struct AddOptions AddOpt;
struct AddOptions {
char *progName;
char confPath[STR_L];
int secret;
int prime;
AddOptErr err;
};
enum ListTypes {
LT_PATH,
LT_PROGRAM,
LT_TREE,
LT_CKCONF,
LT_PROG_CONFS
};
typedef enum ListTypes ListType;
enum ListShowTypes {
LST_PLAIN,
LST_LISP,
LST_PYTHON,
};
typedef enum ListShowTypes ListShowType;
typedef struct ListOptions ListOpt;
struct ListOptions {
ListType _lt;
ListShowType _lst;
char *pName;
int attr;
int bName;
int err;
};
#endif /* ACTIONS_H */
|