Mercurial > urweb
comparison include/types.h @ 1365:b02cb9da5686
Changed uw_Basis_time to store microseconds
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Fri, 24 Dec 2010 18:08:29 -0500 |
parents | 87156c44824f |
children | 1a78ca089bd0 |
comparison
equal
deleted
inserted
replaced
1364:0dec38af601c | 1365:b02cb9da5686 |
---|---|
7 | 7 |
8 typedef long long uw_Basis_int; | 8 typedef long long uw_Basis_int; |
9 typedef double uw_Basis_float; | 9 typedef double uw_Basis_float; |
10 typedef char* uw_Basis_string; | 10 typedef char* uw_Basis_string; |
11 typedef char uw_Basis_char; | 11 typedef char uw_Basis_char; |
12 typedef time_t uw_Basis_time; | 12 typedef struct { |
13 time_t seconds; | |
14 unsigned microseconds; | |
15 } uw_Basis_time; | |
13 typedef struct { | 16 typedef struct { |
14 size_t size; | 17 size_t size; |
15 char *data; | 18 char *data; |
16 } uw_Basis_blob; | 19 } uw_Basis_blob; |
17 | 20 |