home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / propdlg / propdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.2 KB  |  47 lines

  1. // propdlg.h : main header file for the PROPDLG application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 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.  
  17. #include "resource.h"       // main symbols
  18.  
  19. #define WM_USER_CHANGE_OBJECT_PROPERTIES (WM_USER + 1)
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CPropDlgApp:
  23. // See propdlg.cpp for the implementation of this class
  24. //
  25.  
  26. class CPropDlgApp : public CWinApp
  27. {
  28. public:
  29.  
  30. // Overrides
  31.     // ClassWizard generate virtual function overrides
  32.     //{{AFX_VIRTUAL(CPropDlgApp)
  33.     public:
  34.     virtual BOOL InitInstance();
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38.  
  39.     //{{AFX_MSG(CPropDlgApp)
  40.     afx_msg void OnAppAbout();
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.