area51/xCore/x_files/x_flare.hpp
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

44 lines
1.5 KiB
C++

//==============================================================================
//
// x_flare.hpp
//
//==============================================================================
#ifndef X_FLARE_HPP
#define X_FLARE_HPP
//==============================================================================
// DEFINITIONS
//==============================================================================
#define FLARE_NAME_LENGTH 32
//==============================================================================
// INCLUDES
//==============================================================================
#ifndef X_TYPES_HPP
#include "x_types.hpp"
#endif X_TYPES_HPP
//==============================================================================
// TYPES
//==============================================================================
typedef void flare_fn( u32 Data1, u32 Data2 );
//==============================================================================
// FUNCTIONS
//==============================================================================
void flare_Hook ( const char* pName, flare_fn* pFlareFn,
u32 Data1 = 0,
u32 Data2 = 0 );
void flare_Fire ( const char* pName );
//==============================================================================
#endif // X_FLARE_HPP
//==============================================================================