Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a9c797e4
Commit
a9c797e4
authored
Feb 17, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
propsys: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
08332f4d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/propsys/Makefile.in
+0
-1
propstore.c
dlls/propsys/propstore.c
+4
-4
propsys_main.c
dlls/propsys/propsys_main.c
+1
-1
No files found.
dlls/propsys/Makefile.in
View file @
a9c797e4
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
propsys.dll
MODULE
=
propsys.dll
IMPORTLIB
=
propsys
IMPORTLIB
=
propsys
IMPORTS
=
ole32 oleaut32 uuid
IMPORTS
=
ole32 oleaut32 uuid
...
...
dlls/propsys/propstore.c
View file @
a9c797e4
...
@@ -92,7 +92,7 @@ static ULONG WINAPI PropertyStore_AddRef(IPropertyStoreCache *iface)
...
@@ -92,7 +92,7 @@ static ULONG WINAPI PropertyStore_AddRef(IPropertyStoreCache *iface)
PropertyStore
*
This
=
impl_from_IPropertyStoreCache
(
iface
);
PropertyStore
*
This
=
impl_from_IPropertyStoreCache
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) refcount=%u
\n
"
,
iface
,
ref
);
TRACE
(
"(%p) refcount=%
l
u
\n
"
,
iface
,
ref
);
return
ref
;
return
ref
;
}
}
...
@@ -113,7 +113,7 @@ static ULONG WINAPI PropertyStore_Release(IPropertyStoreCache *iface)
...
@@ -113,7 +113,7 @@ static ULONG WINAPI PropertyStore_Release(IPropertyStoreCache *iface)
PropertyStore
*
This
=
impl_from_IPropertyStoreCache
(
iface
);
PropertyStore
*
This
=
impl_from_IPropertyStoreCache
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) refcount=%u
\n
"
,
iface
,
ref
);
TRACE
(
"(%p) refcount=%
l
u
\n
"
,
iface
,
ref
);
if
(
ref
==
0
)
if
(
ref
==
0
)
{
{
...
@@ -159,7 +159,7 @@ static HRESULT WINAPI PropertyStore_GetAt(IPropertyStoreCache *iface,
...
@@ -159,7 +159,7 @@ static HRESULT WINAPI PropertyStore_GetAt(IPropertyStoreCache *iface,
propstore_value
*
value
;
propstore_value
*
value
;
HRESULT
hr
;
HRESULT
hr
;
TRACE
(
"%p,%d,%p
\n
"
,
iface
,
iProp
,
pkey
);
TRACE
(
"%p,%
l
d,%p
\n
"
,
iface
,
iProp
,
pkey
);
if
(
!
pkey
)
if
(
!
pkey
)
return
E_POINTER
;
return
E_POINTER
;
...
@@ -478,7 +478,7 @@ HRESULT WINAPI PSCreatePropertyStoreFromObject(IUnknown *obj, DWORD access, REFI
...
@@ -478,7 +478,7 @@ HRESULT WINAPI PSCreatePropertyStoreFromObject(IUnknown *obj, DWORD access, REFI
{
{
HRESULT
hr
;
HRESULT
hr
;
TRACE
(
"(%p, %d, %s, %p)
\n
"
,
obj
,
access
,
debugstr_guid
(
riid
),
ret
);
TRACE
(
"(%p, %
l
d, %s, %p)
\n
"
,
obj
,
access
,
debugstr_guid
(
riid
),
ret
);
if
(
!
obj
||
!
ret
)
if
(
!
obj
||
!
ret
)
return
E_POINTER
;
return
E_POINTER
;
...
...
dlls/propsys/propsys_main.c
View file @
a9c797e4
...
@@ -157,7 +157,7 @@ static HRESULT WINAPI propsys_FormatForDisplay(IPropertySystem *iface,
...
@@ -157,7 +157,7 @@ static HRESULT WINAPI propsys_FormatForDisplay(IPropertySystem *iface,
REFPROPERTYKEY
key
,
REFPROPVARIANT
propvar
,
PROPDESC_FORMAT_FLAGS
flags
,
REFPROPERTYKEY
key
,
REFPROPVARIANT
propvar
,
PROPDESC_FORMAT_FLAGS
flags
,
LPWSTR
dest
,
DWORD
destlen
)
LPWSTR
dest
,
DWORD
destlen
)
{
{
FIXME
(
"%p %p %x %p %d: stub
\n
"
,
key
,
propvar
,
flags
,
dest
,
destlen
);
FIXME
(
"%p %p %x %p %
l
d: stub
\n
"
,
key
,
propvar
,
flags
,
dest
,
destlen
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
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