Vanara/PInvoke/Shared/Lib.cs

63 lines
2.4 KiB
C#
Raw Normal View History

namespace Vanara.PInvoke
{
/// <summary>Holds string values for all used external API libraries.</summary>
public static partial class Lib
{
/// <summary>The acl UI</summary>
public const string AclUI = "aclui.dll";
/// <summary>The adv api32</summary>
public const string AdvApi32 = "advapi32.dll";
/// <summary>The authz</summary>
public const string Authz = "authz.dll";
/// <summary>The COM CTL32</summary>
public const string ComCtl32 = "comctl32.dll";
/// <summary>The cred UI</summary>
public const string CredUI = "credui.dll";
2018-01-29 09:51:39 -05:00
/// <summary>The crypt32.dll</summary>
public const string Crypt32 = "crypt32.dll";
/// <summary>The DWM API</summary>
public const string DwmApi = "dwmapi.dll";
/// <summary>The gdi32</summary>
public const string Gdi32 = "gdi32.dll";
2017-12-24 12:34:16 -05:00
/// <summary>The gdi32</summary>
public const string IpHlpApi = "Iphlpapi.dll";
/// <summary>The kernel32</summary>
public const string Kernel32 = "kernel32.dll";
2018-05-29 19:46:52 -04:00
/// <summary>The kernel base</summary>
public const string KernelBase = "kernelbase.dll";
2018-07-27 00:32:03 -04:00
/// <summary>The MPR</summary>
public const string Mpr = "mpr.dll";
2018-06-06 14:05:52 -04:00
/// <summary>The mstask</summary>
public const string Mstask = "mstask.dll";
/// <summary>The net api32</summary>
public const string NetApi32 = "netapi32.dll";
/// <summary>The normaliz</summary>
public const string Normaliz = "normaliz.dll";
/// <summary>The nt DLL</summary>
public const string NtDll= "ntdll.dll";
/// <summary>The NTDS API</summary>
public const string NTDSApi = "ntdsapi.dll";
/// <summary>The ole32</summary>
public const string Ole32 = "ole32.dll";
/// <summary>The OLE aut32</summary>
public const string OleAut32 = "oleaut32.dll";
/// <summary>The property system</summary>
public const string PropSys = "propsys.dll";
/// <summary>The secur32</summary>
public const string Secur32 = "secur32.dll";
/// <summary>The shell32</summary>
public const string Shell32 = "shell32.dll";
/// <summary>The shlwapi</summary>
public const string Shlwapi = "Shlwapi.dll";
/// <summary>The user32</summary>
public const string User32 = "user32.dll";
/// <summary>The ux theme</summary>
public const string UxTheme = "uxtheme.dll";
/// <summary>The vertdll</summary>
public const string VertDll = "vertdll.dll";
/// <summary>The virt disk</summary>
public const string VirtDisk = "virtdisk.dll";
/// <summary>The win inet</summary>
public const string WinInet = "wininet.dll";
}
}