Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f4a3f573
Commit
f4a3f573
authored
Feb 26, 2024
by
Paul Gofman
Committed by
Alexandre Julliard
Feb 26, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui: Force debug info in critical sections.
parent
03e3bd94
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
compcatcachedaemon.c
dlls/browseui/compcatcachedaemon.c
+1
-1
progressdlg.c
dlls/browseui/progressdlg.c
+1
-1
No files found.
dlls/browseui/compcatcachedaemon.c
View file @
f4a3f573
...
@@ -149,7 +149,7 @@ HRESULT CompCatCacheDaemon_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
...
@@ -149,7 +149,7 @@ HRESULT CompCatCacheDaemon_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
This
->
IRunnableTask_iface
.
lpVtbl
=
&
CompCatCacheDaemonVtbl
;
This
->
IRunnableTask_iface
.
lpVtbl
=
&
CompCatCacheDaemonVtbl
;
This
->
refCount
=
1
;
This
->
refCount
=
1
;
InitializeCriticalSection
(
&
This
->
cs
);
InitializeCriticalSection
Ex
(
&
This
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": CompCatCacheDaemon.cs"
);
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": CompCatCacheDaemon.cs"
);
TRACE
(
"returning %p
\n
"
,
This
);
TRACE
(
"returning %p
\n
"
,
This
);
...
...
dlls/browseui/progressdlg.c
View file @
f4a3f573
...
@@ -626,7 +626,7 @@ HRESULT ProgressDialog_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
...
@@ -626,7 +626,7 @@ HRESULT ProgressDialog_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
This
->
IProgressDialog_iface
.
lpVtbl
=
&
ProgressDialogVtbl
;
This
->
IProgressDialog_iface
.
lpVtbl
=
&
ProgressDialogVtbl
;
This
->
IOleWindow_iface
.
lpVtbl
=
&
OleWindowVtbl
;
This
->
IOleWindow_iface
.
lpVtbl
=
&
OleWindowVtbl
;
This
->
refCount
=
1
;
This
->
refCount
=
1
;
InitializeCriticalSection
(
&
This
->
cs
);
InitializeCriticalSection
Ex
(
&
This
->
cs
,
0
,
RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO
);
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": ProgressDialog.cs"
);
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": ProgressDialog.cs"
);
TRACE
(
"returning %p
\n
"
,
This
);
TRACE
(
"returning %p
\n
"
,
This
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment