ChangeLog: Jon Griffiths <jon_p_griffiths@yahoo.com> +dlls/ole32/ole32.spec,dlls/ole32/compobj.c Stub implementation for CoInitializeSecurity ===== "Don't wait for the seas to part, or messiahs to come; Don't you sit around and waste this chance..." - Live jon_p_griffiths@yahoo.com __________________________________________________ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com
--- wine/dlls/ole32/ole32.spec Sat Jun 22 07:15:48 2002 +++ wine-develop/dlls/ole32/ole32.spec Tue Jul 16 12:18:20 2002 @@ -163,7 +163,7 @@ 161 stub WriteOleStg 162 stub WriteStringStream 163 stdcall CoInitializeEx(ptr long) CoInitializeEx -164 stub CoInitializeSecurity # stdcall (ptr long ptr ptr long long ptr long ptr) return 0,ERR_NOTIMPLEMENTED +164 stdcall CoInitializeSecurity(ptr long ptr ptr long long ptr long ptr) CoInitializeSecurity 165 stdcall CoCreateInstanceEx(ptr ptr long ptr long ptr) CoCreateInstanceEx 166 stdcall PropVariantClear(ptr) PropVariantClear 167 stub CoCopyProxy # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED --- wine/dlls/ole32/compobj.c Sat Jun 22 09:55:37 2002 +++ wine-develop/dlls/ole32/compobj.c Tue Jul 16 12:29:47 2002 @@ -2233,3 +2233,19 @@ { return !memcmp(rguid1,rguid2,sizeof(GUID)); } + +/*********************************************************************** + * CoInitializeSecurity [OLE32.@] + */ +HRESULT WINAPI CoInitializeSecurity(PSECURITY_DESCRIPTOR pSecDesc, LONG cAuthSvc, + SOLE_AUTHENTICATION_SERVICE* asAuthSvc, + void* pReserved1, DWORD dwAuthnLevel, + DWORD dwImpLevel, void* pReserved2, + DWORD dwCapabilities, void* pReserved3) +{ + FIXME("(%p,%ld,%p,%p,%ld,%ld,%p,%ld,%p) - stub!\n", pSecDesc, cAuthSvc, + asAuthSvc, pReserved1, dwAuthnLevel, dwImpLevel, pReserved2, + dwCapabilities, pReserved3); + return S_OK; +} +