16 lines
281 B
C
16 lines
281 B
C
#pragma once
|
|
#include "../kerep/Autoarr/Autoarr.h"
|
|
|
|
typedef enum CommandId{
|
|
|
|
} __attribute__((__packed__)) CommandId;
|
|
|
|
struct CommandStruct;
|
|
typedef CommandStruct Command;
|
|
struct CommandStruct{
|
|
Command* next;
|
|
Command* prev;
|
|
CommandId id;
|
|
}
|
|
|
|
Autoarr_declare(Comand); |