Working on some of the fundamentals of the Context side of things. The Win 32 API is very wonky here though. Going to take some time.
This commit is contained in:
21
Contexts/ContextAttrib.cs
Normal file
21
Contexts/ContextAttrib.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NSspi.Contexts
|
||||
{
|
||||
[Flags]
|
||||
public enum ContextReqAttrib : int
|
||||
{
|
||||
None = 0,
|
||||
Delegate = 1,
|
||||
Identify = 2,
|
||||
MutualAuth = 4,
|
||||
}
|
||||
|
||||
public enum ContextResultAttrib : int
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user