// ntifs.h
typedef enum {
NetworkOpenLocationAny,
NetworkOpenLocationRemote,
NetworkOpenLocationLoopback
} NETWORK_OPEN_LOCATION_QUALIFIER;
View the official Windows Driver Kit DDI referenceNo description available.
The NETWORK_OPEN_LOCATION_QUALIFIER enumeration type contains values that identify the kind of location restriction to attach to a file.
NetworkOpenLocationAnyIndicates that the file has no location restrictions. That is, a caller can open the file whether it resides remotely or locally.
NetworkOpenLocationRemoteIndicates that the file is restricted to only opening remotely. That is, a caller can only open the file if it resides on a different computer from the computer that the caller resides on.
NetworkOpenLocationLoopbackIndicates that the file is restricted to only opening locally. That is, a caller can only open the file if it resides on the same computer as the caller.