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

  1. /*********************************************************************/
  2. /*
  3.  -  NamesIDs.h
  4.  -  Copyright (C) 1995 Microsoft Corporation
  5.  -
  6.  *  Purpose:
  7.  *      Defines id's, function prototypes, classes for Names to IDs mapping Dialog class
  8.  *
  9.  */
  10. /*********************************************************************/
  11.  
  12. #ifndef __namesids_h_
  13. #define __namesids_h_
  14.  
  15.  
  16. #include "propvu.h"
  17.  
  18. /*********************************************************************/
  19. /*
  20.  -  CNamesIDsDlg Class
  21.  -
  22.  *  Purpose:
  23.  *      Defines the controls for the Names To IDs/IDs to Names mapping
  24.  */
  25. /*********************************************************************/
  26.  
  27. class CNamesIDsDlg : public CModalDialog
  28. {
  29. public:
  30.  
  31.     LPSPropTagArray     m_lpPTA;
  32.     LPGUID              m_lpPropSetGuid;
  33.     
  34.     LPMAPINAMEID   FAR *m_lppMAPINameID;
  35.     ULONG               m_ulPropNames;
  36.  
  37.     CNamesIDsDlg(CWnd  *pParentWnd)
  38.         : CModalDialog(NAMESIDS, pParentWnd)
  39.     {
  40.         m_lpPTA             = NULL;
  41.         m_lppMAPINameID     = NULL;    
  42.         m_ulPropNames       = 0;
  43.     }
  44.  
  45.     ~CNamesIDsDlg();    
  46.  
  47.     BOOL OnInitDialog();
  48.  
  49.     void DisplayNamesIDs();
  50. };
  51.  
  52. #endif
  53.  
  54.  
  55.  
  56.  
  57.