Files
guestfs-inspect/libguestfs-inspect.h
Robby Zambito 6ca7727ee8 Add initial header file
This will be used in the client and the daemon
2024-03-02 23:29:39 -05:00

12 lines
206 B
C

enum guestfs_inspect_command {
GUESTFS_COMMAND_LS,
GUESTFS_COMMAND_TOUCH,
GUESTFS_COMMAND_MKDIR,
GUESTFS_COMMAND_CAT
};
struct guestfs_inpsect_command {
enum guestfs_inspect_command command;
};