home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / activecf.h < prev    next >
Text File  |  1998-04-25  |  833b  |  24 lines

  1. //==========================================================================;
  2. //
  3. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. //  PURPOSE.
  7. //
  8. //  Copyright (c) 1992 - 1997  Microsoft Corporation.  All Rights Reserved.
  9. //
  10. //--------------------------------------------------------------------------;
  11. //
  12. // Contains the data formats for the transfer of VfW4 filters
  13. // via the clipboard
  14.  
  15.  
  16. #define CFSTR_VFW_FILTERLIST "Video for Windows 4 Filters"
  17.  
  18. typedef struct tagVFW_FILTERLIST{
  19.     UINT  cFilters;                     // number of CLSIDs in aClsId
  20.     CLSID aClsId[1];                    // ClsId of each filter
  21. } VFW_FILTERLIST;
  22.  
  23.  
  24.