__VSPROFILEPATHRESOLVERFLAGS Enumeration
Visual Studio 2015
IVsPathVariableResolver methods.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| VSPPR_None | Use the standard behavior. | |
| VSPPR_OnlyForProfiles | Copies the inparm to the outparm. |
The VSPPR_OnlyForProfiles member specifies that IVsPathVariableResolver code copies the inparam to the outparam with no conversion, if it is not in the middle of reading or writing a vssettings file. This enables automation interfaces to use the same input/output as earlier versions when they are called from automation code.
From vsshell80.idl:
enum __VSPROFILEPATHRESOLVERFLAGS { VSPPR_None = 0x00000000, VSPPR_OnlyForProfiles = 0x00000001 }; typedef DWORD VSPROFILEPATHRESOLVERFLAGS;
Show: