aboutsummaryrefslogtreecommitdiff
path: root/sp/src/utils/common/movie.h
diff options
context:
space:
mode:
Diffstat (limited to 'sp/src/utils/common/movie.h')
-rw-r--r--sp/src/utils/common/movie.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/sp/src/utils/common/movie.h b/sp/src/utils/common/movie.h
new file mode 100644
index 00000000..78ba92fb
--- /dev/null
+++ b/sp/src/utils/common/movie.h
@@ -0,0 +1,34 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//
+//=============================================================================//
+
+#ifndef _MOVIE_H_
+#define _MOVIE_H_
+
+/*
+ movie.h
+
+ definitions and such for dumping screen shots to make a movie
+*/
+
+typedef struct
+{
+ unsigned long tag;
+ unsigned long size;
+} movieblockheader_t;
+
+
+typedef struct
+{
+ short width;
+ short height;
+ short depth;
+} movieframe_t;
+
+
+
+#endif _MOVIE_H_ \ No newline at end of file