31 lines
639 B
C
31 lines
639 B
C
//----------------------------------------------------------------------------
|
|
//
|
|
// 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__
|