Alexandre Julliard : include: Use proper dllimports for more wininet functions.
Module: wine Branch: master Commit: 9da663b4802dbaff6f80191c09266b1718ce5e15 URL: https://gitlab.winehq.org/wine/wine/-/commit/9da663b4802dbaff6f80191c09266b1... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Fri Nov 3 17:32:44 2023 +0100 include: Use proper dllimports for more wininet functions. --- include/wininet.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/wininet.h b/include/wininet.h index 158b005d36c..0de2b830812 100644 --- a/include/wininet.h +++ b/include/wininet.h @@ -1742,8 +1742,8 @@ INTERNETAPI BOOL WINAPI InternetSetDialStateW(LPCWSTR ,DWORD ,DWORD); #define InternetSetDialState WINELIB_NAME_AW(InternetSetDialState) #define INTERNET_DIALSTATE_DISCONNECTED 1 -BOOL WINAPI InternetGetConnectedStateExA(LPDWORD, LPSTR, DWORD, DWORD); -BOOL WINAPI InternetGetConnectedStateExW(LPDWORD, LPWSTR, DWORD, DWORD); +INTERNETAPI BOOL WINAPI InternetGetConnectedStateExA(LPDWORD, LPSTR, DWORD, DWORD); +INTERNETAPI BOOL WINAPI InternetGetConnectedStateExW(LPDWORD, LPWSTR, DWORD, DWORD); #define InternetGetConnectedStateEx WINELIB_NAME_AW(InternetGetConnectedStateEx) typedef struct AutoProxyHelperVtbl @@ -1779,8 +1779,8 @@ typedef BOOL (CALLBACK *pfnInternetInitializeAutoProxyDll)(DWORD, LPSTR, LPSTR, #define PROXY_AUTO_DETECT_TYPE_DHCP 1 #define PROXY_AUTO_DETECT_TYPE_DNS_A 2 -BOOL WINAPI InternetInitializeAutoProxyDll(DWORD); -BOOL WINAPI DetectAutoProxyUrl(LPSTR, DWORD, DWORD); +INTERNETAPI BOOL WINAPI InternetInitializeAutoProxyDll(DWORD); +INTERNETAPI BOOL WINAPI DetectAutoProxyUrl(LPSTR, DWORD, DWORD); #ifdef __cplusplus }
participants (1)
-
Alexandre Julliard