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
a36d747b
Commit
a36d747b
authored
Nov 03, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Use proper dllimports for url functions.
parent
18a1d353
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
Makefile.in
dlls/url/Makefile.in
+1
-0
intshcut.h
include/intshcut.h
+7
-4
No files found.
dlls/url/Makefile.in
View file @
a36d747b
EXTRADEFS
=
-D_INTSHCUT_
MODULE
=
url.dll
IMPORTLIB
=
url
IMPORTS
=
shell32 shlwapi
...
...
include/intshcut.h
View file @
a36d747b
...
...
@@ -21,7 +21,11 @@
#include <isguids.h>
#ifdef _INTSHCUT_
#define INTSHCUTAPI
#else
#define INTSHCUTAPI DECLSPEC_IMPORT
#endif
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -101,11 +105,10 @@ typedef enum translateurl_in_flags {
TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL
}
TRANSLATEURL_IN_FLAGS
;
HRESULT
WINAPI
TranslateURLA
(
LPCSTR
,
DWORD
,
LPSTR
*
);
HRESULT
WINAPI
TranslateURLW
(
LPCWSTR
,
DWORD
,
LPWSTR
*
);
INTSHCUTAPI
HRESULT
WINAPI
TranslateURLA
(
LPCSTR
,
DWORD
,
LPSTR
*
);
INTSHCUTAPI
HRESULT
WINAPI
TranslateURLW
(
LPCWSTR
,
DWORD
,
LPWSTR
*
);
#define TranslateURL WINELIB_NAME_AW(TranslateURL)
BOOL
WINAPI
InetIsOffline
(
DWORD
);
INTSHCUTAPI
BOOL
WINAPI
InetIsOffline
(
DWORD
);
#ifdef __cplusplus
}
...
...
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