SayoriOS  0.3.3
widget_button.h
1 #pragma once
2 
3 #include <common.h>
4 
5 typedef struct Widget_Button {
6  char* label;
7  uint32_t label_color;
8  uint32_t color;
10 
11 Widget_t* new_widget_button(char* label, uint32_t color, uint32_t label_color);
Основные определения ядра
Definition: widget.h:12