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.
30 lines
639 B
30 lines
639 B
//----------------------------------------------------------------------------
|
|
//
|
|
// Windows CE specific functions.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 2001-2002.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __WCE_H__
|
|
#define __WCE_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
|
|
);
|
|
|
|
LPVOID
|
|
WceGetPebAddress(
|
|
IN HANDLE Process,
|
|
OUT PULONG SizeOfPeb
|
|
);
|
|
|
|
#endif // #ifndef __WCE_H__
|