include: Add INTERNET_DIAGNOSTIC_SOCKET_INFO definitions.

This commit is contained in:
Juan Lang 2009-08-10 15:18:28 -07:00 committed by Alexandre Julliard
parent 6ec60e26bc
commit 7dd7109e9e
1 changed files with 13 additions and 0 deletions

View File

@ -371,6 +371,19 @@ typedef struct _INTERNET_PER_CONN_OPTION_LISTW {
DECL_WINELIB_TYPE_AW(INTERNET_PER_CONN_OPTION_LIST)
DECL_WINELIB_TYPE_AW(LPINTERNET_PER_CONN_OPTION_LIST)
typedef struct _INTERNET_DIAGNOSTIC_SOCKET_INFO
{
DWORD_PTR Socket;
DWORD SourcePort;
DWORD DestPort;
DWORD Flags;
} INTERNET_DIAGNOSTIC_SOCKET_INFO, *LPINTERNET_DIAGNOSTIC_SOCKET_INFO;
#define IDSI_FLAG_KEEP_ALIVE 0x00000001
#define IDSI_FLAG_SECURE 0x00000002
#define IDSI_FLAG_PROXY 0x00000004
#define IDSI_FLAG_TUNNEL 0x00000008
BOOLAPI InternetTimeFromSystemTimeA(CONST SYSTEMTIME *,DWORD ,LPSTR ,DWORD);
BOOLAPI InternetTimeFromSystemTimeW(CONST SYSTEMTIME *,DWORD ,LPWSTR ,DWORD);
#define InternetTimeFromSystemTime WINELIB_NAME_AW(InternetTimeFromSystemTime)