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.
26 lines
690 B
26 lines
690 B
/*
|
|
* c o n n e c t . h
|
|
*
|
|
* Purpose:
|
|
* Implements connection dialog tab page
|
|
*
|
|
* Owner:
|
|
* brettm.
|
|
*
|
|
* Copyright (C) Microsoft Corp. 1993, 1994.
|
|
*/
|
|
|
|
|
|
#ifndef _CONNECT_H
|
|
#define _CONNECT_H
|
|
|
|
#include "ras.h"
|
|
|
|
INT_PTR CALLBACK ConnectPage_DlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
BOOL ConnectPage_EditConnection(HWND hDlg);
|
|
BOOL ConnectPage_MakeNewConnection(HWND hDlg);
|
|
void ConnectPage_InitDialog(HWND hwnd, LPSTR lpszEntryName, LPSTR lpszBackup, DWORD iConnectType, BOOL fFirstInit);
|
|
void ConnectPage_WMCommand(HWND hwnd, HWND hwndCmd, int id, WORD wCmd, IImnAccount *pAcct);
|
|
|
|
#endif //_CONNECT_H
|