aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mux_win32/mux_win32.h
blob: 37eadae0d73a5305faff2431370c089f5ec94ba5 (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_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