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.
|
|
/*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
chkmsg.hxx
Abstract:
The CHKDSK_MESSAGE class offers a STREAM implementation of the MESSAGE class. The messages are output to the STREAM to which the object is initialized to.
Author:
Daniel Chan (danielch) Jan 14, 1999
--*/
#if !defined(CHKDSK_MESSAGE_DEFN)
#define CHKDSK_MESSAGE_DEFN
#include "message.hxx"
DECLARE_CLASS( CHKDSK_MESSAGE ); DECLARE_CLASS( STREAM );
class CHKDSK_MESSAGE : public MESSAGE {
public:
ULIB_EXPORT DECLARE_CONSTRUCTOR( CHKDSK_MESSAGE );
VIRTUAL ULIB_EXPORT ~CHKDSK_MESSAGE( );
NONVIRTUAL ULIB_EXPORT BOOLEAN Initialize( IN OUT PSTREAM OutputStream, IN OUT PSTREAM InputStream, IN OUT PSTREAM ErrorStream DEFAULT NULL );
VIRTUAL ULIB_EXPORT BOOLEAN Set( IN MSGID MsgId, IN MESSAGE_TYPE MessageType DEFAULT NORMAL_MESSAGE, IN ULONG MessageVisual DEFAULT NORMAL_VISUAL );
VIRTUAL BOOLEAN DisplayV( IN PCSTR Format, IN va_list VarPointer );
VIRTUAL ULIB_EXPORT BOOLEAN IsYesResponse( IN BOOLEAN Default DEFAULT TRUE );
VIRTUAL BOOLEAN QueryStringInput( OUT PWSTRING String );
VIRTUAL BOOLEAN WaitForUserSignal( );
VIRTUAL MSGID SelectResponse( IN ULONG NumberOfSelections ... );
NONVIRTUAL VOID SetInputCaseSensitivity( IN BOOLEAN CaseSensitive );
VIRTUAL PMESSAGE Dup( );
private:
NONVIRTUAL VOID Construct( );
NONVIRTUAL VOID Destroy( );
NONVIRTUAL BOOLEAN ReadLine( OUT PWSTRING String );
NONVIRTUAL BOOLEAN Flush( );
NONVIRTUAL BOOLEAN DisplayString( );
MESSAGE_TYPE _msgtype; ULONG _msgvisual; PSTREAM _out_stream; PSTREAM _in_stream; PSTREAM _err_stream; BOOLEAN _case_sensitive; BOOLEAN _copy_input; DSTRING _display_string;
};
typedef CHKDSK_MESSAGE* PCHKDSK_MESSAGE;
INLINE VOID CHKDSK_MESSAGE::SetInputCaseSensitivity( IN BOOLEAN CaseSensitive ) /*++
Routine Description:
This routine sets whether or not to be case sensitive on input. The class defaults this value to FALSE when it is initialized.
Arguments:
CaseSensitive - Supplies whether or not to be case sensitive on input.
Return Value:
None.
--*/ { _case_sensitive = CaseSensitive; }
#endif // CHKDSK_MESSAGE_DEFN
|