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.
|
|
/*****************************************************************************\
* MODULE: inetpp.h * * Header file for the INETPP provider routines. * * * Copyright (C) 1996-1997 Microsoft Corporation * Copyright (C) 1996-1997 Hewlett Packard * * History: * 07-Oct-1996 HWP-Guys Initiated port from win95 to winNT * \*****************************************************************************/
#ifndef _INETPP_COMMON_H
#define _INETPP_COMMON_H
// Max length for username & password
//
#define MAX_USERNAME_LEN 256
#define MAX_PASSWORD_LEN 256
#define MAX_PORTNAME_LEN 512
#define AUTH_ANONYMOUS 0
#define AUTH_BASIC 1
#define AUTH_NT 2
#define AUTH_IE 3
#define AUTH_OTHER 4
#define AUTH_ACCESS_DENIED 0x100
#define AUTH_UNKNOWN 0xffff
#endif
|