mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
e0579b0393
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4785 21ef857c-d57f-4fe0-8362-d861dc6d29cd
15 lines
501 B
C#
15 lines
501 B
C#
namespace ProcessHacker.Native.Api
|
|
{
|
|
public static partial class Win32
|
|
{
|
|
public const int SamMaximumLookupCount = 100;
|
|
public const int SamMaximumLookupLength = 32000;
|
|
public const int SamMaximumPasswordLength = 256;
|
|
|
|
public const int SamDaysPerWeek = 7;
|
|
public const int SamHoursPerWeek = 24 * SamDaysPerWeek;
|
|
public const int SamMinutesPerWeek = 60 * SamHoursPerWeek;
|
|
public const int SamUnitsPerWeek = 10080;
|
|
}
|
|
}
|