summaryrefslogtreecommitdiffstats
path: root/private/nw/inc/nwcons.h
diff options
context:
space:
mode:
Diffstat (limited to 'private/nw/inc/nwcons.h')
-rw-r--r--private/nw/inc/nwcons.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/private/nw/inc/nwcons.h b/private/nw/inc/nwcons.h
new file mode 100644
index 000000000..64455e325
--- /dev/null
+++ b/private/nw/inc/nwcons.h
@@ -0,0 +1,39 @@
+/*++
+
+Copyright (c) 1993 Microsoft Corporation
+
+Module Name:
+
+ nwcons.h
+
+Abstract:
+
+ This module contains various Netware constants
+
+Author:
+
+ Chuck Y Chan. Split out from NWAPI.H
+
+Revision History:
+
+--*/
+
+#ifndef _NWCONS_INCLUDED_
+#define _NWCONS_INCLUDED_
+
+//
+// Maximum length of server, password, username
+//
+
+#define NW_MAX_TREE_LEN 32
+#define NW_MAX_SERVER_LEN 48
+#define NW_MAX_PASSWORD_LEN 256
+#define NW_MAX_USERNAME_LEN 256
+
+//
+// special char to distinguish nds context: eg. *tree\ou.o (as opposed to
+// server\volume.
+//
+#define TREE_CHAR L'*'
+
+#endif