mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
29 lines
793 B
C
29 lines
793 B
C
|
//===== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//===========================================================================//
|
|||
|
#ifndef IAVI_H
|
|||
|
#define IAVI_H
|
|||
|
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
// Handle to an AVI
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
typedef unsigned short AVIHandle_t;
|
|||
|
enum
|
|||
|
{
|
|||
|
AVIHANDLE_INVALID = (AVIHandle_t)~0
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
// Handle to an AVI material
|
|||
|
//-----------------------------------------------------------------------------
|
|||
|
typedef unsigned short AVIMaterial_t;
|
|||
|
enum
|
|||
|
{
|
|||
|
AVIMATERIAL_INVALID = (AVIMaterial_t)~0
|
|||
|
};
|
|||
|
|
|||
|
#endif // IAVI_H
|