repo.or.cz
/
luajit-2.0
/
celess22.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add XBox 360 port.
[luajit-2.0/celess22.git]
/
src
/
lj_udata.h
blob
419da84f456e8290db6b899ea6b230fd985d16a9
1
/*
2
** Userdata handling.
3
** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h
4
*/
5
6
#ifndef _LJ_UDATA_H
7
#define _LJ_UDATA_H
8
9
#include
"lj_obj.h"
10
11
LJ_FUNC GCudata
*
lj_udata_new
(
lua_State
*
L
,
MSize sz
,
GCtab
*
env
);
12
LJ_FUNC
void
LJ_FASTCALL
lj_udata_free
(
global_State
*
g
,
GCudata
*
ud
);
13
14
#endif