📄 exchinst.h
字号:
// -----------------------------------------------------------------------------
HRESULT HrMailboxAgentExists( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszRDN); // relative distinguished name
//$--HrInstallAddressType-------------------------------------------------------
// Installs an address type object into a given site.
// -----------------------------------------------------------------------------
HRESULT HrInstallAddressType( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszDisplayName, // display name
IN LPSTR lpszCommonName, // common name
IN DWORD dwFileVersionMS, // high-order 32 bits of file version number
IN DWORD dwFileVersionLS, // low-order 32 bits of file version number
IN LPSTR lpszProxyGenDLL, // proxy generator DLL file name
IN LPSTR lpszMachineType); // machine type (e.g. "i386")
//$--HrRemoveAddressType--------------------------------------------------------
// Removes an address type from a given site.
// -----------------------------------------------------------------------------
HRESULT HrRemoveAddressType( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszMachineType); // machine type (e.g. "i386")
//$--HrAddressTypeExists--------------------------------------------------------
// Checks if an address type exists on a given site.
// -----------------------------------------------------------------------------
HRESULT HrAddressTypeExists( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszMachineType); // machine type (e.g. "i386")
//$--HrGetAddressTypeVersion----------------------------------------------------
// Get the version of an address type object in a given site.
// -----------------------------------------------------------------------------
HRESULT HrGetAddressTypeVersion( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszMachineType, // machine type (e.g. "i386")
OUT DWORD *lpdwFileVersionMS, // high-order 32 bits of file version
OUT DWORD *lpdwFileVersionLS); // low-order 32 bits of file version
//$--HrInstallAddressTemplate---------------------------------------------------
// Installs an address template into a given site.
// -----------------------------------------------------------------------------
HRESULT HrInstallAddressTemplate( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszDisplayName, // display name
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszAddressSyntax, // address syntax generator file
IN LPSTR lpszAddressType, // address type supported by this template
IN LPSTR lpszPerMessageDDT, // per-message dialog file
IN LPSTR lpszPerRecipientDDT, // per-recipient dialog file
IN LPSTR lpszAddressEntryDDT, // address entry dialog file
IN LPSTR lpszLanguage, // language supported by this template
IN LPSTR lpszHelpData16, // help data for 16-bit clients
IN LPSTR lpszHelpData32, // help data for 32-bit clients
IN LPSTR lpszHelpFile); // client help file name
//$--HrRemoveAddressTemplate----------------------------------------------------
// Removes an address template from a given site.
// -----------------------------------------------------------------------------
HRESULT HrRemoveAddressTemplate( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszAddressType, // address type supported by this template
IN LPSTR lpszLanguage); // language supported by this template
//$--HrAddressTemplateExists----------------------------------------------------
// Checks if an address template exists on a given site.
// -----------------------------------------------------------------------------
HRESULT HrAddressTemplateExists( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszAddressType, // address type supported by this template
IN LPSTR lpszLanguage); // language supported by this template
//$--HrInstallAdminExtension----------------------------------------------------
// Installs an admin extension object into a given site.
// -----------------------------------------------------------------------------
HRESULT HrInstallAdminExtension( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszDisplayName, // display name
IN LPSTR lpszCommonName, // common name
IN DWORD dwFileVersionMS, // high-order 32 bits of file version number
IN DWORD dwFileVersionLS, // low-order 32 bits of file version number
IN LPSTR lpszExtensionDLL, // admin extension DLL file name
IN LPSTR lpszMachineType); // machine type (e.g. "i386")
//$--HrRemoveAdminExtension-----------------------------------------------------
// Removes an admin extension from a given site.
// -----------------------------------------------------------------------------
HRESULT HrRemoveAdminExtension( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszMachineType); // machine type (e.g. "i386")
//$--HrAdminExtensionExists-----------------------------------------------------
// Checks if an admin extension exists on a given site.
// -----------------------------------------------------------------------------
HRESULT HrAdminExtensionExists( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszMachineType); // machine type (e.g. "i386")
//$--HrGetAdminExtensionVersion-------------------------------------------------
// Get the version of an admin extension object in a given site.
// -----------------------------------------------------------------------------
HRESULT HrGetAdminExtensionVersion( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszMachineType, // machine type (e.g. "i386")
OUT DWORD *lpdwFileVersionMS, // high-order 32 bits of file version
OUT DWORD *lpdwFileVersionLS); // low-order 32 bits of file version
//$--HrInstallContainer---------------------------------------------------------
// Installs a container in the directory.
// -----------------------------------------------------------------------------
HRESULT HrInstallContainer( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszBasePoint, // base point
IN LPSTR lpszCommonName, // common name
IN LPSTR lpszDisplayName, // display name
IN LPSTR lpszContainerInfo); // container information
//$--HrRemoveContainer----------------------------------------------------------
// Removes a container from the directory.
// -----------------------------------------------------------------------------
HRESULT HrRemoveContainer( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszBasePoint, // base point
IN LPSTR lpszCommonName); // common name
//$--HrContainerExists----------------------------------------------------------
// Checks if a container exists in the directory.
// -----------------------------------------------------------------------------
HRESULT HrContainerExists( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszBasePoint, // base point
IN LPSTR lpszCommonName); // common name
//$--HrInstallAddressTemplateContainer------------------------------------------
// Installs an address template container in the directory.
// -----------------------------------------------------------------------------
HRESULT HrInstallAddressTemplateContainer( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // site distinguished name
IN LPSTR lpszLanguage, // language supported by container
IN LPSTR lpszDisplayName); // display name
//$--HrRemoveAddressTemplateContainer-------------------------------------------
// Removes an address template container from the directory.
// -----------------------------------------------------------------------------
HRESULT HrRemoveAddressTemplateContainer( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // site distinguished name
IN LPSTR lpszLanguage); // language supported by container
//$--HrAddressTemplateContainerExists-------------------------------------------
// Checks if an address template container exists in the directory.
// -----------------------------------------------------------------------------
HRESULT HrAddressTemplateContainerExists( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // site distinguished name
IN LPSTR lpszLanguage); // language supported by container
//$--HrInstallGatewayProxy------------------------------------------------------
// Installs a gateway proxy into a given site.
// -----------------------------------------------------------------------------
HRESULT HrInstallGatewayProxy( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszProxy); // gateway proxy
//$--HrRemoveGatewayProxy-------------------------------------------------------
// Removes a gateway proxy from a given site.
// -----------------------------------------------------------------------------
HRESULT HrRemoveGatewayProxy( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // distinguished name of site
IN LPSTR lpszProxy); // gateway proxy
//$--FHasAdminPrivs-------------------------------------------------------------
// Returns TRUE if the current user is an administrator.
// -----------------------------------------------------------------------------
BOOL FHasAdminPrivs( // RETURNS: TRUE/FALSE
void); // no arguments
//$--HrInstallMessageConverter--------------------------------------------------
// Installs a message conversion DLL.
// -----------------------------------------------------------------------------
HRESULT HrInstallMessageConverter( // RETURNS: return code
IN LPSTR lpszConverter, // converter name
IN LPSTR lpszDllName, // name of conversion DLL
IN LPSTR lpszMessageClasses, // message classes
IN LPSTR lpszOptions, // options string
IN LPSTR lpszPoint); // conversion point
//$--HrRemoveMessageConverter--------------------------------------------------
// Delete a message conversion DLL.
// ----------------------------------------------------------------------------
HRESULT HrRemoveMessageConverter( // RETURNS: return code
IN LPCSTR lpszConverter); // converter name
//$--HrAdminProgramExists------------------------------------------------------
// Check if the admin program has been installed on the local computer.
// ----------------------------------------------------------------------------
HRESULT HrAdminProgramExists( // RETURNS: return code
void); // nothing
//$--HrSetGatewayBit------------------------------------------------------------
// This function will set the gateway bit on a given server.
// -----------------------------------------------------------------------------
HRESULT HrSetGatewayBit( // RETURNS: return code
IN LPSTR lpszServer, // server name
IN LPSTR lpszSiteDN, // site distinguished name
IN LPSTR lpszServerName); // server name
#ifdef __cplusplus
}
#endif
#pragma option pop /*P_O_Pop*/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -