IWorkspaceResTypeRegistry::GetResourceTypeInfo method (workspaceax.h)

Retrieves information about a third-party file name extension that is registered with the RemoteApp and Desktop Connections runtime.

Syntax

HRESULT GetResourceTypeInfo(
  [in]          VARIANT_BOOL fMachineWide,
  [in]          BSTR         bstrFileExtension,
  [out, retval] BSTR         *pbstrLauncher
);

Parameters

[in] fMachineWide

Specifies whether the resource is registered per user or per machine.

VARIANT_TRUE

The resource is registered per machine.

VARIANT_FALSE

The resource is registered per user.

[in] bstrFileExtension

A string that contains the file name extension to retrieve the information for. The period must be included in the extension, for example, ".txt".

[out, retval] pbstrLauncher

A pointer to a BSTR variable that receives the fully qualified path and file name of the application to use to launch files with the extension specified by the bstrFileExtension parameter.

Return value

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

Requirements

Requirement Value
Minimum supported client Windows 7
Minimum supported server Windows Server 2008 R2
Target Platform Windows
Header workspaceax.h
DLL TSWorkspace.dll

See also

IWorkspaceResTypeRegistry