aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mutex/win32_crit_section/mux_win32.h
blob: 20b245967b8ec5e3bac450e301ceb15774365b46 (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
/*************************************************
* Win32 Mutex Header File                        *
* (C) 2006 Luca Piccarreta                       *
*     2006-2007 Jack Lloyd                       *
*************************************************/

#ifndef BOTAN_MUTEX_WIN32_H__
#define BOTAN_MUTEX_WIN32_H__

#include <botan/mutex.h>

namespace Botan {

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

#endif