Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. typedef enum {TRAFFIC_CTL, TRAIN_CTL, TRAFFIC_LOCAL, TRAIN_LOCAL} node_class_t;
  2.  
  3. typedef struct node_info_t {
  4. node_class_t class;
  5. uint8_t id;
  6. } node_info_t;
  7.  
  8.  
  9. typedef struct node_descriptor_t {
  10. uint8_t id;
  11. char req_serv_name[15];
  12. } node_descriptor_t;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement