IVsSolution2.GetProjectTypeGuid(UInt32, String, Guid) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the project type, given a GUID.
public:
int GetProjectTypeGuid(System::UInt32 dwReserved, System::String ^ pszMkProject, [Runtime::InteropServices::Out] Guid % pguidProjectType);
public int GetProjectTypeGuid (uint dwReserved, string pszMkProject, out Guid pguidProjectType);
abstract member GetProjectTypeGuid : uint32 * string * Guid -> int
Public Function GetProjectTypeGuid (dwReserved As UInteger, pszMkProject As String, ByRef pguidProjectType As Guid) As Integer
Parameters
- dwReserved
- UInt32
[in] Reserved for future use.
- pszMkProject
- String
[in] Pointer to the path of the project.
- pguidProjectType
- Guid
[out, retval] Pointer to the project type.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolution2::GetProjectTypeGuid(
[in] DWORD dwReserved,
[in] LPCOLESTR pszMkProject,
[out, retval] GUID *pguidProjectType
);