/platform/win/platform/vars/mutex.d
http://github.com/wilkie/djehuty · D · 19 lines · 6 code · 4 blank · 9 comment · 0 complexity · 067bef5904eb709d5cf1e41d6cb02f3e MD5 · raw file
- /*
- * mutex.d
- *
- * This module has the structure that is kept with a Mutex class for Windows.
- *
- * Author: Dave Wilkinson
- * Originated: July 22th, 2009
- *
- */
- module platform.vars.mutex;
- import platform.win.common;
- struct MutexPlatformVars {
- CRITICAL_SECTION* _mutex;
- HANDLE _semaphore;
- }