This topic has not yet been rated - Rate this topic

RegisterAuthoringClientFunctionType function pointer

Defines a pointer to an application-defined function in a dynamic-link library (DLL) that will be used as the authoring binary. When the app host starts in authoring mode, this function is called to initialize the authoring binary.

Syntax


typedef HRESULT ( CALLBACK *RegisterAuthoringClientFunctionType)(
  _In_  IWebApplicationAuthoringMode *authoringModeObject,
  _In_  IWebApplicationHost *host
);

Parameters

authoringModeObject [in]

Type: IWebApplicationAuthoringMode*

An object that provides a path to the authoring binary.

host [in]

Type: IWebApplicationHost*

The WWAHost.

Return value

Type: HRESULT

If this function pointer succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Minimum supported client

Windows 8 [desktop apps only]

Minimum supported server

Windows Server 2012 [desktop apps only]

Header

Webapplication.h

See also

UnregisterAuthoringClientFunctionType

 

 

Build date: 10/27/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.