shell32: Add and register CLSID_QueryAssociations.

This commit is contained in:
Alistair Leslie-Hughes 2009-03-04 20:18:12 +11:00 committed by Alexandre Julliard
parent 8156db5894
commit 28fe361115
2 changed files with 9 additions and 0 deletions

View File

@ -658,6 +658,13 @@ static struct regsvr_coclass const coclass_list[] = {
"shell32.dll",
"Apartment"
},
{ &CLSID_QueryAssociations,
"Query file associations",
0,
NULL,
"shell32.dll",
"Apartment"
},
{ &CLSID_ControlPanel,
"Control Panel",
IDS_CONTROLPANEL,

View File

@ -123,6 +123,8 @@ DEFINE_GUID(CLSID_FolderShortcut, 0x0AFACED1, 0xE828, 0x11D1, 0x91, 0x87, 0xB5,
DEFINE_GUID(IID_IQueryAssociations, 0xc46ca590, 0x3c3f, 0x11d2, 0xbe, 0xe6, 0x00, 0x00, 0xf8, 0x05, 0xca, 0x57);
DEFINE_GUID(CLSID_QueryAssociations, 0xa07034fd, 0x6caa, 0x4954, 0xac, 0x3f, 0x97, 0xa2, 0x72, 0x16, 0xf9, 0x8a);
DEFINE_GUID(CLSID_DragDropHelper, 0x4657278a, 0x411b, 0x11d2, 0x83, 0x9a, 0x00, 0xc0, 0x4f, 0xd9, 0x18, 0xd0);
DEFINE_GUID(CLSID_AutoComplete, 0x00bb2763, 0x6a77, 0x11d0, 0xa5, 0x35, 0x00, 0xc0, 0x4f, 0xd7, 0xd0, 0x62);