OLD | NEW |
| (Empty) |
1 /// Copyright (c) Microsoft Corporation. All rights reserved. | |
2 | |
3 namespace Microsoft.VisualStudio.Project | |
4 { | |
5 internal static class ExternDll | |
6 { | |
7 | |
8 #if FEATURE_PAL | |
9 | |
10 #if !PLATFORM_UNIX | |
11 internal const String DLLPREFIX = ""; | |
12 internal const String DLLSUFFIX = ".dll"; | |
13 #else // !PLATFORM_UNIX | |
14 #if __APPLE__ | |
15 internal const String DLLPREFIX = "lib"; | |
16 internal const String DLLSUFFIX = ".dylib"; | |
17 #elif _AIX | |
18 internal const String DLLPREFIX = "lib"; | |
19 internal const String DLLSUFFIX = ".a"; | |
20 #elif __hppa__ || IA64 | |
21 internal const String DLLPREFIX = "lib"; | |
22 internal const String DLLSUFFIX = ".sl"; | |
23 #else | |
24 internal const String DLLPREFIX = "lib"; | |
25 internal const String DLLSUFFIX = ".so"; | |
26 #endif | |
27 #endif // !PLATFORM_UNIX | |
28 | |
29 public const string Kernel32 = DLLPREFIX + "rotor_pal" + DLLSUFFIX; | |
30 public const string User32 = DLLPREFIX + "rotor_pal" + DLLSUFFIX; | |
31 public const string Mscoree = DLLPREFIX + "sscoree" + DLLSUFFIX; | |
32 #else | |
33 public const string Activeds = "activeds.dll"; | |
34 public const string Advapi32 = "advapi32.dll"; | |
35 public const string Comctl32 = "comctl32.dll"; | |
36 public const string Comdlg32 = "comdlg32.dll"; | |
37 public const string Gdi32 = "gdi32.dll"; | |
38 public const string Gdiplus = "gdiplus.dll"; | |
39 public const string Hhctrl = "hhctrl.ocx"; | |
40 public const string Imm32 = "imm32.dll"; | |
41 public const string Kernel32 = "kernel32.dll"; | |
42 public const string Loadperf = "Loadperf.dll"; | |
43 public const string Mscoree = "mscoree.dll"; | |
44 public const string Mscorwks = "mscorwks.dll"; | |
45 public const string Msi = "msi.dll"; | |
46 public const string Mqrt = "mqrt.dll"; | |
47 public const string Ntdll = "ntdll.dll"; | |
48 public const string Ole32 = "ole32.dll"; | |
49 public const string Oleacc = "oleacc.dll"; | |
50 public const string Oleaut32 = "oleaut32.dll"; | |
51 public const string Olepro32 = "olepro32.dll"; | |
52 public const string PerfCounter = "perfcounter.dll"; | |
53 public const string Powrprof = "Powrprof.dll"; | |
54 public const string Psapi = "psapi.dll"; | |
55 public const string Shell32 = "shell32.dll"; | |
56 public const string Shfolder = "shfolder.dll"; | |
57 public const string User32 = "user32.dll"; | |
58 public const string Uxtheme = "uxtheme.dll"; | |
59 public const string WinMM = "winmm.dll"; | |
60 public const string Winspool = "winspool.drv"; | |
61 public const string Wtsapi32 = "wtsapi32.dll"; | |
62 public const string Version = "version.dll"; | |
63 public const string Vsassert = "vsassert.dll"; | |
64 public const string Shlwapi = "shlwapi.dll"; | |
65 public const string Crypt32 = "crypt32.dll"; | |
66 | |
67 // system.data specific | |
68 internal const string Odbc32 = "odbc32.dll"; | |
69 internal const string SNI = "System.Data.dll"; | |
70 | |
71 // system.data.oracleclient specific | |
72 internal const string OciDll = "oci.dll"; | |
73 internal const string OraMtsDll = "oramts.dll"; | |
74 #endif //!FEATURE_PAL | |
75 } | |
76 } | |
OLD | NEW |