blob: 64455e325a25635af3ca75b17ef7cff32e94050e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
|