VixHandle
VixVM_OpenUrlInGuest(VixHandle vmHandle,
const char *url,
int windowState,
VixHandle propertyListHandle,
VixEventProc *callbackProc,
void *clientData);
This function is deprecated. This function opens a browser window on the specified URL in the guest operating system.
jobHandle = VixVM_OpenUrlInGuest(vmHandle,
"http://www.vmware.com",
0,
VIX_INVALID_HANDLE, // propertyListHandle,
NULL, // callbackProc,
NULL); // clientData
err = VixJob_Wait(jobHandle, VIX_PROPERTY_NONE);
if (VIX_OK != err) {
// Handle the error...
}