Changeset 22048 for trunk/src/ole32/compobj.c
- Timestamp:
- Dec 25, 2012, 10:25:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/compobj.c
r21916 r22048 1914 1914 return S_OK; 1915 1915 } 1916 1917 /*********************************************************************** 1918 * CoCopyProxy [OLE32.167] 1919 */ 1920 HRESULT 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 */ 1929 HRESULT 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 */ 1940 HRESULT 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.