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
82f3b86c
Commit
82f3b86c
authored
May 18, 2012
by
Christian Costa
Committed by
Alexandre Julliard
May 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Display new ref in trace for AddRef and Release for collection object.
parent
7b0cda21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
collection.c
dlls/dmusic/collection.c
+12
-13
No files found.
dlls/dmusic/collection.c
View file @
82f3b86c
...
@@ -77,30 +77,29 @@ static HRESULT WINAPI IDirectMusicCollectionImpl_IDirectMusicCollection_QueryInt
...
@@ -77,30 +77,29 @@ static HRESULT WINAPI IDirectMusicCollectionImpl_IDirectMusicCollection_QueryInt
static
ULONG
WINAPI
IDirectMusicCollectionImpl_IDirectMusicCollection_AddRef
(
LPDIRECTMUSICCOLLECTION
iface
)
static
ULONG
WINAPI
IDirectMusicCollectionImpl_IDirectMusicCollection_AddRef
(
LPDIRECTMUSICCOLLECTION
iface
)
{
{
IDirectMusicCollectionImpl
*
This
=
impl_from_IDirectMusicCollection
(
iface
);
IDirectMusicCollectionImpl
*
This
=
impl_from_IDirectMusicCollection
(
iface
);
ULONG
refCount
=
InterlockedIncrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(ref before=%u)
\n
"
,
This
,
refCount
-
1
);
TRACE
(
"(%p/%p)->(): new ref = %u)
\n
"
,
iface
,
This
,
ref
);
DMUSIC_LockModule
();
DMUSIC_LockModule
();
return
refCount
;
return
ref
;
}
}
static
ULONG
WINAPI
IDirectMusicCollectionImpl_IDirectMusicCollection_Release
(
LPDIRECTMUSICCOLLECTION
iface
)
static
ULONG
WINAPI
IDirectMusicCollectionImpl_IDirectMusicCollection_Release
(
LPDIRECTMUSICCOLLECTION
iface
)
{
{
IDirectMusicCollectionImpl
*
This
=
impl_from_IDirectMusicCollection
(
iface
);
IDirectMusicCollectionImpl
*
This
=
impl_from_IDirectMusicCollection
(
iface
);
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(ref before=%u)
\n
"
,
This
,
refCount
+
1
);
TRACE
(
"(%p/%p)->(): new ref = %u)
\n
"
,
iface
,
This
,
ref
);
if
(
!
refCount
)
{
if
(
!
ref
)
HeapFree
(
GetProcessHeap
(),
0
,
This
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
DMUSIC_UnlockModule
();
DMUSIC_UnlockModule
();
return
refCount
;
return
ref
;
}
}
/* IDirectMusicCollection Interface follows: */
/* IDirectMusicCollection Interface follows: */
...
...
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