e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
39 lines
2.0 KiB
C#
39 lines
2.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ExternDll.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System {
|
|
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
|
|
internal class ExternDll {
|
|
|
|
internal const string Gdiplus = "gdiplus.dll";
|
|
internal const string User32 = "user32.dll";
|
|
internal const string Shfolder = "shfolder.dll";
|
|
internal const string Imm32 = "imm32.dll";
|
|
internal const string Advapi32 = "advapi32.dll";
|
|
internal const string Shell32 = "shell32.dll";
|
|
internal const string Kernel32 = "kernel32.dll";
|
|
internal const string Comctl32 = "comctl32.dll";
|
|
internal const string Oleaut32 = "oleaut32.dll";
|
|
internal const string Olepro32 = "olepro32.dll";
|
|
internal const string Ole32 = "ole32.dll";
|
|
internal const string Gdi32 = "gdi32.dll";
|
|
internal const string Comdlg32 = "comdlg32.dll";
|
|
internal const string Uxtheme = "uxtheme.dll";
|
|
internal const string Oleacc = "oleacc.dll";
|
|
internal const string Hhctrl = "hhctrl.ocx";
|
|
internal const string Winspool = "winspool.drv";
|
|
internal const string Psapi = "psapi.dll";
|
|
internal const string Ntdll = "ntdll.dll";
|
|
internal const string Version = "version.dll";
|
|
internal const string Vsassert = "vsassert.dll";
|
|
internal const string Mscoree = "mscoree.dll";
|
|
internal const string Msi = "msi.dll";
|
|
internal const string Mqrt = "mqrt.dll";
|
|
internal const string Activeds = "activeds.dll";
|
|
internal const string Loadperf = "Loadperf.dll";
|
|
}
|
|
}
|