Exemplo n.º 1
0
 public bool LoadProfile(IntPtr token, string userName)
 {
     _profileInfo          = new Profileinfo();
     _profileInfo.Size     = Marshal.SizeOf(_profileInfo);
     _profileInfo.Flags    = 1;
     _profileInfo.UserName = userName;
     return(LoadUserProfile(token, ref _profileInfo));
 }
Exemplo n.º 2
0
 private static extern bool LoadUserProfile(IntPtr token, ref Profileinfo profileInfo);