home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / mbxdata.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  1KB  |  34 lines

  1. // -mbxdata.h-------------------------------------------------------------------
  2. // Defines the configuration extension data for the Sample Mailbox Extension.
  3. //
  4. // Copyright 1986 - 1998 Microsoft Corporation.  All Rights Reserved.
  5. // -----------------------------------------------------------------------------
  6.  
  7. #ifndef _MBXDATA_H_
  8. #define _MBXDATA_H_
  9.  
  10. // Name of cfg extension data blob.
  11. #define MBXBLOBNAME     "MBXData"
  12. #define MBXBLOBNAMEW    L"MBXData"
  13.  
  14. // -----------------------------------------------------------------------------
  15. // Index of properties within the extension data blob.
  16. //
  17. // NOTE: If you add a property, add it to the end of the array.  The MBXAdmin 
  18. //       code is designed to handle a growing property array with ease.  If you 
  19. //       remove one it would be easier to just make it an unused place holder.
  20. // -----------------------------------------------------------------------------
  21.  
  22. typedef enum {          
  23.     // PT_STRING8
  24.     IDX_PASSWORD,       
  25.  
  26.     // Total number of properties in Extension Data Blob.
  27.     // Keep this one at the very end of list.
  28.     MBXDATA_PROP_COUNT
  29. } PropIndex;
  30.  
  31. // -----------------------------------------------------------------------------
  32.  
  33. #endif // _MBXDATA_H_
  34.