home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / sdk / mapi / win16 / dev / propvu / getprop.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-11  |  1.3 KB  |  86 lines

  1. /*********************************************************************/
  2. /*
  3.  -  getprop.h
  4.  -  Copyright (C) 1995 Microsoft Corporation
  5.  -
  6.  *  Purpose:
  7.  *      Defines id's, function prototypes, classes for GetProps Dialog class
  8.  *
  9.  */
  10. /*********************************************************************/
  11.  
  12. #ifndef __getprop_h_
  13. #define __getprop_h_
  14.  
  15.  
  16. #include "propvu.h"
  17.  
  18. /*********************************************************************/
  19. /*
  20.  -  CGetPropDlg Class
  21.  -
  22.  *  Purpose:
  23.  *      Defines the controls for the Get Property Dialog
  24.  *
  25.  */
  26. /*********************************************************************/
  27.  
  28. class CGetPropDlg : public CModalDialog
  29. {
  30. public:
  31.     
  32.     LPSPropTagArray m_lpPTA;
  33.     LPSPropValue    m_lpPVA;
  34.     ULONG           m_cValues;
  35.  
  36.     CGetPropDlg(CWnd  *pParentWnd)
  37.         : CModalDialog(GETPROPS, pParentWnd)
  38.     {
  39.         m_lpPTA            = NULL;
  40.         m_lpPVA            = NULL;
  41.         m_cValues          = 0;
  42.     }
  43.  
  44.     ~CGetPropDlg(); 
  45.     BOOL OnInitDialog();
  46.  
  47.     void OnDumpPropValsToFile();
  48.     void OnDumpPropTagsToFile();
  49.     
  50.     void DisplayProps();
  51.     
  52.     DECLARE_MESSAGE_MAP();    
  53.  
  54. };
  55.                          
  56.  
  57. #endif
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.