mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 12:31:51 +00:00
36 lines
537 B
C
36 lines
537 B
C
|
/***
|
||
|
*
|
||
|
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
|
||
|
*
|
||
|
* This product contains software technology licensed from Id
|
||
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
****/
|
||
|
|
||
|
#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_
|