double ply_progress_get_time (ply_progress_t* progress);
void ply_progress_save_cache (ply_progress_t* progress);
void ply_progress_status_update (ply_progress_t* progress, const char *status);
+void ply_progress_pause (ply_progress_t *progress);
+void ply_progress_unpause (ply_progress_t *progress);
#endif /* PLY_PROGRESS_H */
/* vim: set ts=4 sw=4 expandtab autoindent cindent cino={.5s,(0: */
#include "ply-event-loop.h"
#include "ply-window.h"
#include "ply-buffer.h"
+#include "ply-progress.h"
#include "ply-boot-splash-plugin.h"
typedef struct _ply_boot_splash ply_boot_splash_t;
void ply_boot_splash_hide (ply_boot_splash_t *splash);
void ply_boot_splash_attach_to_event_loop (ply_boot_splash_t *splash,
ply_event_loop_t *loop);
+void ply_boot_splash_attach_progress (ply_boot_splash_t *splash,
+ ply_progress_t *progress);
void ply_boot_splash_become_idle (ply_boot_splash_t *splash,
ply_boot_splash_on_idle_handler_t idle_handler,
void *user_data);