OSDN Git Service

unicode support
[unagi/old-svn-converted.git] / client / trunk / widget.c
1 #include <stddef.h>
2 #include "type.h"
3 #include "widget.h"
4
5 static void gauge_range_nothing(void *a, int b)
6 {
7 }
8 static void gauge_value_nothing(void *a, void *b, int c)
9 {
10 }
11 static void label_nothing(void *a, const wgChar *str, ...)
12 {
13 }
14 const struct gauge GAUGE_DUMMY = {
15         .bar = NULL, .label = NULL,
16         .range_set = gauge_range_nothing,
17         .value_set = gauge_value_nothing,
18         .value_add = gauge_value_nothing,
19         .label_set = label_nothing
20 };
21
22