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.

18 lines
609 B

  1. //------------------------------------------------------------------------------
  2. // File: ActiveCf.h
  3. //
  4. // Desc: Contains the data formats for the transfer of VfW4 filters via the
  5. // clipboard.
  6. //
  7. // Copyright (c) 1992 - 2000, Microsoft Corporation. All rights reserved.
  8. //------------------------------------------------------------------------------
  9. #define CFSTR_VFW_FILTERLIST "Video for Windows 4 Filters"
  10. typedef struct tagVFW_FILTERLIST{
  11. UINT cFilters; // number of CLSIDs in aClsId
  12. CLSID aClsId[1]; // ClsId of each filter
  13. } VFW_FILTERLIST;