Mercurial > libpst
comparison src/define.h @ 242:67b24d6a45d6 stable-0-6-45
patch from Hugo DesRosiers to export categories and notes into vcards.
extend that patch to export categories into vcalendar appointments also.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 11 Dec 2009 08:45:30 -0800 |
parents | e7f363452178 |
children | cc8ee701f190 |
comparison
equal
deleted
inserted
replaced
241:fa4042b0a566 | 242:67b24d6a45d6 |
---|---|
163 #define DEBUG_INFO(x) MESSAGEPRINT x | 163 #define DEBUG_INFO(x) MESSAGEPRINT x |
164 #define DEBUG_HEXDUMP(x, s) pst_debug_hexdump(__LINE__, __FILE__, (char*)x, s, 0x10, 0) | 164 #define DEBUG_HEXDUMP(x, s) pst_debug_hexdump(__LINE__, __FILE__, (char*)x, s, 0x10, 0) |
165 #define DEBUG_HEXDUMPC(x, s, c) pst_debug_hexdump(__LINE__, __FILE__, (char*)x, s, c, 0) | 165 #define DEBUG_HEXDUMPC(x, s, c) pst_debug_hexdump(__LINE__, __FILE__, (char*)x, s, c, 0) |
166 | 166 |
167 | 167 |
168 # define DEBUG_ENT(x) \ | 168 #define DEBUG_ENT(x) \ |
169 { \ | 169 { \ |
170 pst_debug_func(x); \ | 170 pst_debug_func(x); \ |
171 pst_debug(__LINE__, __FILE__, "Entering function\n"); \ | 171 pst_debug(__LINE__, __FILE__, "Entering function\n"); \ |
172 } | 172 } |
173 # define DEBUG_RET() \ | 173 #define DEBUG_RET() \ |
174 { \ | 174 { \ |
175 pst_debug(__LINE__, __FILE__, "Leaving function\n"); \ | 175 pst_debug(__LINE__, __FILE__, "Leaving function\n"); \ |
176 pst_debug_func_ret(); \ | 176 pst_debug_func_ret(); \ |
177 } | 177 } |
178 | 178 |