mlabs wrote: > thanks Mark > > Q: can extensions be implemented in C++ as dlls? all I see in those > docs after a quick scan is talk of javascript...
You can write an XPCOM component in C++ and include it in your extension, though you will still need the extension packaging files such as install.rdf. However, I would strongly suggest that you use JS if you can: it is much easier to write memory-safe and correct code in JS than in C++, and most DOM manipulations can be easily accomplished using JS. --BDS _______________________________________________ dev-tech-xpcom mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-xpcom
