Waqas wrote:
Try including nsIServiceManagerUtils.hi am getting an error of "do_GetService undeclared identifier" i am usnig gecko-sdk 1.7a. can somebody help me on this ?
Doug _______________________________________________ Mozilla-xpcom mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-xpcom
nsIServiceManagerUtils.h is not included in the Gecko SDK. if you are building your code purely against the Gecko SDK, then you cannot use do_GetService. you'll need to use NS_GetServiceManager, and then call methods on nsIServiceManager.
-Darin _______________________________________________ Mozilla-xpcom mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-xpcom
