Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
785 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. admin.hxx
  5. Abstract:
  6. This module contains code for doing admin rpcs
  7. Author:
  8. Todd Christensen (ToddCh) 28-Apr-1996
  9. Revision History:
  10. --*/
  11. #if !defined(_ADMIN_HXX_)
  12. #define _ADMIN_HXX_
  13. BOOL ConvertSmtpConfigToRpc(LPSMTP_CONFIG_INFO *ppConfig, PSMTP_SERVER_INSTANCE pInstance);
  14. void FreeRpcSmtpConfig(LPSMTP_CONFIG_INFO pConfig);
  15. BOOL ConvertSmtpRoutingListToRpc(LPSMTP_CONFIG_ROUTING_LIST *ppRoutingList, PSMTP_SERVER_INSTANCE pInstance);
  16. void FreeRpcSmtpRoutingList(LPSMTP_CONFIG_ROUTING_LIST pRoutingList);
  17. // Removed by KeithLau on 7/18/96
  18. // BOOL ConvertSmtpDomainListToRpc(LPSMTP_CONFIG_DOMAIN_LIST *ppDomainList);
  19. // void FreeRpcSmtpDomainList(LPSMTP_CONFIG_DOMAIN_LIST pDomainList);
  20. #endif