dfdffdfdfdfd commited on
Commit
f63858d
·
verified ·
1 Parent(s): 04cacbd

Create time.inc

Browse files
Files changed (1) hide show
  1. time.inc +14 -0
time.inc ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Date/time functions
2
+ *
3
+ * (c) Copyright 2001-2005, ITB CompuPhase
4
+ * This file is provided as is (no warranties).
5
+ */
6
+ #if defined _time_included
7
+ #endinput
8
+ #endif
9
+ #define _time_included
10
+ #pragma library Time
11
+
12
+ native gettime(&hour=0, &minute=0, &second=0);
13
+ native getdate(&year=0, &month=0, &day=0);
14
+ native tickcount(&granularity=0);