home *** CD-ROM | disk | FTP | other *** search
/ Beginning Direct3D Game Programming / Direct3D.iso / directx / dxf / include / activecf.h next >
Text File  |  2000-10-01  |  627b  |  19 lines

  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.  
  10.  
  11. #define CFSTR_VFW_FILTERLIST "Video for Windows 4 Filters"
  12.  
  13. typedef struct tagVFW_FILTERLIST{
  14.     UINT  cFilters;                     // number of CLSIDs in aClsId
  15.     CLSID aClsId[1];                    // ClsId of each filter
  16. } VFW_FILTERLIST;
  17.  
  18.  
  19.