INFINITE.cs 250 B

1234567891011
  1. namespace Microsoft.Win32
  2. {
  3. //INFINITE定义
  4. public static partial class NativeMethods
  5. {
  6. /// <summary>
  7. /// Infinite timeout
  8. /// </summary>
  9. public const int INFINITE = unchecked((int)0xFFFFFFFF);
  10. }
  11. }