Take care of one BSOD in NtGdiDdCreateDirectDrawObject, it is not correct fix, it...
[reactos.git] / rosapps / sysutils / regexpl / ShellCommandHelp.h
1 /* $Id$ */
2
3 // ShellCommandHelp.h: interface for the CShellCommandHelp class.
4 //
5 //////////////////////////////////////////////////////////////////////
6
7 #if !defined(SHELLCOMMANDHELP_H__848A2504_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)
8 #define SHELLCOMMANDHELP_H__848A2504_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_
9
10 #include "ShellCommand.h"
11 #include "ShellCommandsLinkedList.h"
12
13 class CShellCommandHelp : public CShellCommand
14 {
15 public:
16 CShellCommandHelp(CShellCommandsLinkedList& rCommandsLinkedList);
17 virtual ~CShellCommandHelp();
18 virtual BOOL Match(const TCHAR *pchCommand);
19 virtual int Execute(CConsole &rConsole, CArgumentParser& rArguments);
20 virtual const TCHAR * GetHelpString();
21 virtual const TCHAR * GetHelpShortDescriptionString();
22 private:
23 CShellCommandsLinkedList& m_rCommandsLinkedList;
24 };
25
26 #endif // !defined(SHELLCOMMANDHELP_H__848A2504_5A0F_11D4_A039_FC2CE602E70F__INCLUDED_)