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.
16 lines
356 B
16 lines
356 B
//
|
|
// DefConn.h
|
|
//
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void WINAPI EnableAutodial(BOOL bAutodial, LPCWSTR szConnection = NULL);
|
|
BOOL WINAPI IsAutodialEnabled();
|
|
void WINAPI SetDefaultDialupConnection(LPCWSTR pszConnectionName);
|
|
void WINAPI GetDefaultDialupConnection(LPWSTR pszConnectionName, int cchMax);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|