2

I've seen several examples, but for libraries with Gecko 1.9.2 or earlier, how do I create a plugin for Firefox 5 in C++?

The strange thing is that the official website just to gives me examples for Firefox v. 1.5 through v. 3.6 which is why I have experienced some difficulty.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
luinix
  • 21
  • 1
  • I will warn you now go the javascript route. The build process for a c++ plugin is a nightmare and will ONLY work with the version that it is compiled against. (At least major version). But this is also my opinion so take it with a grain of salt. – Jesus Ramos Jul 21 '11 at 00:48
  • the problem is I have a library in C and I have to use – luinix Jul 21 '11 at 01:11
  • I would give you a pat on the back and a cookie if I could right now. – Jesus Ramos Jul 21 '11 at 01:30

1 Answers1

1

You're better off using ctypes.

Neil
  • 54,642
  • 8
  • 60
  • 72