Advertisement
Blizzardo1

LOL WAT

Jan 2nd, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.24 KB | None | 0 0
  1. #if !FEATURE_PAL
  2.         internal const String KERNEL32 = "kernel32.dll";
  3.         internal const String USER32   = "user32.dll";
  4.         internal const String ADVAPI32 = "advapi32.dll";
  5.         internal const String OLE32    = "ole32.dll";
  6.         internal const String OLEAUT32 = "oleaut32.dll";
  7.         internal const String SHELL32  = "shell32.dll";
  8.         internal const String SHIM     = "mscoree.dll";
  9.         internal const String CRYPT32  = "crypt32.dll";
  10.         internal const String SECUR32  = "secur32.dll";
  11.         internal const String NTDLL    = "ntdll.dll";
  12. #if FEATURE_MAIN_CLR_MODULE_USES_CORE_NAME
  13.         internal const String MSCORWKS = "coreclr.dll";
  14. #else //FEATURE_MAIN_CLR_MODULE_USES_CORE_NAME
  15.         internal const String MSCORWKS = "clr.dll";
  16. #endif //FEATURE_MAIN_CLR_MODULE_USES_CORE_NAME
  17.  
  18. #else // !FEATURE_PAL
  19.  
  20.  #if !PLATFORM_UNIX
  21.         internal const String DLLPREFIX = "";
  22.         internal const String DLLSUFFIX = ".dll";
  23.  #else // !PLATFORM_UNIX
  24.   #if __APPLE__
  25.         internal const String DLLPREFIX = "lib";
  26.         internal const String DLLSUFFIX = ".dylib";
  27.   #else
  28.         internal const String DLLPREFIX = "lib";
  29.         internal const String DLLSUFFIX = ".so";
  30.   #endif
  31.  #endif // !PLATFORM_UNIX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement