[COM_APITEST] Add IACLCustomMRU
authorMark Jansen <mark.jansen@reactos.org>
Sat, 16 Dec 2017 13:50:49 +0000 (14:50 +0100)
committerMark Jansen <mark.jansen@reactos.org>
Mon, 18 Dec 2017 22:17:17 +0000 (23:17 +0100)
modules/rostests/apitests/com/browseui.c
modules/rostests/apitests/com/com_apitest.c
modules/rostests/apitests/com/com_apitest.h

index 253cbd0..6550ffb 100644 (file)
@@ -18,6 +18,7 @@ static const CLASS_AND_INTERFACES ExpectedInterfaces[] =
             {    0x0,   &IID_IEnumString },
             {    0x0,       &IID_IUnknown },
             {    0x4,   &IID_IACList },
+            {    0x8,   &IID_IACLCustomMRU },
         },
     },
     {
@@ -33,6 +34,7 @@ static const CLASS_AND_INTERFACES ExpectedInterfaces[] =
             {    0x0,   &IID_IEnumString },
             {    0x0,       &IID_IUnknown },
             {    0x4,   &IID_IACList },
+            {    0x8,   &IID_IACLCustomMRU },
         },
     },
     {
index 1add983..1627084 100644 (file)
@@ -48,6 +48,7 @@ static KNOWN_INTERFACE KnownInterfaces[] =
     { ID_NAME(IID_IAccessibleHandler)                },
     { ID_NAME(IID_IAccessControl),              TRUE },
     { ID_NAME(IID_IAccessor)                         },
+    { ID_NAME(IID_IACLCustomMRU)                     },
     { ID_NAME(IID_IActiveDesktop),              TRUE },
     { ID_NAME(IID_IActiveDesktopP),             TRUE },
     { ID_NAME(IID_IActionProgress)                   },
index 8820da2..715213a 100644 (file)
@@ -107,6 +107,7 @@ DEFINE_GUID(CLSID_AttachmentServices,      0x4125dd96, 0xe03a, 0x4103, 0x8f, 0x7
 DEFINE_GUID(IID_IADesktopP2,               0xb22754e2, 0x4574, 0x11d1, 0x98, 0x88, 0x00, 0x60, 0x97, 0xde, 0xac, 0xf9);
 DEFINE_GUID(IID_IAccessControl,            0xeedd23e0, 0x8410, 0x11ce, 0xa1, 0xc3, 0x08, 0x00, 0x2b, 0x2b, 0x8d, 0x8f);
 DEFINE_GUID(IID_IAccessor,                 0x0c733a8c, 0x2a1c, 0x11ce, 0xad, 0xe5, 0x00, 0xaa, 0x00, 0x44, 0x77, 0x3d);
+DEFINE_GUID(IID_IACLCustomMRU,             0xf729fc5e, 0x8769, 0x4f3e, 0xbd, 0xb2, 0xd7, 0xb5, 0x0f, 0xd2, 0x27, 0x5b);
 DEFINE_GUID(IID_IActionProgress,           0x49ff1173, 0xeadc, 0x446d, 0x92, 0x85, 0x15, 0x64, 0x53, 0xa6, 0x43, 0x1c);
 DEFINE_GUID(IID_IActionProgressDialog,     0x49ff1172, 0xeadc, 0x446d, 0x92, 0x85, 0x15, 0x64, 0x53, 0xa6, 0x43, 0x1c);
 DEFINE_GUID(IID_IActiveDesktop,            0xf490eb00, 0x1240, 0x11d1, 0x98, 0x88, 0x00, 0x60, 0x97, 0xde, 0xac, 0xf9);