This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions

42
hammer/shellmessagewnd.h Normal file
View File

@@ -0,0 +1,42 @@
//========= Copyright 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