File nut/tools/nutconf/nutcomponent.h


Preprocessor definitions

#define _NUTCOMPONENT_H_

#define __BEGIN_DECLS

#define __END_DECLS


Typedef NUTCOMPONENTOPTION

typedef struct _NUTCOMPONENTOPTION NUTCOMPONENTOPTION
See: Type struct _NUTCOMPONENT

Typedef NUTCOMPONENT

typedef struct _NUTCOMPONENT NUTCOMPONENT
See: Type struct _NUTCOMPONENT

Type struct _NUTCOMPONENTOPTION

struct _NUTCOMPONENTOPTION
struct _NUTCOMPONENTOPTION  
   {  
      NUTCOMPONENTOPTION* nco_nxt;  
      NUTCOMPONENTOPTION* nco_prv;  
      NUTCOMPONENT* nco_compo;  
      char* nco_name;  
      int nco_enabled;  
      int nco_active;  
      char* nco_active_if;  
      char* nco_value;  
      char** nco_exclusivity;  
   }  

Type struct _NUTCOMPONENT

struct _NUTCOMPONENT
struct _NUTCOMPONENT  
   {  
      NUTCOMPONENT* nc_nxt;  
      NUTCOMPONENT* nc_prv;  
      NUTCOMPONENT* nc_parent;  
      NUTCOMPONENT* nc_child;  
      NUTCOMPONENTOPTION* nc_opts;  
      char* nc_name;  
      int nc_enabled;  
      char* nc_active_if;  
      char** nc_exclusivity;  
   }  

Typedef NUTREPOSITORY

typedef struct _NUTREPOSITORY NUTREPOSITORY
See: Type struct _NUTREPOSITORY

Type struct _NUTREPOSITORY

struct _NUTREPOSITORY
struct _NUTREPOSITORY  
   {  
      void* nr_ls;  
      char* nr_dir;  
      char* nr_name;  
   }