blob: 738f3eb7b01b959c3b907d1e77755a6f70d57f70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef WEB_CONTROL_H
#define WEB_CONTROL_H
void clear_scheduled();
void start_match();
void match_mode_selected(int mode);
void end_match();
void user_visit(int points);
void user_num_darts(int n);
void user_undo();
void user_visit_to_rem(int rem);
void update_user_rem_from_pts(int pts);
void handle_next();
#endif
|