mirror of https://github.com/lianthony/NT4.0
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.
30 lines
800 B
30 lines
800 B
/**********************************************************************/
|
|
/** Microsoft Windows/NT **/
|
|
/** Copyright(c) Microsoft Corp., 1991 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
* This header file describes classes and routines used in
|
|
* the Server Manager Send Message dialog.
|
|
*/
|
|
|
|
|
|
#include <sendmsg.hxx>
|
|
|
|
|
|
// class for MessageSend dialog
|
|
class SRV_SEND_MSG_DIALOG : public MSG_DIALOG_BASE
|
|
{
|
|
private:
|
|
SLT _sltUsers;
|
|
STRLIST *pslUsers;
|
|
DECL_CLASS_NLS_STR (nlsServer, MAX_PATH ) ;
|
|
|
|
protected:
|
|
virtual APIERR QueryUsers( STRLIST *pslUsers );
|
|
virtual BOOL ActionOnError( APIERR err );
|
|
ULONG QueryHelpContext( void );
|
|
|
|
public:
|
|
SRV_SEND_MSG_DIALOG( HWND hDlg, const TCHAR *pszServer );
|
|
};
|