DiskTool - Now compiles (but does nothing)
[tpg/acess2.git] / Tools / DiskTool / src / time.c
1 /*
2  * Acess2 DiskTool
3  * - By John Hodge (thePowersGang)
4  * 
5  * time.c
6  * - Timing functions (emulated)
7  */
8 #include <acess.h>
9 #include <timers.h>
10
11 // === CODE ===
12 tTimer *Time_AllocateTimer(tTimerCallback *Callback, void *Argument)
13 {
14         return NULL;
15 }
16
17 void Time_ScheduleTimer(tTimer *Timer, int Delta)
18 {
19         
20 }
21
22 void Time_FreeTimer(tTimer *Timer)
23 {
24         
25 }
26
27 Sint64 now(void)
28 {
29         // TODO: Translate UNIX time into Acess time
30         return 0;
31 }
32

UCC git Repository :: git.ucc.asn.au