blob: b289765e20c0e53a14d81f9945618d692bcf3515 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
|