Files
Hermès Bélusca-Maïto cc1deb2902 [MOUNTMGR_APITEST] Add tests for mountmgr IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH(S) (#6990)
These tests verify the output of IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATH,
IOCTL_MOUNTMGR_QUERY_DOS_VOLUME_PATHS and IOCTL_MOUNTMGR_QUERY_POINTS,
as well as their consistency.

References:
https://www.osronline.com/article.cfm%5Eid=107.htm
https://community.osr.com/t/obtaining-volume-name-with-deviceobject/15121/3
2025-01-21 19:15:57 +01:00

14 lines
279 B
C

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