reactos/modules/rostests/apitests/shdocvw/testlist.c
Katayama Hirofumi MZ 1961d708e7
[SHDOCVW][SHDOCVW_APITEST] Implement MRU List for Shell Bag, Part 3 (#5646)
Follow-up to #5634.
- Implement CMruBase::_UseEmptySlot.
- Implement CMruLongList and CMruShortList.
- Add CMruClassFactory class and modify
  DllGetClassObject function by using it.
- Add shdocvw_apitest.exe.
CORE-9283
2023-09-12 06:01:09 +09:00

11 lines
165 B
C

#define STANDALONE
#include <apitest.h>
extern void func_MRUList(void);
const struct test winetest_testlist[] =
{
{ "MRUList", func_MRUList },
{ 0, 0 }
};