mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
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
14 lines
279 B
C
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 }
|
|
};
|
|
|