Namhyung Kim | ba47a14 | 2012-05-29 13:22:58 +0900 | [diff] [blame^] | 1 | #include "../util.h" |
2 | #include "../../util/debug.h" | ||||
3 | #include "gtk.h" | ||||
4 | |||||
5 | |||||
6 | /* | ||||
7 | * FIXME: Functions below should be implemented properly. | ||||
8 | * For now, just add stubs for NO_NEWT=1 build. | ||||
9 | */ | ||||
10 | #ifdef NO_NEWT_SUPPORT | ||||
11 | int ui_helpline__show_help(const char *format __used, va_list ap __used) | ||||
12 | { | ||||
13 | return 0; | ||||
14 | } | ||||
15 | |||||
16 | void ui_progress__update(u64 curr __used, u64 total __used, | ||||
17 | const char *title __used) | ||||
18 | { | ||||
19 | } | ||||
20 | #endif |