Leaked source code of windows server 2003
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.
|
|
/*
* 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
|