⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mbxdata.h

📁 希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!
💻 H
字号:
// -mbxdata.h-------------------------------------------------------------------
// Defines the configuration extension data for the Sample Mailbox Extension.
//
// Copyright 1986 - 1998 Microsoft Corporation.  All Rights Reserved.
// -----------------------------------------------------------------------------

#ifndef _MBXDATA_H_
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
#define _MBXDATA_H_

// Name of cfg extension data blob.
#define MBXBLOBNAME     "MBXData"
#define MBXBLOBNAMEW    L"MBXData"

// -----------------------------------------------------------------------------
// Index of properties within the extension data blob.
//
// NOTE: If you add a property, add it to the end of the array.  The MBXAdmin 
//       code is designed to handle a growing property array with ease.  If you 
//       remove one it would be easier to just make it an unused place holder.
// -----------------------------------------------------------------------------

typedef enum {          
    // PT_STRING8
    IDX_PASSWORD,       

    // Total number of properties in Extension Data Blob.
    // Keep this one at the very end of list.
    MBXDATA_PROP_COUNT
} PropIndex;

// -----------------------------------------------------------------------------

#pragma option pop /*P_O_Pop*/
#endif // _MBXDATA_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -