commit | 301df6b5cd6dec63a8b88f2cb53f93f67e144adb | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Thu Aug 16 18:12:56 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Aug 16 18:12:56 2001 +0000 |
tree | 54420d9b386c76f5ba68587ba3f81b09267d967c | |
parent | 06abe790376e2d8d53c12102e3cb9cf8549e1166 [diff] [blame] |
Added names to standard critical sections (suggested by Andreas Mohr).
diff --git a/include/winbase.h b/include/winbase.h index e32946f..f8159f1 100644 --- a/include/winbase.h +++ b/include/winbase.h
@@ -986,7 +986,7 @@ #define FORMAT_MESSAGE_MAX_WIDTH_MASK 0x000000FF #ifdef __WINE__ -#define CRITICAL_SECTION_INIT { 0, -1, 0, 0, 0, 0 } +#define CRITICAL_SECTION_INIT(name) { (void *)(__FILE__ ": " name), -1, 0, 0, 0, 0 } #endif typedef struct {