File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
source/Plugins/Process/Windows/Common Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 29
29
using namespace lldb ;
30
30
using namespace lldb_private ;
31
31
32
- using GetThreadDescriptionFunctionPtr = HRESULT
33
- WINAPI ( *)(HANDLE hThread, PWSTR *ppszThreadDescription);
32
+ using GetThreadDescriptionFunctionPtr =
33
+ HRESULT (WINAPI *)(HANDLE hThread, PWSTR *ppszThreadDescription);
34
34
35
35
TargetThreadWindows::TargetThreadWindows (ProcessWindows &process,
36
36
const HostThread &thread)
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ using namespace lldb;
34
34
namespace {
35
35
36
36
#ifdef _WIN32
37
- using SetThreadDescriptionFunctionPtr = HRESULT
38
- WINAPI ( *)(HANDLE hThread, PCWSTR lpThreadDescription);
37
+ using SetThreadDescriptionFunctionPtr =
38
+ HRESULT (WINAPI *)(HANDLE hThread, PCWSTR lpThreadDescription);
39
39
40
40
static SetThreadDescriptionFunctionPtr SetThreadName;
41
41
#endif
You can’t perform that action at this time.
0 commit comments