Counter Strike : Global Offensive Source Code
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

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Receives shell commands from other applications and forwards them
  4. // to the shell command handler.
  5. //
  6. // $Workfile: $
  7. // $Date: $
  8. //
  9. //-----------------------------------------------------------------------------
  10. // $Log: $
  11. //
  12. // $NoKeywords: $
  13. //=============================================================================//
  14. #ifndef SHELLMESSAGEWND_H
  15. #define SHELLMESSAGEWND_H
  16. #pragma once
  17. class CShell;
  18. class CShellMessageWnd : public CWnd
  19. {
  20. public:
  21. bool Create(void);
  22. void SetShell(CShell *pShell);
  23. protected:
  24. CShell *m_pShell;
  25. //{{AFX_MSG_MAP(CShellMessageWnd)
  26. afx_msg BOOL OnCopyData(CWnd *pWnd, COPYDATASTRUCT *pCopyData);
  27. //}}AFX_MSG
  28. DECLARE_MESSAGE_MAP()
  29. };
  30. #endif // SHELLMESSAGEWND_H