Searched defs:ppszHostVersion (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibHostVersion.cpp52 * @param ppszHostVersion Receives pointer of allocated version string.
61 VBGLR3DECL(int) VbglR3HostVersionCheckForUpdate(uint32_t u32ClientId, bool *pfUpdate, char **ppszHostVersion, char **ppszGuestVersion) argument
65 AssertPtr(ppszHostVersion);
68 *ppszHostVersion = NULL;
102 rc = VbglR3GuestPropReadValueAlloc(u32ClientId, "/VirtualBox/HostInfo/VBoxVer", ppszHostVersion);
109 LogFlow(("Host version: %s\n", *ppszHostVersion));
117 if (strcmp(*ppszHostVersion, pszLastCheckedHostVersion) == 0)
141 if (RTStrVersionCompare(*ppszHostVersion, *ppszGuestVersion) > 0) /* Is host version greater than guest add version? */
156 if (*ppszHostVersion)
158 VbglR3GuestPropReadValueFree(*ppszHostVersion);
[all...]

Completed in 52 milliseconds