]>
Commit | Line | Data |
---|---|---|
3c4e084d JP |
1 | /* output.h |
2 | * Prototypes for timer handling routines | |
3 | * NetWatch system management mode administration console | |
4 | * | |
5 | * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. | |
6 | * This program is free software; you can redistribute and/or modify it under | |
7 | * the terms found in the file LICENSE in the root of this source tree. | |
8 | * | |
9 | */ | |
10 | ||
04ddaf73 JP |
11 | #ifndef TIMER_H |
12 | #define TIMER_H | |
13 | ||
14 | void oneshot_start_ms(unsigned long milliseconds); | |
15 | int oneshot_running(void); | |
16 | ||
42125f27 | 17 | #endif /* TIMER_H */ |