mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-09 10:39:03 +08:00
34 lines
541 B
C
34 lines
541 B
C
|
//========= Copyright <20> 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_
|