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
3b2681b6
Commit
3b2681b6
authored
Feb 09, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
davclnt: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3aeb2f67
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/davclnt/Makefile.in
+0
-1
main.c
dlls/davclnt/main.c
+2
-2
No files found.
dlls/davclnt/Makefile.in
View file @
3b2681b6
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
davclnt.dll
MODULE
=
davclnt.dll
EXTRADLLFLAGS
=
-Wb
,--prefer-native
EXTRADLLFLAGS
=
-Wb
,--prefer-native
...
...
dlls/davclnt/main.c
View file @
3b2681b6
...
@@ -34,7 +34,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(davclnt);
...
@@ -34,7 +34,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(davclnt);
*/
*/
OPAQUE_HANDLE
WINAPI
DavRegisterAuthCallback
(
PFNDAVAUTHCALLBACK
cb
,
ULONG
version
)
OPAQUE_HANDLE
WINAPI
DavRegisterAuthCallback
(
PFNDAVAUTHCALLBACK
cb
,
ULONG
version
)
{
{
FIXME
(
"%p, %u
\n
"
,
cb
,
version
);
FIXME
(
"%p, %
l
u
\n
"
,
cb
,
version
);
return
0xdeadbeef
;
return
0xdeadbeef
;
}
}
...
@@ -43,5 +43,5 @@ OPAQUE_HANDLE WINAPI DavRegisterAuthCallback(PFNDAVAUTHCALLBACK cb, ULONG versio
...
@@ -43,5 +43,5 @@ OPAQUE_HANDLE WINAPI DavRegisterAuthCallback(PFNDAVAUTHCALLBACK cb, ULONG versio
*/
*/
VOID
WINAPI
DavUnregisterAuthCallback
(
OPAQUE_HANDLE
handle
)
VOID
WINAPI
DavUnregisterAuthCallback
(
OPAQUE_HANDLE
handle
)
{
{
FIXME
(
"%08x
\n
"
,
handle
);
FIXME
(
"%08
l
x
\n
"
,
handle
);
}
}
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