Scroll to navigation

AssocCreate(3w) Wine API AssocCreate(3w)

NAME

AssocCreate (SHLWAPI.@)

SYNOPSIS

HRESULT AssocCreate
(
CLSID clsid,
REFIID refiid,
void** lpInterface
)
 

DESCRIPTION

Create a new IQueryAssociations object.
 

PARAMS

clsid [In] CLSID of object.
refiid [In] REFIID of interface.
lpInterface [Out] Destination for the created IQueryAssociations object.
 

RETURNS

Success: S_OK. lpInterface contains the new object.
Failure: An HRESULT error code indicating the error.
 

NOTES

clsid must be equal to CLSID_QueryAssociations and refiid must be equal to IID_IQueryAssociations, IID_IUnknown or this function will fail
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/assoc.c".
Debug channel "shell".
Oct 2012 Wine API