home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / mbxdata.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.3 KB  |  36 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. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  9. #define _MBXDATA_H_
  10.  
  11. // Name of cfg extension data blob.
  12. #define MBXBLOBNAME     "MBXData"
  13. #define MBXBLOBNAMEW    L"MBXData"
  14.  
  15. // -----------------------------------------------------------------------------
  16. // Index of properties within the extension data blob.
  17. //
  18. // NOTE: If you add a property, add it to the end of the array.  The MBXAdmin 
  19. //       code is designed to handle a growing property array with ease.  If you 
  20. //       remove one it would be easier to just make it an unused place holder.
  21. // -----------------------------------------------------------------------------
  22.  
  23. typedef enum {          
  24.     // PT_STRING8
  25.     IDX_PASSWORD,       
  26.  
  27.     // Total number of properties in Extension Data Blob.
  28.     // Keep this one at the very end of list.
  29.     MBXDATA_PROP_COUNT
  30. } PropIndex;
  31.  
  32. // -----------------------------------------------------------------------------
  33.  
  34. #pragma option pop /*P_O_Pop*/
  35. #endif // _MBXDATA_H_
  36.