自己做的一个浏览器~~大家请看看~如果合意给个彩头

源代码在线查看: slgp_flags.cs

软件大小: 470 K
上传用户: philipsx
关键词: 浏览器
下载地址: 免注册下载 普通下载 VIP

相关代码

				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
					}
				}
							

相关资源