summaryrefslogtreecommitdiffstats
path: root/old/botan/build/botan/mux_win32.h
blob: a91850e7161bbf93dbcb72bdbc84a0d729ff7d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* 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 <botan/mutex.h>

namespace Botan {

/*
* Win32 Mutex Factory
*/
class BOTAN_DLL Win32_Mutex_Factory : public Mutex_Factory
   {
   public:
      Mutex* make();
   };
}

#endif