Contains information retrieved by the WIMGetMountedImages function.

typedef struct _WIM_MOUNT_LIST
{
	WCHAR  WimPath[MAX_PATH];
	WCHAR  MountPath[MAX_PATH]
	DWORD  ImageIndex;
	BOOL   MountedForRW;
} 
  WIM_MOUNT_LIST, *PWIM_MOUNT_LIST, *LPWIM_MOUNT_LIST,
  WIM_MOUNT_INFO_LEVEL0, *PWIM_MOUNT_INFO_LEVEL0, LPWIM_MOUNT_INFO_LEVEL0;

Parameters

WimPath

Specifies the full path to the .wim file.

MountPath

Specifies the full path to the directory where the image is mounted.

ImageIndex

Specifies the image index within the .wim file specified in WimPath.

MountedForRW

Specifies if the image was mounted with support for saving changes.

See Also