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.

49 lines
735 B

  1. //
  2. // Interface Attributes
  3. //
  4. [
  5. uuid(369ce4f0-0fdc-11d3-bde8-00c04f8eee78),
  6. version(1.0),
  7. #ifdef __midl
  8. ms_union,
  9. #endif // __midl
  10. pointer_default(unique)
  11. ]
  12. //
  13. // Interface Keyword
  14. //
  15. interface pmapapi
  16. //
  17. // Interface Body
  18. //
  19. {
  20. import "imports.idl";
  21. error_status_t
  22. RemoteRemapUserProfile (
  23. [in] handle_t hBinding,
  24. [in] DWORD Flags,
  25. [in, unique, size_is(CurrentSidSize)] LPBYTE CurrentSid,
  26. [in] DWORD CurrentSidSize,
  27. [in, unique, size_is(NewSidSize)] LPBYTE NewSid,
  28. [in] DWORD NewSidSize
  29. );
  30. error_status_t
  31. RemoteRemapAndMoveUser (
  32. [in] handle_t hBinding,
  33. [in] DWORD Flags,
  34. [in, string, unique] LPWSTR ExistingUser,
  35. [in, string, unique] LPWSTR NewUser
  36. );
  37. }