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
1.2 KiB

  1. /*+-------------------------------------------------------------------------+
  2. | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
  3. +-------------------------------------------------------------------------+*/
  4. #ifndef _USERDLG_
  5. #define _USERDLG_
  6. #ifdef __cplusplus
  7. extern "C"{
  8. #endif
  9. typedef struct _CONVERT_OPTIONS {
  10. BOOL TransferUserInfo;
  11. BOOL UseMappingFile;
  12. TCHAR MappingFile[MAX_PATH + 1];
  13. int PasswordOption;
  14. TCHAR PasswordConstant[MAX_PW_LEN + 1];
  15. BOOL ForcePasswordChange;
  16. int UserNameOption;
  17. TCHAR UserConstant[MAX_UCONST_LEN + 1];
  18. int GroupNameOption;
  19. TCHAR GroupConstant[MAX_UCONST_LEN + 1];
  20. BOOL SupervisorDefaults;
  21. BOOL AdminAccounts;
  22. BOOL NetWareInfo;
  23. BOOL UseTrustedDomain;
  24. DOMAIN_BUFFER *TrustedDomain;
  25. } CONVERT_OPTIONS;
  26. void UserOptionsDefaultsSet(void *cvto);
  27. void UserOptionsDefaultsReset();
  28. void UserOptionsInit(void **cvto);
  29. void UserOptionsLoad(HANDLE hFile, void **lpcvto);
  30. void UserOptionsSave(HANDLE hFile, void *cvto);
  31. void UserOptions_Do(HWND hDlg, void *ConvOptions, SOURCE_SERVER_BUFFER *SourceServer, DEST_SERVER_BUFFER *DestServer);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif