Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
769 B

  1. // IMA.h : Declaration of private interface for IMA legacy mode.
  2. //
  3. //
  4. #ifndef __IMA_H_
  5. #define __IMA_H_
  6. #include <windows.h>
  7. #define COM_NO_WINDOWS_H
  8. #include <objbase.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #undef INTERFACE
  13. #define INTERFACE IDirectMusicIMA
  14. DECLARE_INTERFACE_(IDirectMusicIMA, IUnknown)
  15. {
  16. /* IUnknown */
  17. STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID FAR *) PURE;
  18. STDMETHOD_(ULONG,AddRef) (THIS) PURE;
  19. STDMETHOD_(ULONG,Release) (THIS) PURE;
  20. /* IDirectMusicIMA */
  21. STDMETHOD(LegacyCaching) (THIS_ BOOL fEnable) PURE;
  22. };
  23. DEFINE_GUID(IID_IDirectMusicIMA,0xd2ac28b3, 0xb39b, 0x11d1, 0x87, 0x4, 0x0, 0x60, 0x8, 0x93, 0xb1, 0xbd);
  24. #ifdef __cplusplus
  25. }; /* extern "C" */
  26. #endif
  27. #endif /* #ifndef __IMA_H_ */