aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32
AgeCommit message (Collapse)AuthorFilesLines
2016-08-05Initial take on build2-based buildBoris Kolpackov2-2/+4
Only C++11 is supported with GCC 4.8 and up and VC 14 and up. This change also introduces the ODB_THREADS_CXX11 threading model. It is the default for the build2 build but can be disabled with a global ODB_THREADS_NONE define (global means that it should be in effect both when building and using the library).
2016-06-15Get rid of C++11 deprecation warnings for auto_ptr, exception specsBoris Kolpackov2-3/+4
In particular, std::auto_ptr is no longer mapped in C++11.
2015-02-06Update copyrightBoris Kolpackov23-23/+23
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov2-0/+9
2013-02-12Factor windows.h inclusion into separate header, disable min/max macrosBoris Kolpackov12-74/+45
2013-02-09Update copyright yearBoris Kolpackov22-22/+22
2012-04-26Replace remaining std::auto_ptr uses with odb::details::unique_ptrBoris Kolpackov2-8/+4
GCC in C++11 mode issues a deprecation warning for std::auto_ptr.
2012-01-29Update copyright yearBoris Kolpackov22-22/+22
2012-01-29Remove author field from file headerBoris Kolpackov22-22/+0
Too much effort to maintain.
2011-03-16Make sure we can free memory even in case of "unsafe" DLL termination1.2.0Boris Kolpackov1-11/+18
2011-01-04Copyright updateBoris Kolpackov22-22/+22
2010-11-22Allow implicit conversion of TLS pointersBoris Kolpackov1-2/+3
2010-09-10Add low-level once API that is static initialization-safeBoris Kolpackov5-21/+39
2010-09-10Fix win32 TLS bugBoris Kolpackov1-1/+1
2010-09-10Fix incorrect preprocessor test for when to include DllMainBoris Kolpackov1-1/+3
2010-09-10Add support for early destruction of TLS objectBoris Kolpackov3-2/+28
2010-09-09Include lean windows.hBoris Kolpackov11-6/+62
2010-09-03Implement Win32 TLS supportBoris Kolpackov13-0/+801
2010-08-26Add support for creating other build systems (meta-building)Boris Kolpackov9-0/+431
Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations.