Lines Matching refs:sz
36 DWORD sz = 0; in GetOfficeInstallationPath() local
39 if (MsiGetProperty(handle, TEXT("INSTALLLOCATION"), dummy, &sz) == ERROR_MORE_DATA) in GetOfficeInstallationPath()
41 sz++; // space for the final '\0' in GetOfficeInstallationPath()
42 DWORD nbytes = sz * sizeof(TCHAR); in GetOfficeInstallationPath()
45 MsiGetProperty(handle, TEXT("INSTALLLOCATION"), buff, &sz); in GetOfficeInstallationPath()
54 DWORD sz = 0; in GetOfficeProductName() local
57 if (MsiGetProperty(handle, TEXT("ProductName"), dummy, &sz) == ERROR_MORE_DATA) in GetOfficeProductName()
59 sz++; // space for the final '\0' in GetOfficeProductName()
60 DWORD nbytes = sz * sizeof(TCHAR); in GetOfficeProductName()
63 MsiGetProperty(handle, TEXT("ProductName"), buff, &sz); in GetOfficeProductName()
72 DWORD sz = 0; in GetQuickstarterLinkName() local
75 if (MsiGetProperty(handle, TEXT("Quickstarterlinkname"), dummy, &sz) == ERROR_MORE_DATA) in GetQuickstarterLinkName()
77 sz++; // space for the final '\0' in GetQuickstarterLinkName()
78 DWORD nbytes = sz * sizeof(TCHAR); in GetQuickstarterLinkName()
81 MsiGetProperty(handle, TEXT("Quickstarterlinkname"), buff, &sz); in GetQuickstarterLinkName()
84 else if (MsiGetProperty(handle, TEXT("ProductName"), dummy, &sz) == ERROR_MORE_DATA) in GetQuickstarterLinkName()
86 sz++; // space for the final '\0' in GetQuickstarterLinkName()
87 DWORD nbytes = sz * sizeof(TCHAR); in GetQuickstarterLinkName()
90 MsiGetProperty(handle, TEXT("ProductName"), buff, &sz); in GetQuickstarterLinkName()