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.
|
|
/*************************************************************************
* * regsam.h * * Includes for SAM-based APIs within regapi.dll * * NOTE: This header files requires SAM definitions found in ntsam.h. * * Copyright Microsoft Corporation, 1998 * * * *************************************************************************/
#ifndef __REGSAM_H__
#define __REGSAM_H__
DWORD RegSAMUserConfig( BOOLEAN fGetConfig, PWCHAR pUserName, PWCHAR pServerName, PUSERCONFIGW pUser );
NTSTATUS RegGetUserConfigFromUserParameters( PUSER_PARAMETERS_INFORMATION pUserParmInfo, PUSERCONFIGW pUser );
NTSTATUS RegMergeUserConfigWithUserParameters( PUSER_PARAMETERS_INFORMATION pUserParmInfo, PUSERCONFIGW pUser, PUSER_PARAMETERS_INFORMATION pNewUserParmInfo );
#endif //__REGSAM_H__
|