mirror of https://github.com/tongzx/nt5src
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.
32 lines
619 B
32 lines
619 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997 - 2000
|
|
//
|
|
// File: N E T R A S . H
|
|
//
|
|
// Contents: Routines supporting RAS interoperability
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: billi 07 03 2001
|
|
//
|
|
// History:
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
#include <wininet.h>
|
|
|
|
|
|
#define HNW_ED_NONE 0x0
|
|
#define HNW_ED_RELEASE 0x1
|
|
#define HNW_ED_RENEW 0x2
|
|
|
|
|
|
HRESULT HrSetInternetAutodialMode( DWORD dwMode );
|
|
HRESULT HrSetAutodial( DWORD dwMode );
|
|
|