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.

40 lines
829 B

  1. /*************************************************************************
  2. *
  3. * regsam.h
  4. *
  5. * Includes for SAM-based APIs within regapi.dll
  6. *
  7. * NOTE: This header files requires SAM definitions found in ntsam.h.
  8. *
  9. * Copyright Microsoft Corporation, 1998
  10. *
  11. *
  12. *
  13. *************************************************************************/
  14. #ifndef __REGSAM_H__
  15. #define __REGSAM_H__
  16. DWORD
  17. RegSAMUserConfig(
  18. BOOLEAN fGetConfig,
  19. PWCHAR pUserName,
  20. PWCHAR pServerName,
  21. PUSERCONFIGW pUser
  22. );
  23. NTSTATUS
  24. RegGetUserConfigFromUserParameters(
  25. PUSER_PARAMETERS_INFORMATION pUserParmInfo,
  26. PUSERCONFIGW pUser
  27. );
  28. NTSTATUS
  29. RegMergeUserConfigWithUserParameters(
  30. PUSER_PARAMETERS_INFORMATION pUserParmInfo,
  31. PUSERCONFIGW pUser,
  32. PUSER_PARAMETERS_INFORMATION pNewUserParmInfo
  33. );
  34. #endif //__REGSAM_H__