Counter Strike : Global Offensive Source Code
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.

33 lines
508 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #ifndef _MOVIE_H_
  9. #define _MOVIE_H_
  10. /*
  11. movie.h
  12. definitions and such for dumping screen shots to make a movie
  13. */
  14. typedef struct
  15. {
  16. unsigned long tag;
  17. unsigned long size;
  18. } movieblockheader_t;
  19. typedef struct
  20. {
  21. short width;
  22. short height;
  23. short depth;
  24. } movieframe_t;
  25. #endif _MOVIE_H_