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
4f492014
Commit
4f492014
authored
Jun 30, 2006
by
Hervé Poussineau
Committed by
Alexandre Julliard
Jul 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Use kernel32 functions instead of the ntdll ones.
parent
7027ed45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
prop.c
dlls/mapi32/prop.c
+4
-4
No files found.
dlls/mapi32/prop.c
View file @
4f492014
...
...
@@ -1461,13 +1461,13 @@ static IPropDataItem *IMAPIPROP_AddValue(IPropDataImpl *This,
/* Internal - Lock an IPropData object */
static
inline
void
IMAPIPROP_Lock
(
IPropDataImpl
*
This
)
{
Rtl
EnterCriticalSection
(
&
This
->
cs
);
EnterCriticalSection
(
&
This
->
cs
);
}
/* Internal - Unlock an IPropData object */
static
inline
void
IMAPIPROP_Unlock
(
IPropDataImpl
*
This
)
{
Rtl
LeaveCriticalSection
(
&
This
->
cs
);
LeaveCriticalSection
(
&
This
->
cs
);
}
/* This one seems to be missing from mapidefs.h */
...
...
@@ -1553,7 +1553,7 @@ static inline ULONG WINAPI IMAPIProp_fnRelease(LPMAPIPROP iface)
This
->
lpFree
(
current
->
value
);
This
->
lpFree
(
current
);
}
Rtl
DeleteCriticalSection
(
&
This
->
cs
);
DeleteCriticalSection
(
&
This
->
cs
);
This
->
lpFree
(
This
);
}
return
(
ULONG
)
lRef
;
...
...
@@ -2542,7 +2542,7 @@ SCODE WINAPI CreateIProp(LPCIID iid, ALLOCATEBUFFER *lpAlloc,
lpPropData
->
ulObjAccess
=
IPROP_READWRITE
;
lpPropData
->
ulNumValues
=
0
;
list_init
(
&
lpPropData
->
values
);
Rtl
InitializeCriticalSection
(
&
lpPropData
->
cs
);
InitializeCriticalSection
(
&
lpPropData
->
cs
);
*
lppPropData
=
(
LPPROPDATA
)
lpPropData
;
}
return
scode
;
...
...
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