summaryrefslogtreecommitdiff
path: root/git2.nobj.lua
blob: 47e703a90285d62b8dbc6d23a9d5cb97bfbdcf74 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

c_module "git2" {
-- module settings.
use_globals = false,
hide_meta_info = false, --true,

include "git2.h",

package "GIT" {
const "SUCCESS"        { 0 },
const "ERROR"          { -1 },
const "ENOTOID"        { -2 },
const "ENOTFOUND"      { -3 },
const "ENOMEM"         { -4 },
const "EOSERR"         { -5 },
const "EOBJTYPE"       { -6 },
const "EOBJCORRUPTED"  { -7 },
const "ENOTAREPO"      { -8 },
const "EINVALIDTYPE"   { -9 },
const "EMISSINGOBJDATA"{ -10 },
const "EPACKCORRUPTED" { -11 },
const "EFLOCKFAIL"     { -12 },
const "EZLIB"          { -13 },
const "EBUSY"          { -14 },
const "EBAREINDEX"     { -15 },
},

subfiles {
"repository.nobj.lua",
"rawobject.nobj.lua",
"oid.nobj.lua",
"database.nobj.lua",
"database_backend.nobj.lua",
"index.nobj.lua",
"index_entry.nobj.lua",
"error.nobj.lua",
"object.nobj.lua",
"blob.nobj.lua",
"signature.nobj.lua",
"commit.nobj.lua",
"tree.nobj.lua",
"tree_entry.nobj.lua",
"tag.nobj.lua",
"revwalk.nobj.lua",
},
}