NativeMethods.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* This file is part of SevenZipSharp.
  2. SevenZipSharp is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU Lesser General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. SevenZipSharp is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public License
  11. along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. using System;
  14. using System.Runtime.InteropServices;
  15. #if MONO
  16. using SevenZip.Mono.COM;
  17. #endif
  18. namespace SevenZip
  19. {
  20. #if UNMANAGED
  21. internal static class NativeMethods
  22. {
  23. #if !WINCE && !MONO
  24. #region Delegates
  25. [UnmanagedFunctionPointer(CallingConvention.StdCall)]
  26. public delegate int CreateObjectDelegate(
  27. [In] ref Guid classID,
  28. [In] ref Guid interfaceID,
  29. [MarshalAs(UnmanagedType.Interface)] out object outObject);
  30. #endregion
  31. [DllImport("kernel32.dll", BestFitMapping = false, ThrowOnUnmappableChar = true)]
  32. public static extern IntPtr LoadLibrary([MarshalAs(UnmanagedType.LPStr)] string fileName);
  33. [DllImport("kernel32.dll")]
  34. [return: MarshalAs(UnmanagedType.Bool)]
  35. public static extern bool FreeLibrary(IntPtr hModule);
  36. [DllImport("kernel32.dll", BestFitMapping = false, ThrowOnUnmappableChar = true)]
  37. public static extern IntPtr GetProcAddress(IntPtr hModule, [MarshalAs(UnmanagedType.LPStr)] string procName);
  38. #endif
  39. #if WINCE
  40. [DllImport("7z.dll", EntryPoint="CreateObject")]
  41. public static extern int CreateCOMObject(
  42. [In] ref Guid classID,
  43. [In] ref Guid interfaceID,
  44. [MarshalAs(UnmanagedType.Interface)] out object outObject);
  45. #endif
  46. public static T SafeCast<T>(PropVariant var, T def)
  47. {
  48. object obj;
  49. try
  50. {
  51. obj = var.Object;
  52. }
  53. catch (Exception)
  54. {
  55. return def;
  56. }
  57. if (obj != null && obj is T)
  58. {
  59. return (T) obj;
  60. }
  61. return def;
  62. }
  63. }
  64. #endif
  65. }