Botan  1.10.9
mux_win32.h
Go to the documentation of this file.
1 /*
2 * Win32 Mutex
3 * (C) 2006 Luca Piccarreta
4 * 2006-2007 Jack Lloyd
5 *
6 * Distributed under the terms of the Botan license
7 */
8 
9 #ifndef BOTAN_MUTEX_WIN32_H__
10 #define BOTAN_MUTEX_WIN32_H__
11 
12 #include <botan/internal/mutex.h>
13 
14 namespace Botan {
15 
16 /**
17 * Win32 Mutex Factory
18 */
20  {
21  public:
22  Mutex* make();
23  };
24 }
25 
26 #endif