Commit 1a02b3f1 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

ntdll: Stub RtlQueryProcessPlaceholderCompatibilityMode().

parent 19379007
...@@ -898,6 +898,7 @@ ...@@ -898,6 +898,7 @@
@ stdcall RtlQueryProcessDebugInformation(long long ptr) @ stdcall RtlQueryProcessDebugInformation(long long ptr)
@ stub RtlQueryProcessHeapInformation @ stub RtlQueryProcessHeapInformation
@ stub RtlQueryProcessLockInformation @ stub RtlQueryProcessLockInformation
@ stdcall RtlQueryProcessPlaceholderCompatibilityMode()
@ stub RtlQueryProperties @ stub RtlQueryProperties
@ stub RtlQueryPropertyNames @ stub RtlQueryPropertyNames
@ stub RtlQueryPropertySet @ stub RtlQueryPropertySet
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include "ntdll_misc.h" #include "ntdll_misc.h"
#include "in6addr.h" #include "in6addr.h"
#include "ddk/ntddk.h" #include "ddk/ntddk.h"
#include "ddk/ntifs.h"
WINE_DEFAULT_DEBUG_CHANNEL(ntdll); WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
WINE_DECLARE_DEBUG_CHANNEL(debugstr); WINE_DECLARE_DEBUG_CHANNEL(debugstr);
...@@ -2165,3 +2166,12 @@ NTSTATUS WINAPI RtlQueryPackageIdentity(HANDLE token, WCHAR *fullname, SIZE_T *f ...@@ -2165,3 +2166,12 @@ NTSTATUS WINAPI RtlQueryPackageIdentity(HANDLE token, WCHAR *fullname, SIZE_T *f
FIXME("(%p, %p, %p, %p, %p, %p): stub\n", token, fullname, fullname_size, appid, appid_size, packaged); FIXME("(%p, %p, %p, %p, %p, %p): stub\n", token, fullname, fullname_size, appid, appid_size, packaged);
return STATUS_NOT_FOUND; return STATUS_NOT_FOUND;
} }
/*********************************************************************
* RtlQueryProcessPlaceholderCompatibilityMode [NTDLL.@]
*/
char WINAPI RtlQueryProcessPlaceholderCompatibilityMode(void)
{
FIXME("stub\n");
return PHCM_APPLICATION_DEFAULT;
}
...@@ -1212,6 +1212,7 @@ ...@@ -1212,6 +1212,7 @@
@ stdcall RtlQueryDynamicTimeZoneInformation(ptr) @ stdcall RtlQueryDynamicTimeZoneInformation(ptr)
@ stdcall RtlQueryInformationAcl(ptr ptr long long) @ stdcall RtlQueryInformationAcl(ptr ptr long long)
@ stdcall RtlQueryPackageIdentity(long ptr ptr ptr ptr ptr) @ stdcall RtlQueryPackageIdentity(long ptr ptr ptr ptr ptr)
@ stdcall RtlQueryProcessPlaceholderCompatibilityMode()
@ stdcall RtlQueryRegistryValues(long ptr ptr ptr ptr) @ stdcall RtlQueryRegistryValues(long ptr ptr ptr ptr)
@ stdcall RtlQueryRegistryValuesEx(long ptr ptr ptr ptr) RtlQueryRegistryValues @ stdcall RtlQueryRegistryValuesEx(long ptr ptr ptr ptr) RtlQueryRegistryValues
@ stdcall RtlQueryTimeZoneInformation(ptr) @ stdcall RtlQueryTimeZoneInformation(ptr)
......
...@@ -21,6 +21,15 @@ ...@@ -21,6 +21,15 @@
#include "ntddk.h" #include "ntddk.h"
#define PHCM_ERROR_INVALID_PARAMETER ((char)-1)
#define PHCM_ERROR_NO_TEB ((char)-2)
#define PHCM_ERROR_NO_PEB ((char)-3)
#define PHCM_APPLICATION_DEFAULT ((char)0)
#define PHCM_DISGUISE_PLACEHOLDERS ((char)1)
#define PHCM_EXPOSE_PLACEHOLDERS ((char)2)
#define PHCM_DISGUISE_FULL_PLACEHOLDERS ((char)3)
#define PHCM_MAX ((char)3)
typedef struct _EX_PUSH_LOCK EX_PUSH_LOCK, *PEX_PUSH_LOCK; typedef struct _EX_PUSH_LOCK EX_PUSH_LOCK, *PEX_PUSH_LOCK;
typedef enum _FS_FILTER_SECTION_SYNC_TYPE typedef enum _FS_FILTER_SECTION_SYNC_TYPE
...@@ -140,5 +149,6 @@ BOOLEAN WINAPI PsIsSystemThread(PETHREAD); ...@@ -140,5 +149,6 @@ BOOLEAN WINAPI PsIsSystemThread(PETHREAD);
NTSTATUS WINAPI PsLookupProcessByProcessId(HANDLE,PEPROCESS*); NTSTATUS WINAPI PsLookupProcessByProcessId(HANDLE,PEPROCESS*);
NTSTATUS WINAPI PsLookupThreadByThreadId(HANDLE,PETHREAD*); NTSTATUS WINAPI PsLookupThreadByThreadId(HANDLE,PETHREAD*);
void WINAPI PsRevertToSelf(void); void WINAPI PsRevertToSelf(void);
char WINAPI RtlQueryProcessPlaceholderCompatibilityMode(void);
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment