Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
900f5705
Commit
900f5705
authored
Jul 19, 2002
by
Jon Griffiths
Committed by
Alexandre Julliard
Jul 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for CoInitializeSecurity.
parent
4bc1ebbd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
compobj.c
dlls/ole32/compobj.c
+16
-0
ole32.spec
dlls/ole32/ole32.spec
+1
-1
No files found.
dlls/ole32/compobj.c
View file @
900f5705
...
...
@@ -2233,3 +2233,19 @@ BOOL WINAPI IsEqualGUID(
{
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
;
}
dlls/ole32/ole32.spec
View file @
900f5705
...
...
@@ -163,7 +163,7 @@ init OLE32_DllEntryPoint
161 stub WriteOleStg
162 stub WriteStringStream
163 stdcall CoInitializeEx(ptr long) CoInitializeEx
164 st
ub CoInitializeSecurity # stdcall (ptr long ptr ptr long long ptr long ptr) return 0,ERR_NOTIMPLEMENTED
164 st
dcall 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment