Mercurial > urweb
comparison include/types.h @ 1327:1cc67fdac4d3
New argument to transactional free functions, to specify whether we are about to retry
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 04 Dec 2010 11:15:20 -0500 |
parents | b4480a56cab7 |
children | b106ca8200b1 |
comparison
equal
deleted
inserted
replaced
1326:d91f84599693 | 1327:1cc67fdac4d3 |
---|---|
49 #define INTS_MAX 50 | 49 #define INTS_MAX 50 |
50 #define FLOATS_MAX 100 | 50 #define FLOATS_MAX 100 |
51 #define TIMES_MAX 100 | 51 #define TIMES_MAX 100 |
52 | 52 |
53 typedef void (*uw_callback)(void *); | 53 typedef void (*uw_callback)(void *); |
54 typedef void (*uw_callback_with_retry)(void *, int will_retry); | |
54 typedef void (*uw_logger)(void*, const char *fmt, ...); | 55 typedef void (*uw_logger)(void*, const char *fmt, ...); |
55 | 56 |
56 typedef struct { | 57 typedef struct { |
57 int inputs_len, timeout; | 58 int inputs_len, timeout; |
58 char *url_prefix; | 59 char *url_prefix; |