comparison src/msg.cpp @ 311:0c42a22f88fc

add sent_date to .msg output format
author Carl Byington <carl@five-ten-sg.com>
date Thu, 06 May 2010 13:24:52 -0700
parents a6df6ffc3ff5
children 0f19cd173eab
comparison
equal deleted inserted replaced
310:a6df6ffc3ff5 311:0c42a22f88fc
115 p.reserved = 0; 115 p.reserved = 0;
116 prop.push_back(p); 116 prop.push_back(p);
117 } 117 }
118 118
119 119
120 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char* charset, FILETIME *contents); 120 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, FILETIME *contents);
121 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, const char* charset, FILETIME *contents) { 121 static void string_property(GsfOutfile *out, property_list &prop, uint32_t tag, FILETIME *contents) {
122 if (contents) { 122 if (contents) {
123 string_property(out, prop, tag, (char *)contents, sizeof(FILETIME)); 123 string_property(out, prop, tag, (char *)contents, sizeof(FILETIME));
124 } 124 }
125 } 125 }
126 126