00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __TIMEVAL_H 00006 #define __TIMEVAL_H 00007 00008 #include "setup.h" 00009 00010 struct timeval curlx_tvnow(void); 00011 00012 long curlx_tvdiff(struct timeval t1, struct timeval t2); 00013 00014 double curlx_tvdiff_secs(struct timeval t1, struct timeval t2); 00015 00016 long Curl_tvlong(struct timeval t1); 00017 00018 #define Curl_tvnow() curlx_tvnow() 00019 #define Curl_tvdiff(x,y) curlx_tvdiff(x,y) 00020 #define Curl_tvdiff_secs(x,y) curlx_tvdiff_secs(x,y) 00021 00022 #endif
1.5.6