Fix bustage.

This commit is contained in:
jeff.dyer%compilercompany.com 2000-08-13 15:07:42 +00:00
parent 1c64747083
commit 749a05e9ee
2 changed files with 8 additions and 0 deletions

View File

@ -399,6 +399,11 @@ NS_METHOD MRJPlugin::GetJavaWrapper(JNIEnv* env, jint jsobj, jobject *jobj)
return NS_OK;
}
NS_METHOD MRJPlugin::UnwrapJavaWrapper(JNIEnv* jenv, jobject jobj, jint* obj)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_METHOD MRJPlugin::GetJavaVM(JavaVM* *result)
{
*result = NULL;

View File

@ -234,6 +234,9 @@ public:
Boolean inPluginThread();
NS_IMETHOD
UnwrapJavaWrapper(JNIEnv* jenv, jobject jobj, jint* obj);
private:
nsIJVMManager* mManager;
nsIThreadManager* mThreadManager;