raven wrote: > I found out that in order to use the xpcomproxy component in c++, i need the > nsIProxyObjectManager header and the actual component implementing it. > However, these are not present in the standard gecko-sdk which i'm using now > to develop my component on a windows platform. Someone suggested that i > should perform a build for mozilla but i'm looking for a less cumbersome > solution if present.
The Gecko SDK contains only frozen interfaces and headers. Because nsIProxyObjectManager is not a frozen interface, you will need to be careful with versioning and future versions of the app. You can take the nsIProxyObjectManager.idl file from the appropriate source tarball of mozilla and compile it into a header using xpidl. --BDS _______________________________________________ dev-tech-xpcom mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-xpcom
