shithub: m8c

ref: da71b1fbb21ab3a4a7d0629f5c597ee03eff6227
dir: /src/common.h/

View raw version
#ifndef COMMON_H_
#define COMMON_H_
#include "config.h"

enum app_state { QUIT, INITIALIZE, WAIT_FOR_DEVICE, RUN };

struct app_context {
    config_params_s conf;
    enum app_state app_state;
    char *preferred_device;
    unsigned char device_connected;
    unsigned char app_suspended;
  };
  
#endif