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

Windows编程

开发平台:

Visual C++

  1. // np.h : main header file for the NP 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. //
  13. #ifndef __AFXWIN_H__
  14. #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16. #include "resource.h"       // main symbols
  17. // application defines
  18. #define COMBO_HEIGHT 100    // width of edit control for combobox
  19. #define COMBO_WIDTH  160    // drop down height
  20. #define HISTORY_COUNT 10    // number of entries for the last search selections
  21. #define TIMER_ID 2          // timer ID for clock on status bar
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CNotepadApp:
  24. // See np.cpp for the implementation of this class
  25. //
  26. class CNotepadApp : public CWinApp
  27. {
  28. public:
  29. CNotepadApp();
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CNotepadApp)
  33. public:
  34. virtual BOOL InitInstance();
  35. virtual BOOL OnIdle(LONG lCount);
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. //{{AFX_MSG(CNotepadApp)
  39. afx_msg void OnAppAbout();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////