/* * Win32 Mutex * (C) 2006 Luca Piccarreta * 2006-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_MUTEX_WIN32_H__ #define BOTAN_MUTEX_WIN32_H__ #include namespace Botan { /* * Win32 Mutex Factory */ class BOTAN_DLL Win32_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); }; } #endif