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