bg.h 220 B

123456789101112131415161718
  1. /*
  2. * bg.h
  3. *
  4. */
  5. #ifndef _EGG_BG_H
  6. #define _EGG_BG_H
  7. typedef enum {
  8. BG_QUIT = 1,
  9. BG_ABORT
  10. } bg_quit_t;
  11. void bg_prepare_split(void);
  12. void bg_send_quit(bg_quit_t q);
  13. void bg_do_split(void);
  14. #endif /* _EGG_BG_H */