Interop.Libraries.cs 846 B

1234567891011121314151617181920
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. internal static partial class Interop
  5. {
  6. internal static partial class Libraries
  7. {
  8. internal const string Advapi32 = "advapi32.dll";
  9. internal const string BCrypt = "BCrypt.dll";
  10. internal const string Crypt32 = "crypt32.dll";
  11. internal const string Kernel32 = "kernel32.dll";
  12. internal const string Ole32 = "ole32.dll";
  13. internal const string OleAut32 = "oleaut32.dll";
  14. internal const string User32 = "user32.dll";
  15. internal const string NtDll = "ntdll.dll";
  16. internal const string Secur32 = "secur32.dll";
  17. internal const string Shell32 = "shell32.dll";
  18. }
  19. }