Calibration_Stand/ui/Src/button_handlers.c

12 lines
309 B
C

#include "../Inc/button_handlers.h"
// Функция для изменения цвета кнопки и отключения её
void ButtonMain_Handler(GtkButton *button) {
set_button_color_white(button);
}
void ButtonReprint_Handler(GtkButton *button){
g_print("Button Reprint Pressed\n");
}