It looks like there is a recommended way of loading dependent librarys
see
http://developer.mozilla.org/en/docs/Using_Dependent_Libraries_In_Extension_Components
___
dev-embedding mailing list
dev-embedding@lists.mozilla.org
https://lists.mozilla.org/li
The never ending "please, please please" help me I am so lost and
confused. Okay, Now I need to replace all of my STL data structures
with something Mozilla / FF compatible. I need to replace vector.
Where is the doc on the cross platform internal data structures that
are recommended?
if you go here
http://developer.mozilla.org/en/docs/XPCOM:Strings
you will see documentation on mozilla / FF strings. I am wondering if
anyone has done a cross reference from any of the on the C++ libray std
string and how you could convert to mozilla strings. For example
nsString or nsCString
Follow up to removing dependency on CPP run time, msvcprt.lib. In my
case, I need to remove my dependency on the std string and vector code.
If there is anyone who has gone through the process of converting from
the "STD" CPP classes to the FF or mozilla codebase, I would offer my
eternal appreci
I have a similar issue, I have an extension that depends on other DLLs
that depend on msvcp71.dll and msvcr71.dll.
I build FF the standard way.
I build my extension with lib paths to what I need
ifeq ($(MOZ_DEBUG), 1)
GJCRT = $(GJLIBPATH)msvcrtd.lib
GJCPRT = $(GJLIBPATH)msvcprtd.lib
else
GJCRT