summaryrefslogtreecommitdiffstats
path: root/sdk/dx8sdk/Include/dmo.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-02 18:49:12 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-02 18:49:12 +0200
commit3e24ae8812ca4a0031d82ea7f7393605b8a4283a (patch)
tree5cc79378e86970d3b63cbed173d627410ea90ca6 /sdk/dx8sdk/Include/dmo.h
parentMerge pull request #669 from erorcun/miami (diff)
parentMove sdk and eax (diff)
downloadre3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.gz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.bz2
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.lz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.xz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.zst
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.zip
Diffstat (limited to 'sdk/dx8sdk/Include/dmo.h')
-rw-r--r--sdk/dx8sdk/Include/dmo.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/sdk/dx8sdk/Include/dmo.h b/sdk/dx8sdk/Include/dmo.h
new file mode 100644
index 00000000..30cc2e9d
--- /dev/null
+++ b/sdk/dx8sdk/Include/dmo.h
@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+// File: DMO.h
+//
+// Desc: Headers needed by almost all DMOs.
+//
+// Copyright (c) 1999 - 2001, Microsoft Corporation. All rights reserved.
+//------------------------------------------------------------------------------
+
+
+#ifndef __DMO_H__
+#define __DMO_H__
+
+
+#include "mediaerr.h"
+
+// When using ATL we get collisions on Lock, so in this case rename
+// IMediaObject::Lock to IMediaObject::DMOLock
+
+#ifdef FIX_LOCK_NAME
+#define Lock DMOLock
+#endif
+#include "mediaobj.h"
+#ifdef FIX_LOCK_NAME
+#undef Lock
+#endif
+#include "dmoreg.h"
+#include "dmort.h"
+
+#endif //__DMO_H__