summaryrefslogtreecommitdiff
path: root/movieobjects/movieobjects_interfaces.h
diff options
context:
space:
mode:
Diffstat (limited to 'movieobjects/movieobjects_interfaces.h')
-rw-r--r--movieobjects/movieobjects_interfaces.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/movieobjects/movieobjects_interfaces.h b/movieobjects/movieobjects_interfaces.h
new file mode 100644
index 0000000..1e92b7e
--- /dev/null
+++ b/movieobjects/movieobjects_interfaces.h
@@ -0,0 +1,36 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#ifndef MOVIEOBJECTS_INTERFACE_H
+#define MOVIEOBJECTS_INTERFACE_H
+
+#ifdef _WIN32
+#pragma once
+#endif
+
+
+//-----------------------------------------------------------------------------
+// typedefs that should be in platform.h
+//-----------------------------------------------------------------------------
+typedef unsigned char uchar;
+typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned long ulong;
+
+
+//-----------------------------------------------------------------------------
+// Forward declarations
+//-----------------------------------------------------------------------------
+class IGlobalFlexController;
+
+
+//-----------------------------------------------------------------------------
+// Global interfaces used by the movieobjects library
+//-----------------------------------------------------------------------------
+extern IGlobalFlexController *g_pGlobalFlexController;
+
+
+#endif // MOVIEOBJECTS_INTERFACE_H \ No newline at end of file