Subversion Repositories Kolibri OS

Rev

Rev 6524 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6524 Rev 8581
Line 64... Line 64...
64
      "d"(st->text),
64
      "d"(st->text),
65
      "D"(st->bg_color)
65
      "D"(st->bg_color)
66
    :);
66
    :);
67
}
67
}
Line 68... Line 68...
68
 
68
 
69
inline void gui_add_statictext(kolibri_window *wnd, statictext* st)
69
static inline void gui_add_statictext(kolibri_window *wnd, statictext* st)
70
{
70
{
71
    kolibri_window_add_element(wnd, KOLIBRI_STATICTEXT, st);
71
    kolibri_window_add_element(wnd, KOLIBRI_STATICTEXT, st);
Line 102... Line 102...
102
staticnum* kolibri_new_staticnum_def(uint32_t xy, int32_t width, int32_t number)
102
staticnum* kolibri_new_staticnum_def(uint32_t xy, int32_t width, int32_t number)
103
{
103
{
104
    return kolibri_new_staticnum(xy, width, number, cp866, 0, kolibri_color_table.color_work_text, 0);
104
    return kolibri_new_staticnum(xy, width, number, cp866, 0, kolibri_color_table.color_work_text, 0);
105
}
105
}
Line 106... Line 106...
106
 
106
 
107
inline void gui_add_staticnum(kolibri_window *wnd, staticnum* sn)
107
static inline void gui_add_staticnum(kolibri_window *wnd, staticnum* sn)
108
{
108
{
109
    kolibri_window_add_element(wnd, KOLIBRI_STATICNUM, sn);
109
    kolibri_window_add_element(wnd, KOLIBRI_STATICNUM, sn);