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.
49 lines
1005 B
49 lines
1005 B
/****************************************************************************
|
|
*
|
|
* FILE: ChConDlg.h
|
|
*
|
|
* CREATED: Chris Pirich (ChrisPi) 6-26-96
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef _CHCONDLG_H_
|
|
#define _CHCONDLG_H_
|
|
|
|
#include <cstring.hpp>
|
|
|
|
class CChooseConfDlg
|
|
{
|
|
protected:
|
|
HWND m_hwndParent;
|
|
HWND m_hwnd;
|
|
|
|
CSTRING m_strConfName;
|
|
PWSTR* m_ppwszConferences;
|
|
|
|
BOOL ProcessMessage(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
BOOL GetConferenceName(int iItem, LPTSTR pszName, int cchName);
|
|
static void RefreshOk(HWND hwnd);
|
|
|
|
|
|
|
|
// Handlers:
|
|
BOOL OnOk(LPTSTR pszName);
|
|
|
|
public:
|
|
// Properties:
|
|
|
|
LPCTSTR GetName() { return (LPCTSTR) m_strConfName; };
|
|
|
|
// Methods:
|
|
CChooseConfDlg(HWND hwndParent, PWSTR* ppwszConferences);
|
|
// ~CChooseConfDlg();
|
|
INT_PTR DoModal();
|
|
|
|
static INT_PTR CALLBACK ChooseConfDlgProc( HWND hDlg,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam);
|
|
};
|
|
|
|
#endif // _CHCONDLG_H_
|
|
|