Commit a36d747b authored by Alexandre Julliard's avatar Alexandre Julliard

include: Use proper dllimports for url functions.

parent 18a1d353
EXTRADEFS = -D_INTSHCUT_
MODULE = url.dll
IMPORTLIB = url
IMPORTS = shell32 shlwapi
......
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment