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.
36 lines
1.1 KiB
36 lines
1.1 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
//============================================================================= |
|
|
|
#ifndef MOVIEOBJECTS_INTERFACE_H |
|
#define MOVIEOBJECTS_INTERFACE_H |
|
|
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// typedefs that should be in platform.h |
|
//----------------------------------------------------------------------------- |
|
typedef unsigned char uchar; |
|
typedef unsigned short ushort; |
|
typedef unsigned int uint; |
|
typedef unsigned long ulong; |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Forward declarations |
|
//----------------------------------------------------------------------------- |
|
class IGlobalFlexController; |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// Global interfaces used by the movieobjects library |
|
//----------------------------------------------------------------------------- |
|
extern IGlobalFlexController *g_pGlobalFlexController; |
|
|
|
|
|
#endif // MOVIEOBJECTS_INTERFACE_H
|