Source code of Windows XP (NT5)
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

  1. //----------------------------------------------------------------------------
  2. //
  3. // Windows CE specific functions.
  4. //
  5. // Copyright (C) Microsoft Corporation, 2001-2002.
  6. //
  7. //----------------------------------------------------------------------------
  8. #ifndef __WCE_H__
  9. #define __WCE_H__
  10. HRESULT
  11. WceGetThreadInfo(
  12. IN HANDLE Process,
  13. IN HANDLE Thread,
  14. OUT PULONG64 Teb,
  15. OUT PULONG SizeOfTeb,
  16. OUT PULONG64 StackBase,
  17. OUT PULONG64 StackLimit,
  18. OUT PULONG64 StoreBase,
  19. OUT PULONG64 StoreLimit
  20. );
  21. LPVOID
  22. WceGetPebAddress(
  23. IN HANDLE Process,
  24. OUT PULONG SizeOfPeb
  25. );
  26. #endif // #ifndef __WCE_H__