Hi,
Has anyone built python xpcom with the gran paradiso alpha 1 code base?
I am getting compile error with nsXPTCStubBase class.
--Kannan.
___
dev-embedding mailing list
dev-embedding@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-embedding
On Dec 19, 3:58 pm, Boris Zbarsky <[EMAIL PROTECTED]> wrote:
> Andrei Korostelev wrote:
> > // I set up the content listener: attempt 1
> > var wnd =
> > window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
>
> > .getInterface(Components.interfaces.nsIWebNavigation)
>
> > .QueryInterf
We can crack or emulate any protection type: Dongle,
Hardlock, Hasp, Serial, Password, Hasp4, Flexlm, Sentinel,
Wibu, Eutron Smartkey, Hasphl, Proteq, All the Protections!!
http://ecm2001.1500mb.com
http://shoemaster.275mb.com
If you have some protected program
Andrei Korostelev wrote:
// I set up the content listener: attempt 1
var wnd =
window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIWebNavigation)
.QueryInterface(Components.interfaces.nsIDocShell)
.QueryInterface(Components.interfaces.nsIIn
I need a Firefox extension which performs some actions (redirect and
others) before the URL is open. Simply using Mozilla's
window.addEventListener("load", Handler, ..) does not work since I have
to catch the URL *before* the page is loaded. Not too exotic task on my
thought. I also read a couple o
I found it myself
here is the html code
function bob(param1)
{
document.location.href=param1;
//return 123;
}
BOB href
BOB onclick
and the C++ code
nsCOMPtr
theGlobalObjectOwner(do_GetInterface(mWebBrowser));
if (theGlobalObjectOwner) {
JSFunction* jsf;