dispatch.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * ITypeInfo cache for IDispatch
  3. *
  4. * Copyright 2019 Zebediah Figura
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. #include "strmbase_private.h"
  21. WINE_DEFAULT_DEBUG_CHANNEL(quartz);
  22. static ITypeLib *control_typelib;
  23. static ITypeInfo *control_typeinfo[last_tid];
  24. static REFIID control_tid_id[] =
  25. {
  26. &IID_IBasicAudio,
  27. &IID_IBasicVideo,
  28. &IID_IMediaControl,
  29. &IID_IMediaEvent,
  30. &IID_IMediaPosition,
  31. &IID_IVideoWindow,
  32. };
  33. HRESULT strmbase_get_typeinfo(enum strmbase_type_id tid, ITypeInfo **ret)
  34. {
  35. HRESULT hr;
  36. if (!control_typelib)
  37. {
  38. ITypeLib *typelib;
  39. hr = LoadRegTypeLib(&LIBID_QuartzTypeLib, 1, 0, LOCALE_SYSTEM_DEFAULT, &typelib);
  40. if (FAILED(hr))
  41. {
  42. ERR("Failed to load typelib, hr %#lx.\n", hr);
  43. return hr;
  44. }
  45. if (InterlockedCompareExchangePointer((void **)&control_typelib, typelib, NULL))
  46. ITypeLib_Release(typelib);
  47. }
  48. if (!control_typeinfo[tid])
  49. {
  50. ITypeInfo *typeinfo;
  51. hr = ITypeLib_GetTypeInfoOfGuid(control_typelib, control_tid_id[tid], &typeinfo);
  52. if (FAILED(hr))
  53. {
  54. ERR("Failed to get type info for %s, hr %#lx.\n", debugstr_guid(control_tid_id[tid]), hr);
  55. return hr;
  56. }
  57. if (InterlockedCompareExchangePointer((void **)(control_typeinfo + tid), typeinfo, NULL))
  58. ITypeInfo_Release(typeinfo);
  59. }
  60. ITypeInfo_AddRef(*ret = control_typeinfo[tid]);
  61. return S_OK;
  62. }
  63. void strmbase_release_typelibs(void)
  64. {
  65. unsigned int i;
  66. for (i = 0; i < ARRAY_SIZE(control_typeinfo); ++i)
  67. {
  68. if (control_typeinfo[i])
  69. ITypeInfo_Release(control_typeinfo[i]);
  70. }
  71. if (control_typelib)
  72. ITypeLib_Release(control_typelib);
  73. }