[COM_APITEST] Add tests for IUserNotification. CORE-13177

This commit is contained in:
Hermès Bélusca-Maïto 2018-02-07 02:14:07 +01:00
parent cd83ed1ac5
commit 70bbdca202
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 13 additions and 0 deletions

View file

@ -411,6 +411,11 @@ static KNOWN_INTERFACE KnownInterfaces[] =
{ ID_NAME(CLSID_ShellDesktop), TRUE },
{ ID_NAME(IID_IQueryContinue) },
{ ID_NAME(IID_IUserNotification) },
// { ID_NAME(IID_IUserNotificationCallback) }, // On Vista+
// { ID_NAME(IID_IUserNotification2) }, // On Vista+
{ ID_NAME(IID_IAggregateFilterCondition), TRUE },
{ ID_NAME(IID_IAliasRegistrationCallback), TRUE },
{ ID_NAME(IID_IAssociationArrayInitialize), TRUE },

View file

@ -613,6 +613,14 @@ static const CLASS_AND_INTERFACES ExpectedInterfaces[] =
{ 0xc, &IID_IServiceProvider },
}
},
{
ID_NAME(CLSID_UserNotification),
{
{ 0x0, &IID_IUserNotification },
{ 0x0, &IID_IUnknown },
// { 0x4, &IID_IUserNotification2 }, // On Vista+
}
},
};
static const INT ExpectedInterfaceCount = RTL_NUMBER_OF(ExpectedInterfaces);