Ignore:
Timestamp:
Dec 25, 2012, 10:25:34 PM (13 years ago)
Author:
dmik
Message:

ole32: Add stubs for CoQueryProxyBlanket and friends.

Required by recent Flash.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ole32/compobj.c

    r21916 r22048  
    19141914  return S_OK;
    19151915}
     1916
     1917/***********************************************************************
     1918 *           CoCopyProxy [OLE32.167]
     1919 */
     1920HRESULT WINAPI CoCopyProxy(IUnknown* pProxy, IUnknown** ppCopy)
     1921{
     1922  FIXME("(%p,%p) - stub!\n", pProxy, ppCopy);
     1923  return E_NOTIMPL;
     1924}
     1925
     1926/***********************************************************************
     1927 *           CoQueryProxyBlanket [OLE32.188]
     1928 */
     1929HRESULT WINAPI CoQueryProxyBlanket(IUnknown* pProxy, DWORD* pwAuthnSvc, DWORD* pAuthzSvc, OLECHAR** pServerPrincName, DWORD* pAuthnLevel, DWORD* pImpLevel, RPC_AUTH_IDENTITY_HANDLE* pAuthInfo, DWORD* pCapabilites)
     1930{
     1931  FIXME("(%p,%p,%p,%p,%p,%p,%p,%p) - stub!\n", pProxy, pwAuthnSvc,
     1932        pAuthzSvc, pServerPrincName, pAuthnLevel, pImpLevel, pAuthInfo,
     1933        pCapabilites);
     1934  return E_NOTIMPL;
     1935}
     1936
     1937/***********************************************************************
     1938 *           CoSetProxyBlanket [OLE32.175]
     1939 */
     1940HRESULT WINAPI CoSetProxyBlanket(IUnknown* pProxy, DWORD dwAuthnSvc, DWORD dwAuthzSvc, OLECHAR* pServerPrincName, DWORD dwAuthnLevel, DWORD dwImpLevel, RPC_AUTH_IDENTITY_HANDLE pAuthInfo, DWORD dwCapabilities)
     1941{
     1942  FIXME("(%p,%ld,%ld,%p,%ld,%ld,%p,%ld) - stub!\n", pProxy, dwAuthnSvc,
     1943        dwAuthzSvc, pServerPrincName, dwAuthnLevel, dwImpLevel, pAuthInfo,
     1944        dwCapabilities);
     1945  return E_NOTIMPL;
     1946}
Note: See TracChangeset for help on using the changeset viewer.