You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
562 B
20 lines
562 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: inetopt.h
|
|
//
|
|
// Module: CMDL32.EXE and CMROUTE.DLL
|
|
//
|
|
// Synopsis: Header file for shared APIs to set WinInet options
|
|
//
|
|
// Copyright (c) 2001 Microsoft Corporation
|
|
//
|
|
// Author: quintinb Created 08/22/01
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
#ifndef _INETOPT_INC_
|
|
#define _INETOPT_INC_
|
|
|
|
void SuppressInetAutoDial(HINTERNET hInternet);
|
|
BOOL SetInetStateConnected(HINTERNET hInternet);
|
|
|
|
#endif
|