Guest User

Untitled

a guest
Dec 6th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. bool working = false;
  2. void do_process()
  3. {
  4. while(working)
  5. {
  6. // do some stuff
  7. }
  8. }
  9.  
  10. void btnStart()
  11. {
  12. working = true;
  13. do_process();
  14. }
  15.  
  16. void btnEnd()
  17. {
  18. working = false;
  19. }
Add Comment
Please, Sign In to add comment