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
30dd2c23
Commit
30dd2c23
authored
Feb 07, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apphelp: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
71e90100
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/apphelp/Makefile.in
+0
-1
apphelp.c
dlls/apphelp/apphelp.c
+3
-3
No files found.
dlls/apphelp/Makefile.in
View file @
30dd2c23
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
apphelp.dll
MODULE
=
apphelp.dll
EXTRADLLFLAGS
=
-Wb
,--prefer-native
EXTRADLLFLAGS
=
-Wb
,--prefer-native
...
...
dlls/apphelp/apphelp.c
View file @
30dd2c23
...
@@ -74,7 +74,7 @@ BOOL WINAPI ShimFlushCache( HWND hwnd, HINSTANCE instance, LPCSTR cmdline, int c
...
@@ -74,7 +74,7 @@ BOOL WINAPI ShimFlushCache( HWND hwnd, HINSTANCE instance, LPCSTR cmdline, int c
HSDB
WINAPI
SdbInitDatabase
(
DWORD
flags
,
LPCWSTR
path
)
HSDB
WINAPI
SdbInitDatabase
(
DWORD
flags
,
LPCWSTR
path
)
{
{
FIXME
(
"stub: %08x %s
\n
"
,
flags
,
debugstr_w
(
path
));
FIXME
(
"stub: %08
l
x %s
\n
"
,
flags
,
debugstr_w
(
path
));
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
NULL
;
return
NULL
;
}
}
...
@@ -88,7 +88,7 @@ PDB WINAPI SdbOpenDatabase(LPCWSTR path, PATH_TYPE type)
...
@@ -88,7 +88,7 @@ PDB WINAPI SdbOpenDatabase(LPCWSTR path, PATH_TYPE type)
TAGID
WINAPI
SdbGetFirstChild
(
PDB
pdb
,
TAGID
parent
)
TAGID
WINAPI
SdbGetFirstChild
(
PDB
pdb
,
TAGID
parent
)
{
{
FIXME
(
"stub: %p %d
\n
"
,
pdb
,
parent
);
FIXME
(
"stub: %p %
l
d
\n
"
,
pdb
,
parent
);
return
TAGID_NULL
;
return
TAGID_NULL
;
}
}
...
@@ -99,6 +99,6 @@ void WINAPI SdbCloseDatabase(PDB pdb)
...
@@ -99,6 +99,6 @@ void WINAPI SdbCloseDatabase(PDB pdb)
void
WINAPI
SdbGetAppPatchDir
(
HSDB
hsdb
,
WCHAR
*
path
,
DWORD
size
)
void
WINAPI
SdbGetAppPatchDir
(
HSDB
hsdb
,
WCHAR
*
path
,
DWORD
size
)
{
{
FIXME
(
"stub: %p %p %d
\n
"
,
hsdb
,
path
,
size
);
FIXME
(
"stub: %p %p %
l
d
\n
"
,
hsdb
,
path
,
size
);
if
(
size
&&
path
)
*
path
=
0
;
if
(
size
&&
path
)
*
path
=
0
;
}
}
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