From ecddccbfc0cb80148659f7df09e831f15c5884e8 Mon Sep 17 00:00:00 2001 From: mjjo Date: Sat, 20 Jul 2013 23:24:50 +0000 Subject: [PATCH] --- HLStockWindow/HLStockWindow.h | 62 +++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 HLStockWindow/HLStockWindow.h diff --git a/HLStockWindow/HLStockWindow.h b/HLStockWindow/HLStockWindow.h new file mode 100644 index 0000000..4696d71 --- /dev/null +++ b/HLStockWindow/HLStockWindow.h @@ -0,0 +1,62 @@ +// HLStockWindow.h : main header file for the HLSTOCKWINDOW application +// + +#if !defined(AFX_HLSTOCKWINDOW_H__4E8D403C_07EA_4467_83F0_88A7E6B076FE__INCLUDED_) +#define AFX_HLSTOCKWINDOW_H__4E8D403C_07EA_4467_83F0_88A7E6B076FE__INCLUDED_ + +#if _MSC_VER > 1000 +#pragma once +#endif // _MSC_VER > 1000 + +#ifndef __AFXWIN_H__ + #error include 'stdafx.h' before including this file for PCH +#endif + +#include "resource.h" // main symbols + +///////////////////////////////////////////////////////////////////////////// +// CHLStockWindowApp: +// See HLStockWindow.cpp for the implementation of this class +// + +class CHLStockWindowApp : public CWinApp +{ +public: + CHLStockWindowApp(); + + BOOL m_Hide; + +// Overrides + // ClassWizard generated virtual function overrides + //{{AFX_VIRTUAL(CHLStockWindowApp) + public: + virtual BOOL InitInstance(); + //}}AFX_VIRTUAL + +// Implementation + + //{{AFX_MSG(CHLStockWindowApp) + // NOTE - the ClassWizard will add and remove member functions here. + // DO NOT EDIT what you see in these blocks of generated code ! + //}}AFX_MSG + DECLARE_MESSAGE_MAP() +}; + +extern CHLStockWindowApp g_theApp; + +// Got this from MSDN +class CMyCmdLineInfo : public CCommandLineInfo +{ +public: + virtual void ParseParam(LPCSTR pszParam, BOOL bFlag, BOOL bLast); + + CHLStockWindowApp* m_App; + bool m_Hide; +}; + +///////////////////////////////////////////////////////////////////////////// + +//{{AFX_INSERT_LOCATION}} +// Microsoft Visual C++ will insert additional declarations immediately before the previous line. + +#endif // !defined(AFX_HLSTOCKWINDOW_H__4E8D403C_07EA_4467_83F0_88A7E6B076FE__INCLUDED_)