Calibration_Stand/ui/Src/button_handlers.c

12 lines
309 B
C
Raw Normal View History

2024-11-26 10:17:15 +07:00
#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");
}