Re: [webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Justin Haygood
Or maybe even xdg-open, which opens a URL in the user's preferred web browser - Original Message - From: "Pierre-Luc Beaudoin" <[EMAIL PROTECTED]> To: "Ajay Gautam" <[EMAIL PROTECTED]> Cc: Sent: Tuesday, November 11, 2008 8:09 AM Subject: Re: [w

Re: [webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Pierre-Luc Beaudoin
Le mardi 11 novembre 2008 à 14:17 +0530, Ajay Gautam a écrit : > I want to launch my webkit browser from my c code as following: GtkLauncher is not a real browser, you should rather use Epiphany or Midori, which are much more feature complete. -- Pierre-Luc Beaudoin Collabora __

Re: [webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Mark Rowe
On Nov 11, 2008, at 12:47 AM, Ajay Gautam wrote: Hi , I want to launch my webkit browser from my c code as following: pId = fork(); if(pId) { execl("/GtkLauncher","sh","-c",NULL); } but its not launching . Please can anybody tell me that where i am doing wrong?

[webkit-dev] launch webkit browser from my c code

2008-11-11 Thread Ajay Gautam
Hi , I want to launch my webkit browser from my c code as following: pId = fork(); if(pId) { execl("/GtkLauncher","sh","-c",NULL); } but its not launching . Please can anybody tell me that where i am doing wrong? Thanx Ajay _