Exemplo n.º 1
0
void CExtManager::navigate(const wchar_t* szUrl)
{
    rho_webview_navigate( convertToStringA(szUrl).c_str(), -1 );
}
Exemplo n.º 2
0
RHO_GLOBAL void rho_map_location(char* query)
{
    rho::String url = "http://maps.google.com/?";
    url += query;
    rho_webview_navigate(url.c_str(), 0);
}