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
045682a4
Commit
045682a4
authored
Sep 02, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 03, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Forward ZombifyActCtx() to ntdll.
parent
8e211065
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
9 deletions
+21
-9
actctx.c
dlls/kernel32/actctx.c
+9
-8
actctx.c
dlls/ntdll/actctx.c
+10
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/kernel32/actctx.c
View file @
045682a4
...
...
@@ -33,9 +33,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
actctx
);
#define ACTCTX_FAKE_HANDLE ((HANDLE) 0xf00baa)
/***********************************************************************
* CreateActCtxA (KERNEL32.@)
*
...
...
@@ -200,14 +197,18 @@ void WINAPI ReleaseActCtx(HANDLE hActCtx)
/***********************************************************************
* ZombifyActCtx (KERNEL32.@)
*
*
Release a reference to an activation contex
t.
*
Deactivate context without releasing i
t.
*/
BOOL
WINAPI
ZombifyActCtx
(
HANDLE
hActCtx
)
{
FIXME
(
"%p
\n
"
,
hActCtx
);
if
(
hActCtx
!=
ACTCTX_FAKE_HANDLE
)
return
FALSE
;
return
TRUE
;
NTSTATUS
status
;
if
((
status
=
RtlZombifyActivationContext
(
hActCtx
)))
{
SetLastError
(
RtlNtStatusToDosError
(
status
));
return
FALSE
;
}
return
TRUE
;
}
/***********************************************************************
...
...
dlls/ntdll/actctx.c
View file @
045682a4
...
...
@@ -4138,6 +4138,16 @@ void WINAPI RtlReleaseActivationContext( HANDLE handle )
if
((
actctx
=
check_actctx
(
handle
)))
actctx_release
(
actctx
);
}
/******************************************************************
* RtlZombifyActivationContext (NTDLL.@)
*
* FIXME: function prototype might be wrong
*/
NTSTATUS
WINAPI
RtlZombifyActivationContext
(
HANDLE
handle
)
{
FIXME
(
"%p: stub
\n
"
,
handle
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************
* RtlActivateActivationContext (NTDLL.@)
...
...
dlls/ntdll/ntdll.spec
View file @
045682a4
...
...
@@ -934,7 +934,7 @@
@ stdcall RtlWriteRegistryValue(long ptr ptr long ptr long)
@ stub RtlZeroHeap
@ stdcall RtlZeroMemory(ptr long)
# @ stub RtlZombifyActivationContext
@ stdcall RtlZombifyActivationContext(ptr)
# @ stub RtlpApplyLengthFunction
# @ stub RtlpEnsureBufferSize
# @ stub RtlpNotOwnerCriticalSection
...
...
include/winternl.h
View file @
045682a4
...
...
@@ -2540,6 +2540,7 @@ NTSYSAPI NTSTATUS WINAPI RtlWalkHeap(HANDLE,PVOID);
NTSYSAPI
NTSTATUS
WINAPI
RtlWow64EnableFsRedirection
(
BOOLEAN
);
NTSYSAPI
NTSTATUS
WINAPI
RtlWow64EnableFsRedirectionEx
(
ULONG
,
ULONG
*
);
NTSYSAPI
NTSTATUS
WINAPI
RtlWriteRegistryValue
(
ULONG
,
PCWSTR
,
PCWSTR
,
ULONG
,
PVOID
,
ULONG
);
NTSYSAPI
NTSTATUS
WINAPI
RtlZombifyActivationContext
(
HANDLE
);
NTSYSAPI
NTSTATUS
WINAPI
RtlpNtCreateKey
(
PHANDLE
,
ACCESS_MASK
,
const
OBJECT_ATTRIBUTES
*
,
ULONG
,
const
UNICODE_STRING
*
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
RtlpNtEnumerateSubKey
(
HANDLE
,
UNICODE_STRING
*
,
ULONG
);
NTSYSAPI
NTSTATUS
WINAPI
RtlpWaitForCriticalSection
(
RTL_CRITICAL_SECTION
*
);
...
...
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