Commit a277da5b authored by Ken Sharp's avatar Ken Sharp Committed by Alexandre Julliard

olesvr32: Add OleRevokeServer stub.

parent 3a228fb5
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)
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment