summaryrefslogtreecommitdiffstats
path: root/sdk/dx8sdk/Include/activecf.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-02 18:36:50 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-02 18:36:50 +0200
commita786dd45a4ebc6b91936b5e46d0ef0a9befc05af (patch)
treeced50966eaaf373f8733547046baf2bdc558662d /sdk/dx8sdk/Include/activecf.h
parentMerge branch 'master' of https://github.com/GTAmodding/re3 into erorcun (diff)
downloadre3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.gz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.bz2
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.lz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.xz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.zst
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.zip
Diffstat (limited to 'sdk/dx8sdk/Include/activecf.h')
-rw-r--r--sdk/dx8sdk/Include/activecf.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/sdk/dx8sdk/Include/activecf.h b/sdk/dx8sdk/Include/activecf.h
new file mode 100644
index 00000000..5efd8cfc
--- /dev/null
+++ b/sdk/dx8sdk/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;
+
+