Below is the file 'modules/mux_win32/mux_win32.h' from this revision. You can also download the file.
/************************************************* * Win32 Mutex Header File * * (C) 2006 Luca Piccarreta * * 2006-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_EXT_MUTEX_WIN32_H__ #define BOTAN_EXT_MUTEX_WIN32_H__ #include <botan/mutex.h> namespace Botan { /************************************************* * Win32 Mutex Factory * *************************************************/ class Win32_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); }; } #endif