You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
508 B
34 lines
508 B
//========= Copyright © 1996-2005, 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_
|