| lpDefault = &H0 | 0 | Use the standard logon provider for the system. This is the recommended value. It provides maximum compatibility with current and future releases of Windows NT. |
| lpWinNT35 = &H1 | 1 | Use the Windows NT 3.5 logon provider. |
| lpWinNT40 = &H2 | 2 | Use the Windows NT 4.0 logon provider. |
'LogonProviders - begin Public Const lpDefault = &H0 'Use the standard logon provider for the system. This is the recommended value. It provides maximum compatibility with current and future releases of Windows NT. Public Const lpWinNT35 = &H1 'Use the Windows NT 3.5 logon provider. Public Const lpWinNT40 = &H2 'Use the Windows NT 4.0 logon provider. 'LogonProviders - end
'LogonProviders - begin Public Const lpDefault As Long = &H0 'Use the standard logon provider for the system. This is the recommended value. It provides maximum compatibility with current and future releases of Windows NT. Public Const lpWinNT35 As Long = &H1 'Use the Windows NT 3.5 logon provider. Public Const lpWinNT40 As Long = &H2 'Use the Windows NT 4.0 logon provider. 'LogonProviders - end
Public Enum LogonProviders lpDefault = &H0 'Use the standard logon provider for the system. This is the recommended value. It provides maximum compatibility with current and future releases of Windows NT. lpWinNT35 = &H1 'Use the Windows NT 3.5 logon provider. lpWinNT40 = &H2 'Use the Windows NT 4.0 logon provider. End Enum 'LogonProviders
//LogonProviders - begin var lpDefault = 0x0; //Use the standard logon provider for the system. This is the recommended value. It provides maximum compatibility with current and future releases of Windows NT. var lpWinNT35 = 0x1; //Use the Windows NT 3.5 logon provider. var lpWinNT40 = 0x2; //Use the Windows NT 4.0 logon provider. //LogonProviders - end
// LogonProviders
typedef [helpcontext(0x20020), helpstring("Specifies the logon provider - Logon Support APIs.")]
enum LogonProviders{
[helpcontext(0x20020), helpstring("Use the standard logon provider for the system. This is the recommended value. It provides maximum compatibility with current and future releases of Windows NT.")]
lpDefault = 0x0,
[helpcontext(0x20020), helpstring("Use the Windows NT 3.5 logon provider.")]
lpWinNT35 = 0x1,
[helpcontext(0x20020), helpstring("Use the Windows NT 4.0 logon provider.")]
lpWinNT40 = 0x2
} LogonProviders;