blob: 2570bb920f560f34dcff5a2f79e79333d8970481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __LUAX_CFUNCTIONS_H__
#define __LUAX_CFUNCTIONS_H__
#include "luax_config.h"
/**
* luax_cfunctionĺעluaһЩܵͨú
*/
namespace Luax
{
///
/// õһupvalue
///
extern int luax_c_getupvalue(lua_State* L);
///
/// ô˺ʱᱨupvalue(1)ǴϢ
///
extern int luax_c_errfunc(lua_State* L);
}
#endif
|