SLGP_FLAGS (Enums)
Last changed: -192.175.84.19

.
Summary
TODO - a short description

C# Definition:

/// <summary>IShellLink.GetPath fFlags: Flags that specify the type of path information to retrieve</summary>
[Flags()]
enum SLGP_FLAGS {
    /// <summary>Retrieves the standard short (8.3 format) file name</summary>
    SLGP_SHORTPATH = 0x1,
    /// <summary>Retrieves the Universal Naming Convention (UNC) path name of the file</summary>
    SLGP_UNCPRIORITY = 0x2,
    /// <summary>Retrieves the raw path name. A raw path is something that might not exist and may include environment variables that need to be expanded</summary>
    SLGP_RAWPATH = 0x4
}

VB Definition:

Enum SLGP_FLAGS
   TODO
End Enum

Notes:

None.

Documentation
SLGP_FLAGS on MSDN