table of contents
other versions
- wheezy 1.4.1-4
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 failIMPLEMENTATION¶
Declared in "shlwapi.h". Implemented in "dlls/shlwapi/assoc.c". Debug channel "shell".Oct 2012 | Wine API |