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
37b972c7
Commit
37b972c7
authored
Feb 10, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 10, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsuiext: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7f3c35db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
Makefile.in
dlls/dsuiext/Makefile.in
+0
-1
dsuiext.c
dlls/dsuiext/dsuiext.c
+7
-7
No files found.
dlls/dsuiext/Makefile.in
View file @
37b972c7
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
dsuiext.dll
IMPORTS
=
ole32 uuid
...
...
dlls/dsuiext/dsuiext.c
View file @
37b972c7
...
...
@@ -85,7 +85,7 @@ static ULONG WINAPI dispspec_Release(IDsDisplaySpecifier *iface)
static
HRESULT
WINAPI
dispspec_SetServer
(
IDsDisplaySpecifier
*
iface
,
LPCWSTR
server
,
LPCWSTR
user
,
LPCWSTR
password
,
DWORD
flags
)
{
FIXME
(
"%p,%s,%s,%p,%08x: stub
\n
"
,
iface
,
debugstr_w
(
server
),
debugstr_w
(
user
),
password
,
flags
);
FIXME
(
"%p,%s,%s,%p,%08
l
x: stub
\n
"
,
iface
,
debugstr_w
(
server
),
debugstr_w
(
user
),
password
,
flags
);
return
E_NOTIMPL
;
}
...
...
@@ -105,14 +105,14 @@ static HRESULT WINAPI dispspec_GetDisplaySpecifier(IDsDisplaySpecifier *iface, L
static
HRESULT
WINAPI
dispspec_GetIconLocation
(
IDsDisplaySpecifier
*
iface
,
LPCWSTR
object
,
DWORD
flags
,
LPWSTR
buffer
,
INT
size
,
INT
*
id
)
{
FIXME
(
"%p,%s,%08x,%p,%d,%p: stub
\n
"
,
iface
,
debugstr_w
(
object
),
flags
,
buffer
,
size
,
id
);
FIXME
(
"%p,%s,%08
l
x,%p,%d,%p: stub
\n
"
,
iface
,
debugstr_w
(
object
),
flags
,
buffer
,
size
,
id
);
return
E_NOTIMPL
;
}
static
HICON
WINAPI
dispspec_GetIcon
(
IDsDisplaySpecifier
*
iface
,
LPCWSTR
object
,
DWORD
flags
,
INT
cx
,
INT
cy
)
{
FIXME
(
"%p,%s,%08x,%dx%d: stub
\n
"
,
iface
,
debugstr_w
(
object
),
flags
,
cx
,
cy
);
FIXME
(
"%p,%s,%08
l
x,%dx%d: stub
\n
"
,
iface
,
debugstr_w
(
object
),
flags
,
cx
,
cy
);
return
0
;
}
...
...
@@ -133,7 +133,7 @@ static HRESULT WINAPI dispspec_GetFriendlyAttributeName(IDsDisplaySpecifier *ifa
static
BOOL
WINAPI
dispspec_IsClassContainer
(
IDsDisplaySpecifier
*
iface
,
LPCWSTR
object
,
LPCWSTR
path
,
DWORD
flags
)
{
FIXME
(
"%p,%s,%s,%08x: stub
\n
"
,
iface
,
debugstr_w
(
object
),
debugstr_w
(
path
),
flags
);
FIXME
(
"%p,%s,%s,%08
l
x: stub
\n
"
,
iface
,
debugstr_w
(
object
),
debugstr_w
(
path
),
flags
);
return
FALSE
;
}
...
...
@@ -147,7 +147,7 @@ static HRESULT WINAPI dispspec_GetClassCreationInfo(IDsDisplaySpecifier *iface,
static
HRESULT
WINAPI
dispspec_EnumClassAttributes
(
IDsDisplaySpecifier
*
iface
,
LPCWSTR
object
,
LPDSENUMATTRIBUTES
cb
,
LPARAM
param
)
{
FIXME
(
"%p,%s,%p,%08
l
x: stub
\n
"
,
iface
,
debugstr_w
(
object
),
cb
,
param
);
FIXME
(
"%p,%s,%p,%08
I
x: stub
\n
"
,
iface
,
debugstr_w
(
object
),
cb
,
param
);
return
E_NOTIMPL
;
}
...
...
@@ -237,7 +237,7 @@ static ULONG WINAPI factory_AddRef(IClassFactory *iface)
class_factory
*
factory
=
impl_from_IClassFactory
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
factory
->
ref
);
TRACE
(
"(%p) ref %u
\n
"
,
iface
,
ref
);
TRACE
(
"(%p) ref %
l
u
\n
"
,
iface
,
ref
);
return
ref
;
}
...
...
@@ -247,7 +247,7 @@ static ULONG WINAPI factory_Release(IClassFactory *iface)
class_factory
*
factory
=
impl_from_IClassFactory
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
factory
->
ref
);
TRACE
(
"(%p) ref %u
\n
"
,
iface
,
ref
);
TRACE
(
"(%p) ref %
l
u
\n
"
,
iface
,
ref
);
if
(
!
ref
)
heap_free
(
factory
);
...
...
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