olesvr32: Add OleRevokeServer stub.

This commit is contained in:
Ken Sharp 2009-06-10 13:08:12 +01:00 committed by Alexandre Julliard
parent 3a228fb593
commit a277da5b48
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,6 @@
1 stub WEP
2 stdcall OleRegisterServer(str ptr ptr long long)
3 stub OleRevokeServer
3 stdcall OleRevokeServer(long)
4 stdcall OleBlockServer(long)
5 stdcall OleUnblockServer(long ptr)
6 stdcall OleRegisterServerDoc(ptr str ptr ptr)

View File

@ -210,3 +210,13 @@ OLESTATUS WINAPI OleSavedServerDoc(LHSERVERDOC hDoc)
FIXME("(%d): stub.\n", hDoc);
return OLE_OK;
}
/******************************************************************************
* OleRevokeServer [OLESVR32.3]
*
*/
OLESTATUS WINAPI OleRevokeServer(LHSERVER hServer)
{
FIXME("(%d): stub.\n", hServer);
return OLE_OK;
}