comparison include/types.h @ 740:b302b6e35f93

Add MIME type to file
author Adam Chlipala <adamc@hcoop.net>
date Sat, 25 Apr 2009 14:47:16 -0400
parents 4bb7e1c0550a
children f7e2026dd5ae
comparison
equal deleted inserted replaced
739:4bb7e1c0550a 740:b302b6e35f93
27 typedef struct { 27 typedef struct {
28 unsigned cli, chn; 28 unsigned cli, chn;
29 } uw_Basis_channel; 29 } uw_Basis_channel;
30 30
31 typedef struct uw_Basis_file { 31 typedef struct uw_Basis_file {
32 uw_Basis_string name; 32 uw_Basis_string name, type;
33 uw_Basis_blob data; 33 uw_Basis_blob data;
34 } uw_Basis_file; 34 } uw_Basis_file;
35 35
36 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY } failure_kind; 36 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY } failure_kind;
37 37