I've
been trying to change the xul files when it comes to dissapearing the tool bars
but I make a make and run mozilla executable but no changes take
effect.
I am
forgetting something?
Thanks,
Fatima
-----Original Message-----If it's a C++ file which is part of your own project please refer to you compilers documentation on how to compile.
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 10, 2001 4:27 PM
To: CORONAFATIMA (HP-Boiseex1)
Cc: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'
Subject: Re: Compiling !
If the file in question is from a Mozilla project you should be able to compile it by running the makefile i.e. nmake -f makefile.win (under Windows) in the appropriate directory.
CORONA,FATIMA (HP-Boise,ex1) wrote:
[EMAIL PROTECTED]" type="cite">I just modified a C++ file. how do I compile and run ?
Fatima.
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 10, 2001 9:55 AM
To: CORONAFATIMA (HP-Boiseex1)
Cc: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'
Subject: Re: Rolling my own browser
NS_InitEmbedding() and NS_TermEmbedding() are just two of the required
functions which embeddors of Gecko need to call in their apps. Of course,
you need to call on the (many) other Gecko interfaces if you want do
anything useful, ! like creating a window which can render HTML content,
loading a URL into it etc.
1. Please compile and run mfcembed or winembed
cd embedding/tests/mfcembed
nmake -f makefile.win
cd embedding/tests/winembed
nmake -f makefile.win
2. Run one of these two programs
cd $(DIST)/bin
mfcembed
This should give you a feel for what an embedding app is all about.
Now, please search for NS_InitEmbedding() in embedding/tests/mfcembed or
winembed to see where they are being invoked. Also you should be able to
step thru' the code in a debugger to see how these and other Gecko
interfaces are invoked.
Chak
CORONA,FATIMA (HP-Boise,ex1) wrote:I am looking at the page
http://www.mozilla.org/projects/embedding/howto/initializations.html
and from what I understood. The two functions you give:
nsresult NS_InitEmbedding(const char *aPath);
nsresult NS_TermEmbedding();
do I just place them on my newly created package, so it can be linked totherest of mozilla ?
any special formatting ?
Will this do the rest for me? or do I still need xtra code in order to take
care of XPCOM and NS InitXPCOM?
Thanks,
Fatima
