- Implement RtlQueryInformationActiveActivationContext and add new define. Wow, this one need some love from wine!

svn path=/trunk/; revision=36879
This commit is contained in:
James Tabor 2008-10-21 19:49:17 +00:00
parent c33db42905
commit d380bdc8d5

View file

@ -13,6 +13,8 @@
#define NDEBUG #define NDEBUG
#include <debug.h> #include <debug.h>
#define QUERY_ACTCTX_FLAG_ACTIVE (0x00000001)
/* FUNCTIONS ***************************************************************/ /* FUNCTIONS ***************************************************************/
VOID VOID
@ -80,6 +82,22 @@ RtlQueryInformationActivationContext(DWORD dwFlags,
return STATUS_NOT_IMPLEMENTED; 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 NTSTATUS
NTAPI NTAPI
RtlZombifyActivationContext(PVOID Context) RtlZombifyActivationContext(PVOID Context)