include: Add CLSID_NamespaceTreeControl, CLSID_FileOpenDialog and CLSID_FileSaveDialog.

oldstable
David Hedberg 2010-07-25 17:55:00 +02:00 committed by Alexandre Julliard
parent 4faf80280c
commit d3846bb3ad
2 changed files with 43 additions and 2 deletions

View File

@ -165,8 +165,6 @@ DEFINE_GUID(VID_Tile, 0x65f125e5, 0x7be1, 0x4810, 0xba, 0x9d, 0xd2, 0x71,
DEFINE_GUID(VID_ThumbStrip, 0x8eefa624, 0xd1e9, 0x445b, 0x94, 0xb7, 0x74, 0xfb, 0xce, 0x2e, 0xa1, 0x1a);
/* IExplorerBrowser */
DEFINE_GUID(CLSID_ExplorerBrowser, 0x71F96385, 0xDDD6, 0x48D3, 0xA0, 0xC1, 0xAE, 0x06, 0xE8, 0xB0, 0x55, 0xFB);
DEFINE_GUID(EP_NavPane, 0xCB316B22, 0x25F7, 0x42B8, 0x8A, 0x09, 0x54, 0x0D, 0x23, 0xA4, 0x3C, 0x2F);
DEFINE_GUID(EP_Commands,0xD9745868, 0xCA5F, 0x4A76, 0x91, 0xCD, 0xF5, 0xA1, 0x29, 0xFB, 0xB0, 0x76);
DEFINE_GUID(EP_Commands_Organize, 0x72E81700, 0xE3EC, 0x4660, 0xBF, 0x24, 0x3C, 0x3B, 0x7B, 0x64, 0x88, 0x06);

View File

@ -2801,3 +2801,46 @@ interface IFileDialogControlEvents : IUnknown
[in] IFileDialogCustomize *pfdc,
[in] DWORD dwIDCtl);
}
/*****************************************************************************
* ShellObjects typelibrary
*/
[
uuid(50A7E9B1-70EF-11D1-B75A-00A0C90564FE),
lcid(0x0000),
version(1.0)
]
library ShellObjects
{
[
uuid(71F96385-DDD6-48D3-A0C1-AE06E8B055FB)
]
coclass ExplorerBrowser
{
interface IExplorerBrowser;
}
[
uuid(DC1C5A9C-E88A-4DDE-A5A1-60F82A20AEF7)
]
coclass FileOpenDialog
{
interface IFileOpenDialog;
}
[
uuid(C0B4E2F3-BA21-4773-8DBA-335EC946EB8B)
]
coclass FileSaveDialog
{
interface IFileSaveDialog;
}
[
uuid(AE054212-3535-4430-83ED-D501AA6680E6)
]
coclass NamespaceTreeControl
{
interface INameSpaceTreeControl2;
}
}