私は持っている
TCHAR szPIDKEY[255];//for product id
DWORD dwLen = sizeof(szPIDKEY)/sizeof(szPIDKEY[0]); //calculating the size of the key
UINT res = MsiGetProperty(hInstall, _T("PIDKEY"), szPIDKEY, &dwLen);
if(res != ERROR_SUCCESS)
{
//fail the installation
return 1;
}
キー文字列は xxxx-xxxx-xxxx-xxxx のように見えます。TCHAR の最後の 4 つの xxxx のみを取得したいのですが、どうすればよいですか?
ありがとう