mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 22:31:38 +00:00
- Implement RtlQueryInformationActiveActivationContext and add new define. Wow, this one need some love from wine!
svn path=/trunk/; revision=36879
This commit is contained in:
parent
c33db42905
commit
d380bdc8d5
1 changed files with 18 additions and 0 deletions
|
@ -13,6 +13,8 @@
|
|||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
#define QUERY_ACTCTX_FLAG_ACTIVE (0x00000001)
|
||||
|
||||
/* FUNCTIONS ***************************************************************/
|
||||
|
||||
VOID
|
||||
|
@ -80,6 +82,22 @@ RtlQueryInformationActivationContext(DWORD dwFlags,
|
|||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
RtlQueryInformationActiveActivationContext(ULONG ulInfoClass,
|
||||
PVOID pvBuffer,
|
||||
SIZE_T cbBuffer OPTIONAL,
|
||||
SIZE_T *pcbWrittenOrRequired OPTIONAL)
|
||||
{
|
||||
return RtlQueryInformationActivationContext(QUERY_ACTCTX_FLAG_ACTIVE,
|
||||
NULL,
|
||||
NULL,
|
||||
ulInfoClass,
|
||||
pvBuffer,
|
||||
cbBuffer,
|
||||
pcbWrittenOrRequired);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
RtlZombifyActivationContext(PVOID Context)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue