comparison include/types.h @ 311:9ad92047a499

Rename 'lw' prefixes to 'uw'
author Adam Chlipala <adamc@hcoop.net>
date Sun, 07 Sep 2008 15:40:42 -0400
parents 1afa94582275
children 024478c34f4d
comparison
equal deleted inserted replaced
310:0aee86b8a6d6 311:9ad92047a499
1 typedef long long lw_Basis_int; 1 typedef long long uw_Basis_int;
2 typedef double lw_Basis_float; 2 typedef double uw_Basis_float;
3 typedef char* lw_Basis_string; 3 typedef char* uw_Basis_string;
4 4
5 struct __lws_0 { 5 struct __uws_0 {
6 }; 6 };
7 7
8 typedef struct __lws_0 lw_unit; 8 typedef struct __uws_0 uw_unit;
9 typedef lw_unit lw_Basis_unit; 9 typedef uw_unit uw_Basis_unit;
10 10
11 typedef enum lw_Basis_bool { lw_Basis_False, lw_Basis_True } lw_Basis_bool; 11 typedef enum uw_Basis_bool { uw_Basis_False, uw_Basis_True } uw_Basis_bool;
12 12
13 typedef struct lw_context *lw_context; 13 typedef struct uw_context *uw_context;
14 14
15 typedef lw_Basis_string lw_Basis_xhtml; 15 typedef uw_Basis_string uw_Basis_xhtml;
16 typedef lw_Basis_string lw_Basis_page; 16 typedef uw_Basis_string uw_Basis_page;
17 17
18 18
19 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY } failure_kind; 19 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY } failure_kind;
20 20
21 21