From 460cae786af2c4c8ff205f7feb45b50c43a6700b Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sat, 18 Dec 2004 01:57:39 +0000 Subject: Default platform handlers (currently only POSIX). --- ChangeLog | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 4001d9e8..ff8b00e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,30 @@ VERSION 0.6.0-cvs ================= +2004-12-17 Vincent Richard + + * Made default platform handlers (currently, only "posix"). Source files + are in src/platforms/[platform-name]. + + To use a default platform handler, do the following: + - #include + - call vmime::platformDependant::setHandler() with the appropriate class + - link your program with both 'libvmime' and 'libvmime-[platform-name]' + + For example, to use the default platform handler for POSIX (GNU/Linux): + + #include + + int main() + { + vmime::platformDependant::setHandler + (); + + // ... + } + + and link your program with "-lvmime" and "-lvmime-posix". + 2004-10-21 Vincent Richard * A _LOT_ of cleaning/refactoring in VMime code: -- cgit