mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
35 lines
543 B
C
35 lines
543 B
C
//========= 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_
|