Sha256: 1e14f1c8cfdf0b923750112e77bb594791a9cbd2aba053486207108e3ff66227

Contents?: true

Size: 364 Bytes

Versions: 3

Compression:

Stored size: 364 Bytes

Contents

/*
** Fast function IDs.
** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h
*/

#ifndef _LJ_FF_H
#define _LJ_FF_H

/* Fast function ID. */
typedef enum {
  FF_LUA_ = FF_LUA,	/* Lua function (must be 0). */
  FF_C_ = FF_C,		/* Regular C function (must be 1). */
#define FFDEF(name)	FF_##name,
#include "lj_ffdef.h"
  FF__MAX
} FastFunc;

#endif

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
immunio-2.0.4 lua-hooks/ext/luajit/src/lj_ff.h
immunio-2.0.3 lua-hooks/ext/luajit/src/lj_ff.h
immunio-2.0.2 lua-hooks/ext/luajit/src/lj_ff.h