mirror of
https://github.com/thug1src/thug.git
synced 2024-11-30 12:06:44 +00:00
75 lines
2.8 KiB
C++
75 lines
2.8 KiB
C++
/*****************************************************************************
|
|
** **
|
|
** Neversoft Entertainment **
|
|
** **
|
|
** Copyright (C) 1999 - All Rights Reserved **
|
|
** **
|
|
******************************************************************************
|
|
** **
|
|
** Project: PS2 **
|
|
** **
|
|
** Module: Scripting **
|
|
** **
|
|
** File name: ftables.h **
|
|
** **
|
|
** Created: 09/15/2000 - ksh **
|
|
** **
|
|
*****************************************************************************/
|
|
|
|
#ifndef __SCRIPTING_FTABLES_H
|
|
#define __SCRIPTING_FTABLES_H
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
#ifndef __CORE_DEFINES_H
|
|
#include <core/defines.h>
|
|
#endif
|
|
|
|
#ifndef __SCRIPTING_INIT_H
|
|
#include <gel/scripting/init.h>
|
|
#endif
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
namespace Script
|
|
{
|
|
|
|
/*****************************************************************************
|
|
** Class Definitions **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Declarations **
|
|
*****************************************************************************/
|
|
|
|
extern SCFunction CFunctionLookupTable[];
|
|
|
|
extern const char *ppMemberFunctionNames[];
|
|
|
|
/*****************************************************************************
|
|
** Public Prototypes **
|
|
*****************************************************************************/
|
|
|
|
int GetCFunctionLookupTableSize();
|
|
int GetNumMemberFunctions();
|
|
|
|
/*****************************************************************************
|
|
** Inline Functions **
|
|
*****************************************************************************/
|
|
|
|
} // namespace FTables
|
|
|
|
#endif // __SCRIPTING_FTABLES_H
|
|
|