OLDBARS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // oldbars.h : main header file for the OLDBARS application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. // Use "old" toolbar and status bar implementations
  13. #include "toolbar.h"
  14. #include "statbar.h"
  15. #ifndef __AFXWIN_H__
  16. #error include 'stdafx.h' before including this file for PCH
  17. #endif
  18. #include "resource.h"       // main symbols
  19. /////////////////////////////////////////////////////////////////////////////
  20. // COldbarsApp:
  21. // See oldbars.cpp for the implementation of this class
  22. //
  23. class COldbarsApp : public CWinApp
  24. {
  25. public:
  26. COldbarsApp();
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(COldbarsApp)
  30. public:
  31. virtual BOOL InitInstance();
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. //{{AFX_MSG(COldbarsApp)
  35. afx_msg void OnAppAbout();
  36. // NOTE - the ClassWizard will add and remove member functions here.
  37. //    DO NOT EDIT what you see in these blocks of generated code !
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////