master
h 8 lines 211 Bytes
Raw
1 #ifndef QEMU_PROGRESS_H
2 #define QEMU_PROGRESS_H
3
4 void qemu_progress_init(int enabled, float min_skip);
5 void qemu_progress_end(void);
6 void qemu_progress_print(float delta, int max);
7
8 #endif /* QEMU_PROGRESS_H */