2.2.3.4 NtmsMountPriority Enumeration

The NtmsMountPriority enumeration defines the priority of mount requests.

 enum NtmsMountPriority
 {
   NTMS_PRIORITY_DEFAULT = 0,
   NTMS_PRIORITY_HIGHEST = 15,
   NTMS_PRIORITY_HIGH = 7,
   NTMS_PRIORITY_NORMAL = 0,
   NTMS_PRIORITY_LOW = -7,
   NTMS_PRIORITY_LOWEST = -15
 };

NTMS_PRIORITY_DEFAULT:  Specify the default priority.

NTMS_PRIORITY_HIGHEST:  Specify the highest priority.

NTMS_PRIORITY_HIGH:  Specify mounts that are time-critical.

NTMS_PRIORITY_NORMAL:  Specify mounts that are not time-critical.

NTMS_PRIORITY_LOW:  Specify that mounts be performed as a background activity.

NTMS_PRIORITY_LOWEST:  Specify the lowest priority.