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.
19 lines
600 B
19 lines
600 B
/******************************Module*Header*******************************\
|
|
* Module Name: condlg.h
|
|
*
|
|
* Author: David Stewart [dstewart]
|
|
*
|
|
* Copyright (c) 1998 Microsoft Corporation. All rights reserved.
|
|
\**************************************************************************/
|
|
|
|
#ifndef _CONDLG_
|
|
#define _CONDLG_
|
|
|
|
#define CONNECTION_DONOTHING 0
|
|
#define CONNECTION_BATCH 1
|
|
#define CONNECTION_GETITNOW 2
|
|
|
|
BOOL _InternetGetConnectedState(DWORD* pdwHow, DWORD dwReserved, BOOL fConnect);
|
|
int ConnectionCheck(HWND hwndParent, void* pPassedOpt, TCHAR chDrive);
|
|
|
|
#endif //_CONDLG_
|