diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-02 05:00:38 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-02 05:00:38 +0200 |
commit | b1f9e28cd155459ab2843690c248ed9f4767bc3f (patch) | |
tree | 8e7d2a33d4c5109ea3c3562940268afc57d0915c /dxsdk/Include/activecf.h | |
parent | rw skeleton (diff) | |
download | re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.gz re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.bz2 re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.lz re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.xz re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.zst re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.zip |
Diffstat (limited to '')
-rw-r--r-- | dxsdk/Include/activecf.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dxsdk/Include/activecf.h b/dxsdk/Include/activecf.h new file mode 100644 index 00000000..5efd8cfc --- /dev/null +++ b/dxsdk/Include/activecf.h @@ -0,0 +1,19 @@ +//------------------------------------------------------------------------------ +// File: ActiveCf.h +// +// Desc: Contains the data formats for the transfer of VfW4 filters via the +// clipboard. +// +// Copyright (c) 1992-2001, Microsoft Corporation. All rights reserved. +//------------------------------------------------------------------------------ + + +#define CFSTR_VFW_FILTERLIST "Video for Windows 4 Filters" + +typedef struct tagVFW_FILTERLIST{ + UINT cFilters; // number of CLSIDs in aClsId + CLSID aClsId[1]; // ClsId of each filter + +} VFW_FILTERLIST; + + |