mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
42
hammer/shellmessagewnd.h
Normal file
42
hammer/shellmessagewnd.h
Normal 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
|
||||
Reference in New Issue
Block a user