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.
42 lines
843 B
42 lines
843 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Receives shell commands from other applications and forwards them
|
|
// to the shell command handler.
|
|
//
|
|
// $Workfile: $
|
|
// $Date: $
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
// $Log: $
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef SHELLMESSAGEWND_H
|
|
#define SHELLMESSAGEWND_H
|
|
#pragma once
|
|
|
|
|
|
class CShell;
|
|
|
|
|
|
class CShellMessageWnd : public CWnd
|
|
{
|
|
public:
|
|
|
|
bool Create(void);
|
|
void SetShell(CShell *pShell);
|
|
|
|
protected:
|
|
|
|
CShell *m_pShell;
|
|
|
|
//{{AFX_MSG_MAP(CShellMessageWnd)
|
|
afx_msg BOOL OnCopyData(CWnd *pWnd, COPYDATASTRUCT *pCopyData);
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|
|
#endif // SHELLMESSAGEWND_H
|