msxml3: Implement DllUnregisterServer.

This commit is contained in:
Hans Leidekker 2006-02-14 10:38:05 +01:00 committed by Alexandre Julliard
parent 0dec5281d1
commit 964ef89f09
2 changed files with 8 additions and 1 deletions

View file

@ -82,3 +82,10 @@ HRESULT WINAPI DllRegisterServer(void)
"msxml3.dll" );
return r;
}
HRESULT WINAPI DllUnregisterServer(void)
{
RegDeleteKeyA( HKEY_CLASSES_ROOT, "CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}\\InProcServer32" );
RegDeleteKeyA( HKEY_CLASSES_ROOT, "CLSID\\{2933BF90-7B36-11D2-B20E-00C04F983E60}" );
return S_OK;
}

View file

@ -9,4 +9,4 @@
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stub DllUnregisterServer
@ stdcall -private DllUnregisterServer()