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

/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibHostVersion.cpp56 * @param ppszGuestVersion Receives pointer of allocated revision string.
61 VBGLR3DECL(int) VbglR3HostVersionCheckForUpdate(uint32_t u32ClientId, bool *pfUpdate, char **ppszHostVersion, char **ppszGuestVersion) argument
66 AssertPtr(ppszGuestVersion);
69 *ppszGuestVersion = NULL;
131 rc = VbglR3GetAdditionsVersion(ppszGuestVersion, NULL /* Extended version not needed here */,
141 if (RTStrVersionCompare(*ppszHostVersion, *ppszGuestVersion) > 0) /* Is host version greater than guest add version? */
161 if (*ppszGuestVersion)
163 VbglR3GuestPropReadValueFree(*ppszGuestVersion);
164 *ppszGuestVersion = NULL;

Completed in 42 milliseconds