Tools/nativelib - Working on threading
[tpg/acess2.git] / Tools / nativelib / 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_RemoveTimer(tTimer *Timer)
23 {
24         
25 }
26
27 void Time_FreeTimer(tTimer *Timer)
28 {
29         
30 }
31
32 Sint64 now(void)
33 {
34         // TODO: Translate UNIX time into Acess time
35         return 0;
36 }
37

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