Skip to content

Commit 734ac64

Browse files
authored
fix build error for error C2065: 'GetThreadLocale': undeclared identifier (microsoft#247)
1 parent 24357c6 commit 734ac64

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

samples/traceapi/trcapi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
99
#undef WIN32_LEAN_AND_MEAN
10-
#define _WIN32_WINNT 0x400
10+
#define _WIN32_WINNT 0x0501
1111
#define WIN32
1212
#define NT
1313
#define _WINSOCK_DEPRECATED_NO_WARNINGS

samples/tracebld/trcbld.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
99

10-
#define _WIN32_WINNT 0x0500
10+
#define _WIN32_WINNT 0x0501
1111
#define WIN32
1212
#define NT
1313

samples/tracelnk/trclnk.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9-
#define _WIN32_WINNT 0x0400
9+
#define _WIN32_WINNT 0x0501
1010
#define WIN32
1111
#define NT
1212

samples/tracemem/trcmem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9-
#define _WIN32_WINNT 0x0400
9+
#define _WIN32_WINNT 0x0501
1010
#define WIN32
1111
#define NT
1212

samples/tracereg/trcreg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9-
#define _WIN32_WINNT 0x0400
9+
#define _WIN32_WINNT 0x0501
1010
#define WIN32
1111
#define NT
1212

samples/traceser/trcser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9-
#define _WIN32_WINNT 0x0400
9+
#define _WIN32_WINNT 0x0501
1010
#define WIN32
1111
#define NT
1212

samples/tracessl/trcssl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9-
#define _WIN32_WINNT 0x0400
9+
#define _WIN32_WINNT 0x0501
1010
#define WIN32
1111
#define NT
1212
#define SECURITY_WIN32

samples/tracetcp/trctcp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// Copyright (c) Microsoft Corporation. All rights reserved.
88
//
9-
#define _WIN32_WINNT 0x0400
9+
#define _WIN32_WINNT 0x0501
1010
#define WIN32
1111
#define NT
1212
#define _WINSOCK_DEPRECATED_NO_WARNINGS

0 commit comments

Comments
 (0)