Skip to content

Commit

Permalink
fix build error for error C2065: 'GetThreadLocale': undeclared identi…
Browse files Browse the repository at this point in the history
…fier (#247)
  • Loading branch information
fishjam authored Aug 15, 2022
1 parent 24357c6 commit 734ac64
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion samples/traceapi/trcapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#undef WIN32_LEAN_AND_MEAN
#define _WIN32_WINNT 0x400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT
#define _WINSOCK_DEPRECATED_NO_WARNINGS
Expand Down
2 changes: 1 addition & 1 deletion samples/tracebld/trcbld.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
//

#define _WIN32_WINNT 0x0500
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT

Expand Down
2 changes: 1 addition & 1 deletion samples/tracelnk/trclnk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT

Expand Down
2 changes: 1 addition & 1 deletion samples/tracemem/trcmem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT

Expand Down
2 changes: 1 addition & 1 deletion samples/tracereg/trcreg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT

Expand Down
2 changes: 1 addition & 1 deletion samples/traceser/trcser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT

Expand Down
2 changes: 1 addition & 1 deletion samples/tracessl/trcssl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT
#define SECURITY_WIN32
Expand Down
2 changes: 1 addition & 1 deletion samples/tracetcp/trctcp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0501
#define WIN32
#define NT
#define _WINSOCK_DEPRECATED_NO_WARNINGS
Expand Down

0 comments on commit 734ac64

Please sign in to comment.