mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
656 B
34 lines
656 B
//----------------------------------------------------------------------------
|
|
//
|
|
// Windows CE specific functions.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 2001-2002.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "pch.h"
|
|
|
|
HRESULT
|
|
WceGetThreadInfo(
|
|
IN HANDLE Process,
|
|
IN HANDLE Thread,
|
|
OUT PULONG64 Teb,
|
|
OUT PULONG SizeOfTeb,
|
|
OUT PULONG64 StackBase,
|
|
OUT PULONG64 StackLimit,
|
|
OUT PULONG64 StoreBase,
|
|
OUT PULONG64 StoreLimit
|
|
)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
LPVOID
|
|
WceGetPebAddress(
|
|
IN HANDLE Process,
|
|
OUT PULONG SizeOfPeb
|
|
)
|
|
{
|
|
*SizeOfPeb = 0;
|
|
return NULL;
|
|
}
|