summaryrefslogtreecommitdiffstats
path: root/private/nw/convert/nwconv/userdlg.h
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/nw/convert/nwconv/userdlg.h
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to '')
-rw-r--r--private/nw/convert/nwconv/userdlg.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/private/nw/convert/nwconv/userdlg.h b/private/nw/convert/nwconv/userdlg.h
new file mode 100644
index 000000000..dcb91d6a0
--- /dev/null
+++ b/private/nw/convert/nwconv/userdlg.h
@@ -0,0 +1,49 @@
+/*+-------------------------------------------------------------------------+
+ | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
+ +-------------------------------------------------------------------------+*/
+
+#ifndef _USERDLG_
+#define _USERDLG_
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+
+typedef struct _CONVERT_OPTIONS {
+ BOOL TransferUserInfo;
+
+ BOOL UseMappingFile;
+ TCHAR MappingFile[MAX_PATH + 1];
+
+ int PasswordOption;
+ TCHAR PasswordConstant[MAX_PW_LEN + 1];
+ BOOL ForcePasswordChange;
+
+ int UserNameOption;
+ TCHAR UserConstant[MAX_UCONST_LEN + 1];
+
+ int GroupNameOption;
+ TCHAR GroupConstant[MAX_UCONST_LEN + 1];
+
+ BOOL SupervisorDefaults;
+ BOOL AdminAccounts;
+ BOOL NetWareInfo;
+
+ BOOL UseTrustedDomain;
+ DOMAIN_BUFFER *TrustedDomain;
+} CONVERT_OPTIONS;
+
+void UserOptionsDefaultsSet(void *cvto);
+void UserOptionsDefaultsReset();
+void UserOptionsInit(void **cvto);
+void UserOptionsLoad(HANDLE hFile, void **lpcvto);
+void UserOptionsSave(HANDLE hFile, void *cvto);
+
+void UserOptions_Do(HWND hDlg, void *ConvOptions, SOURCE_SERVER_BUFFER *SourceServer, DEST_SERVER_BUFFER *DestServer);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif