Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4661a825
Commit
4661a825
authored
Oct 05, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Return some fake data in FindActCtxSectionStringW.
parent
59edd7d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
3 deletions
+32
-3
actctx.c
dlls/kernel32/actctx.c
+32
-3
No files found.
dlls/kernel32/actctx.c
View file @
4661a825
...
...
@@ -176,9 +176,38 @@ BOOL WINAPI FindActCtxSectionStringW(DWORD dwFlags, const GUID* lpExtGuid,
PACTCTX_SECTION_KEYED_DATA
pInfo
)
{
FIXME
(
"%08lx %s %lu %s %p
\n
"
,
dwFlags
,
debugstr_guid
(
lpExtGuid
),
ulId
,
debugstr_w
(
lpSearchStr
),
pInfo
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
ulId
,
debugstr_w
(
lpSearchStr
),
pInfo
);
if
(
lpExtGuid
)
{
FIXME
(
"expected lpExtGuid == NULL
\n
"
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
if
(
dwFlags
&
~
FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX
)
{
FIXME
(
"unknown dwFlags %08lx
\n
"
,
dwFlags
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
if
(
!
pInfo
||
pInfo
->
cbSize
<
sizeof
(
ACTCTX_SECTION_KEYED_DATA
))
{
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
pInfo
->
ulDataFormatVersion
=
1
;
pInfo
->
lpData
=
NULL
;
pInfo
->
lpSectionGlobalData
=
NULL
;
pInfo
->
ulSectionGlobalDataLength
=
0
;
pInfo
->
lpSectionBase
=
NULL
;
pInfo
->
ulSectionTotalLength
=
0
;
pInfo
->
hActCtx
=
ACTCTX_FAKE_HANDLE
;
pInfo
->
ulAssemblyRosterIndex
=
0
;
return
TRUE
;
}
/***********************************************************************
...
...
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