Files
VoxelTek 67f7f6f5ac Rename Vanilla-Pi to Vanilla (#209)
* Rename vanilla-pi to vanilla-gui

* revert weirdly-changed menu.h

* Change icon to rounded

* Rename vanilla-gui to vanilla, name libvanilla

* Fix broken .desktop file

* Rename `vanilla-gui` to `vanilla`
2025-07-25 00:32:16 -07:00

17 lines
372 B
C

#ifndef VANILLA_PI_MENU_H
#define VANILLA_PI_MENU_H
#include "ui/ui.h"
typedef enum {
VPI_ACTION_START_INDEX = 10000,
VPI_ACTION_SCREENSHOT,
VPI_ACTION_TOGGLE_RECORDING,
VPI_ACTION_DISCONNECT,
} vpi_extra_action_t;
void vpi_menu_init(vui_context_t *vui);
void vpi_menu_action(vui_context_t *vui, vpi_extra_action_t action);
#endif // VANILLA_PI_MENU_H