IClipAggregator.h 163 B

12345678
  1. #pragma once
  2. class IClipAggregator
  3. {
  4. public:
  5. virtual bool AddClip(LPVOID lpData, int nDataSize, int nPos, int nCount) = 0;
  6. virtual HGLOBAL GetHGlobal() = 0;
  7. };