ADMIN_AdministratorConnections

The ADMIN_AdministratorConnections structure contains pointers that can be used by an Administrator extension DLL.

Quick Info

Header file: ADMINEXT.H

typedef struct
  {
  IMAPISession *  psesMapi;
  IAddrBook *     pab;
  IABContainer *  pabContainer;
  }  ADMIN_AdministratorConnections;  
 

Members

psesMapi
Points to an IMAPISession interface, which is a MAPI session.
pab
Points to an IAddrBook interface, which is an address book.
pabContainer
Points to an IABContainer interface, which is an address book container.

Remarks

The ADMIN_AdministratorConnections structure is passed to the Administrator extension DLL when it is initialized with the ADMIN_Initialize function.

For additional information on this structure, see Initializing Connections with ADMIN_Initialize. For information on the IABContainer, IAddrBook, and IMAPISession interfaces, see the MAPI Programmer’s Reference

See Also

ADMIN_Initialize