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

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