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
ef587a76
Commit
ef587a76
authored
Feb 15, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 15, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msident: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a43a1778
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/msident/Makefile.in
+0
-1
msident.c
dlls/msident/msident.c
+6
-6
No files found.
dlls/msident/Makefile.in
View file @
ef587a76
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
msident.dll
EXTRADLLFLAGS
=
-Wb
,--prefer-native
...
...
dlls/msident/msident.c
View file @
ef587a76
...
...
@@ -63,7 +63,7 @@ static ULONG WINAPI EnumUserIdentity_AddRef(IEnumUserIdentity *iface)
EnumUserIdentity
*
This
=
impl_from_IEnumUserIdentity
(
iface
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%
l
d
\n
"
,
This
,
ref
);
return
ref
;
}
...
...
@@ -73,7 +73,7 @@ static ULONG WINAPI EnumUserIdentity_Release(IEnumUserIdentity *iface)
EnumUserIdentity
*
This
=
impl_from_IEnumUserIdentity
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%
l
d
\n
"
,
This
,
ref
);
if
(
!
ref
)
heap_free
(
This
);
...
...
@@ -84,14 +84,14 @@ static ULONG WINAPI EnumUserIdentity_Release(IEnumUserIdentity *iface)
static
HRESULT
WINAPI
EnumUserIdentity_Next
(
IEnumUserIdentity
*
iface
,
ULONG
celt
,
IUnknown
**
rgelt
,
ULONG
*
pceltFetched
)
{
EnumUserIdentity
*
This
=
impl_from_IEnumUserIdentity
(
iface
);
FIXME
(
"(%p)->(%u %p %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
FIXME
(
"(%p)->(%
l
u %p %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
EnumUserIdentity_Skip
(
IEnumUserIdentity
*
iface
,
ULONG
celt
)
{
EnumUserIdentity
*
This
=
impl_from_IEnumUserIdentity
(
iface
);
FIXME
(
"(%p)->(%u)
\n
"
,
This
,
celt
);
FIXME
(
"(%p)->(%
l
u)
\n
"
,
This
,
celt
);
return
E_NOTIMPL
;
}
...
...
@@ -179,14 +179,14 @@ static HRESULT WINAPI UserIdentityManager_EnumIdentities(IUserIdentityManager *i
static
HRESULT
WINAPI
UserIdentityManager_ManageIdentities
(
IUserIdentityManager
*
iface
,
HWND
hwndParent
,
DWORD
dwFlags
)
{
FIXME
(
"(%p %x)
\n
"
,
hwndParent
,
dwFlags
);
FIXME
(
"(%p %
l
x)
\n
"
,
hwndParent
,
dwFlags
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
UserIdentityManager_Logon
(
IUserIdentityManager
*
iface
,
HWND
hwndParent
,
DWORD
dwFlags
,
IUserIdentity
**
ppIdentity
)
{
FIXME
(
"(%p %x %p)
\n
"
,
hwndParent
,
dwFlags
,
ppIdentity
);
FIXME
(
"(%p %
l
x %p)
\n
"
,
hwndParent
,
dwFlags
,
ppIdentity
);
return
E_USER_CANCELLED
;
}
...
...
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