util.c 403 B

1234567891011121314151617181920
  1. #include "../util.h"
  2. #include "../../util/debug.h"
  3. #include "gtk.h"
  4. /*
  5. * FIXME: Functions below should be implemented properly.
  6. * For now, just add stubs for NO_NEWT=1 build.
  7. */
  8. #ifdef NO_NEWT_SUPPORT
  9. int ui_helpline__show_help(const char *format __used, va_list ap __used)
  10. {
  11. return 0;
  12. }
  13. void ui_progress__update(u64 curr __used, u64 total __used,
  14. const char *title __used)
  15. {
  16. }
  17. #endif