1 |
bearsoft |
1.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 |
|
|
|