comparison include/types.h @ 1294:b4480a56cab7

Server-side 'onError'
author Adam Chlipala <adam@chlipala.net>
date Tue, 07 Sep 2010 08:28:07 -0400
parents 150465f2895c
children 1cc67fdac4d3
comparison
equal deleted inserted replaced
1293:acabf3935060 1294:b4480a56cab7
71 71
72 int (*input_num)(const char*); 72 int (*input_num)(const char*);
73 uw_Basis_string (*cookie_sig)(uw_context); 73 uw_Basis_string (*cookie_sig)(uw_context);
74 int (*check_url)(const char *); 74 int (*check_url)(const char *);
75 int (*check_mime)(const char *); 75 int (*check_mime)(const char *);
76
77 void (*on_error)(uw_context, char *);
76 } uw_app; 78 } uw_app;
77 79
80 #define ERROR_BUF_LEN 1024
81
78 #endif 82 #endif