Skip to content

Commit 9aa767d

Browse files
att
1 parent a7fa5a1 commit 9aa767d

File tree

2 files changed

+90
-90
lines changed

2 files changed

+90
-90
lines changed

LuaCEmbed.h

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -22833,7 +22833,7 @@ long privateLuaCEmbedTable_convert_index(LuaCEmbedTable *self, private_lua_cemb
2283322833

2283422834
int LuaCEmbedTable_get_type_by_index(LuaCEmbedTable *self, int index);
2283522835

22836-
long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index);
22836+
long long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index);
2283722837

2283822838
double LuaCEmbedTable_get_double_by_index(LuaCEmbedTable *self, int index);
2283922839

@@ -22849,7 +22849,7 @@ bool LuaCEmbedTable_get_bool_by_index(LuaCEmbedTable *self, int index);
2284922849

2285022850
char* LuaCembedTable_get_string_prop(LuaCEmbedTable *self, const char *name);
2285122851

22852-
long LuaCembedTable_get_long_prop(LuaCEmbedTable *self, const char *name);
22852+
long long LuaCembedTable_get_long_prop(LuaCEmbedTable *self, const char *name);
2285322853

2285422854
double LuaCembedTable_get_double_prop(LuaCEmbedTable *self, const char *name);
2285522855

@@ -22863,7 +22863,7 @@ int LuaCEmbedTable_get_type_prop(LuaCEmbedTable *self, const char *name);
2286322863

2286422864
void LuaCEmbedTable_set_string_by_index(LuaCEmbedTable *self, long index, const char *value);
2286522865

22866-
void LuaCEmbedTable_set_long_by_index(LuaCEmbedTable *self, long index, long value);
22866+
void LuaCEmbedTable_set_long_by_index(LuaCEmbedTable *self, long long index, long value);
2286722867

2286822868
void LuaCEmbedTable_set_double_by_index(LuaCEmbedTable *self, long index, double value);
2286922869

@@ -22882,7 +22882,7 @@ void LuaCEmbedTable_set_method(LuaCEmbedTable *self, const char *name, LuaCEmbed
2288222882

2288322883
void LuaCEmbedTable_set_string_prop(LuaCEmbedTable *self, const char *name, const char *value);
2288422884

22885-
void LuaCEmbedTable_set_long_prop(LuaCEmbedTable *self, const char *name, long value);
22885+
void LuaCEmbedTable_set_long_prop(LuaCEmbedTable *self, const char *name, long long value);
2288622886

2288722887
void LuaCEmbedTable_set_double_prop(LuaCEmbedTable *self, const char *name, double value);
2288822888

@@ -22901,7 +22901,7 @@ void LuaCEmbedTable_insert_string_at_index(LuaCEmbedTable *self, long index, co
2290122901

2290222902
void LuaCEmbedTable_insert_bool_at_index(LuaCEmbedTable *self, long index,bool value);
2290322903

22904-
void LuaCEmbedTable_insert_long_at_index(LuaCEmbedTable *self, long index,long value);
22904+
void LuaCEmbedTable_insert_long_at_index(LuaCEmbedTable *self, long long index,long value);
2290522905

2290622906
void LuaCEmbedTable_insert_double_at_index(LuaCEmbedTable *self, long index,double value);
2290722907

@@ -22948,7 +22948,7 @@ void LuaCEmbedTable_append_evaluation(LuaCEmbedTable *self, const char *code, .
2294822948

2294922949
void LuaCEmbedTable_append_string(LuaCEmbedTable *self, const char *value);
2295022950

22951-
void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long value);
22951+
void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long long value);
2295222952

2295322953
void LuaCEmbedTable_append_double(LuaCEmbedTable *self, double value);
2295422954

@@ -23022,7 +23022,7 @@ int LuaCEmbed_get_arg_type(LuaCEmbed *self,int index);
2302223022

2302323023

2302423024

23025-
long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index);
23025+
long long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index);
2302623026

2302723027
double LuaCEmbed_get_double_arg(LuaCEmbed *self, int index);
2302823028

@@ -23042,11 +23042,11 @@ int private_LuaCembed_run_code_with_args(LuaCEmbed *self,int index,const char *c
2304223042

2304323043
int privateLuaCembed_ensure_arg_evaluation_type(LuaCEmbed *self,int index,int expected_type);
2304423044

23045-
long LuaCEmbed_get_type_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
23045+
int LuaCEmbed_get_type_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
2304623046

23047-
long LuaCEmbed_generate_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
23047+
int LuaCEmbed_generate_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
2304823048

23049-
long LuaCEmbed_get_long_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
23049+
long long LuaCEmbed_get_long_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
2305023050

2305123051

2305223052
double LuaCEmbed_get_double_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...);
@@ -23069,7 +23069,7 @@ int LuaCEmbed_ensure_global_type(LuaCEmbed *self, const char *name,int expected_
2306923069

2307023070
int LuaCEmbed_get_global_type(LuaCEmbed *self,const char *name);
2307123071

23072-
long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name);
23072+
long long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name);
2307323073

2307423074
double LuaCEmbed_get_global_double(LuaCEmbed *self,const char *name);
2307523075

@@ -23089,7 +23089,7 @@ LuaCEmbedTable * LuaCembed_new_global_table(LuaCEmbed *self, const char *name);
2308923089

2309023090
void LuaCEmbed_set_global_string(LuaCEmbed *self, const char *name, const char *value);
2309123091

23092-
void LuaCEmbed_set_global_long(LuaCEmbed *self, const char *name, long value);
23092+
void LuaCEmbed_set_global_long(LuaCEmbed *self, const char *name, long long value);
2309323093

2309423094
void LuaCEmbed_set_global_double(LuaCEmbed *self, const char *name, double value);
2309523095

@@ -23142,7 +23142,7 @@ int LuaCEmbed_get_evaluation_type(LuaCEmbed *self,const char *code, ...);
2314223142

2314323143
long LuaCEmbed_get_evaluation_table_size(LuaCEmbed *self,const char *code, ...);
2314423144

23145-
long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...);
23145+
long long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...);
2314623146

2314723147
double LuaCEmbed_get_evaluation_double(LuaCEmbed *self,const char *code, ...);
2314823148

@@ -23175,7 +23175,7 @@ bool LuaCEmbed_get_evaluation_bool(LuaCEmbed *self,const char *code, ...);
2317523175

2317623176

2317723177

23178-
void LuaCEmbed_set_long_lib_prop(LuaCEmbed *self,const char *name,long value);
23178+
void LuaCEmbed_set_long_lib_prop(LuaCEmbed *self,const char *name,long long value);
2317923179

2318023180
void LuaCEmbed_set_double_lib_prop(LuaCEmbed *self,const char *name,double value);
2318123181

@@ -23189,7 +23189,7 @@ void LuaCEmbed_set_table_lib_prop(LuaCEmbed *self,const char *name,LuaCEmbedTabl
2318923189

2319023190

2319123191

23192-
void LuaCEmbed_set_long_lib_prop(LuaCEmbed *self,const char *name,long value){
23192+
void LuaCEmbed_set_long_lib_prop(LuaCEmbed *self,const char *name,long long value){
2319323193
lua_getglobal(self->state,PRIVATE_LUA_CEMBED_MAIN_LIB_TABLE_NAME);
2319423194
lua_pushvalue(self->state,-1);
2319523195
//set the function name
@@ -23296,7 +23296,7 @@ typedef struct {
2329623296

2329723297
int (*ensure_type)(LuaCEmbed *self, const char *name,int expected_type);
2329823298
int (*get_type)(LuaCEmbed *self,const char *name);
23299-
long (*get_long)(LuaCEmbed *self,const char *name);
23299+
long long (*get_long)(LuaCEmbed *self,const char *name);
2330023300
double (*get_double)(LuaCEmbed *self,const char *name);
2330123301
bool (*get_bool)(LuaCEmbed *self,const char *name);
2330223302
char * (*get_string)(LuaCEmbed *self,const char *name);
@@ -23305,7 +23305,7 @@ typedef struct {
2330523305

2330623306

2330723307
void (*set_string)(LuaCEmbed *self,const char *name,const char *value);
23308-
void (*set_long)(LuaCEmbed *self,const char *name,long value);
23308+
void (*set_long)(LuaCEmbed *self,const char *name,long long value);
2330923309
void (*set_double)(LuaCEmbed *self,const char *name,double value);
2331023310
void (*set_bool)(LuaCEmbed *self,const char *name,bool value);
2331123311

@@ -23323,14 +23323,14 @@ typedef struct {
2332323323

2332423324
int (*size)(LuaCEmbed *self);
2332523325
int (*get_type)(LuaCEmbed *self,int index);
23326-
long (*get_long)(LuaCEmbed *self, int index);
23326+
long long (*get_long)(LuaCEmbed *self, int index);
2332723327
double (*get_double)(LuaCEmbed *self, int index);
2332823328
bool (*get_bool)(LuaCEmbed *self, int index);
2332923329
char * (*get_str)(LuaCEmbed *self, int index);
2333023330
LuaCEmbedTable * (*get_table)(LuaCEmbed *self,int index);
23331-
long (*generate_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23332-
long (*get_type_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23333-
long (*get_long_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23331+
int (*generate_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23332+
int (*get_type_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23333+
long long (*get_long_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
2333423334
double (*get_double_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
2333523335
bool (*get_bool_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
2333623336
char* (*get_string_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
@@ -23347,7 +23347,7 @@ LuaCembedArgsModule newLuaCembedArgsModule();
2334723347
typedef struct {
2334823348

2334923349
void (*append_string)(LuaCEmbedTable *self, const char *value);
23350-
void (*append_long)(LuaCEmbedTable *self, long value);
23350+
void (*append_long)(LuaCEmbedTable *self, long long value);
2335123351
void (*append_double)(LuaCEmbedTable *self, double value);
2335223352
void (*append_bool)(LuaCEmbedTable *self, bool value);
2335323353
void (*append_table)(LuaCEmbedTable *self, LuaCEmbedTable *table);
@@ -23356,15 +23356,15 @@ typedef struct {
2335623356

2335723357
void (*insert_string_at_index)(LuaCEmbedTable *self, long index, const char *value);
2335823358
void (*insert_bool_at_index)(LuaCEmbedTable *self, long index,bool value);
23359-
void (*insert_long_at_index)(LuaCEmbedTable *self, long index,long value);
23359+
void (*insert_long_at_index)(LuaCEmbedTable *self, long long index,long value);
2336023360
void (*insert_double_at_index)(LuaCEmbedTable *self, long index,double value);
2336123361
void (*insert_table_at_index)(LuaCEmbedTable *self, long index,LuaCEmbedTable *table);
2336223362

2336323363

2336423364

2336523365
void (*set_sub_table_by_index)(LuaCEmbedTable *self, long index,LuaCEmbedTable *sub_table);
2336623366
void (*set_string_by_index)(LuaCEmbedTable *self, long index, const char *value);
23367-
void (*set_long_by_index)(LuaCEmbedTable *self, long index, long value);
23367+
void (*set_long_by_index)(LuaCEmbedTable *self, long long index, long value);
2336823368
void (*set_double_by_index)(LuaCEmbedTable *self, long index, double value);
2336923369
void (*set_bool_by_index)(LuaCEmbedTable *self, long index, bool value);
2337023370
void (*set_evaluation_by_index)(LuaCEmbedTable *self, long index, const char *code, ...);
@@ -23375,12 +23375,12 @@ typedef struct {
2337523375

2337623376
void (*set_method)(LuaCEmbedTable *self , const char *name, LuaCEmbedResponse *(*callback)(LuaCEmbedTable *self, LuaCEmbed *args));
2337723377
void (*set_string_prop)(LuaCEmbedTable *self , const char *name, const char *value);
23378-
void (*set_long_prop)(LuaCEmbedTable *self , const char *name, long value);
23378+
void (*set_long_prop)(LuaCEmbedTable *self , const char *name, long long value);
2337923379
void (*set_double_prop)(LuaCEmbedTable *self , const char *name, double value);
2338023380
void (*set_bool_prop)(LuaCEmbedTable *self , const char *name, bool value);
2338123381
int (*get_type_prop)(LuaCEmbedTable *self, const char *name);
2338223382
char* (*get_string_prop)(LuaCEmbedTable *self , const char *name);
23383-
long (*get_long_prop)(LuaCEmbedTable *self , const char *name);
23383+
long long (*get_long_prop)(LuaCEmbedTable *self , const char *name);
2338423384
double (*get_double_prop)(LuaCEmbedTable *self , const char *name);
2338523385
bool (*get_bool_prop)(LuaCEmbedTable *self , const char *name);
2338623386
LuaCEmbedTable * (*new_anonymous_table)(LuaCEmbed *self);
@@ -23394,7 +23394,7 @@ typedef struct {
2339423394

2339523395
long (*get_size)(LuaCEmbedTable *self);
2339623396
int (*get_type_by_index)(LuaCEmbedTable *self, int index);
23397-
long (*get_long_by_index)(LuaCEmbedTable *self, int index);
23397+
long long (*get_long_by_index)(LuaCEmbedTable *self, int index);
2339823398
double (*get_double_by_index)(LuaCEmbedTable *self, int index);
2339923399
char * (*get_string_by_index)(LuaCEmbedTable *self, int index);
2340023400
bool (*get_bool_by_index)(LuaCEmbedTable *self, int index);
@@ -23427,11 +23427,11 @@ typedef struct{
2342723427
char * (*get_string_evaluation)(LuaCEmbed *self,const char *code, ...);
2342823428
int (*get_evaluation_type)(LuaCEmbed *self,const char *code,...);
2342923429
long (*get_evaluation_size)(LuaCEmbed *self,const char *code,...);
23430-
long (*get_evaluation_long)(LuaCEmbed *self,const char *code,...);
23430+
long long (*get_evaluation_long)(LuaCEmbed *self,const char *code,...);
2343123431
double (*get_evaluation_double)(LuaCEmbed *self,const char *code,...);
2343223432
bool (*get_evaluation_bool)(LuaCEmbed *self, const char *code,...);
2343323433

23434-
void (*set_long_lib_prop)(LuaCEmbed *self,const char *name,long value);
23434+
void (*set_long_lib_prop)(LuaCEmbed *self,const char *name,long long value);
2343523435

2343623436
void (*set_double_lib_prop)(LuaCEmbed *self,const char *name,double value);
2343723437
void (*set_bool_lib_prop)(LuaCEmbed *self,const char *name,bool value);
@@ -23776,13 +23776,13 @@ int LuaCEmbed_get_arg_type(LuaCEmbed *self,int index){
2377623776
}
2377723777

2377823778

23779-
long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index){
23779+
long long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index){
2378023780
PRIVATE_LUA_CEMBED_PROTECT_NUM
2378123781
privateLuaCEmbed_put_arg_on_top(self,index);
2378223782
if(private_LuaCEmbed_ensure_top_stack_arg_type(self,index,LUA_CEMBED_NUMBER)){
2378323783
return (long )LUA_CEMBED_NOT_FOUND;
2378423784
}
23785-
return (long)lua_tonumber(self->state,-1);
23785+
return (long long)lua_tonumber(self->state,-1);
2378623786
}
2378723787

2378823788

@@ -23933,7 +23933,7 @@ int privateLuaCembed_ensure_arg_evaluation_type(LuaCEmbed *self,int index,int ex
2393323933
);
2393423934
return LUA_CEMBED_GENERIC_ERROR;
2393523935
}
23936-
long LuaCEmbed_get_type_clojure_evalation(LuaCEmbed *self,int index,const char *code,...){
23936+
int LuaCEmbed_get_type_clojure_evalation(LuaCEmbed *self,int index,const char *code,...){
2393723937
PRIVATE_LUA_CEMBED_PROTECT_NUM
2393823938

2393923939
va_list args;
@@ -23945,7 +23945,7 @@ long LuaCEmbed_get_type_clojure_evalation(LuaCEmbed *self,int index,const char *
2394523945
}
2394623946
return lua_type(self->state,-1);
2394723947
}
23948-
long LuaCEmbed_generate_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...){
23948+
int LuaCEmbed_generate_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...){
2394923949
PRIVATE_LUA_CEMBED_PROTECT_NUM
2395023950

2395123951
va_list args;
@@ -23957,7 +23957,7 @@ long LuaCEmbed_generate_arg_clojure_evalation(LuaCEmbed *self,int index,const ch
2395723957
}
2395823958
return LUA_CEMBED_OK;
2395923959
}
23960-
long LuaCEmbed_get_long_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...){
23960+
long long LuaCEmbed_get_long_arg_clojure_evalation(LuaCEmbed *self,int index,const char *code,...){
2396123961
PRIVATE_LUA_CEMBED_PROTECT_NUM
2396223962

2396323963
va_list args;
@@ -23970,7 +23970,7 @@ long LuaCEmbed_get_long_arg_clojure_evalation(LuaCEmbed *self,int index,const ch
2397023970
if(privateLuaCembed_ensure_arg_evaluation_type(self,index,LUA_CEMBED_NUMBER)){
2397123971
return LUA_CEMBED_GENERIC_ERROR;
2397223972
}
23973-
return (long) lua_tonumber(self->state,-1);
23973+
return (long long) lua_tonumber(self->state,-1);
2397423974

2397523975
}
2397623976

@@ -24225,7 +24225,7 @@ bool LuaCembedTable_has_key_at_index(LuaCEmbedTable *self, long index){
2422524225
return false;
2422624226
}
2422724227

24228-
long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index){
24228+
long long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index){
2422924229
PRIVATE_LUA_CEMBED_TABLE_PROTECT_NUM
2423024230
private_lua_cembed_memory_limit = self->main_object->memory_limit;
2423124231

@@ -24396,7 +24396,7 @@ char* LuaCembedTable_get_string_prop(LuaCEmbedTable *self , const char *name){
2439624396
}
2439724397

2439824398

24399-
long LuaCembedTable_get_long_prop(LuaCEmbedTable *self , const char *name){
24399+
long long LuaCembedTable_get_long_prop(LuaCEmbedTable *self , const char *name){
2440024400
PRIVATE_LUA_CEMBED_TABLE_PROTECT_NUM
2440124401
private_lua_cembed_memory_limit = self->main_object->memory_limit;
2440224402

@@ -24405,7 +24405,7 @@ long LuaCembedTable_get_long_prop(LuaCEmbedTable *self , const char *name){
2440524405
if(privateLuaCEmbedTable_ensure_type_with_key(self, name, LUA_CEMBED_NUMBER)){
2440624406
return LUA_CEMBED_GENERIC_ERROR;
2440724407
}
24408-
return (long )lua_tonumber(self->main_object->state,-1);
24408+
return (long long)lua_tonumber(self->main_object->state,-1);
2440924409
}
2441024410

2441124411
double LuaCembedTable_get_double_prop(LuaCEmbedTable *self , const char *name){
@@ -24455,7 +24455,7 @@ void LuaCEmbedTable_set_string_by_index(LuaCEmbedTable *self, long index, const
2445524455

2445624456
}
2445724457

24458-
void LuaCEmbedTable_set_long_by_index(LuaCEmbedTable *self, long index, long value){
24458+
void LuaCEmbedTable_set_long_by_index(LuaCEmbedTable *self, long long index, long value){
2445924459
PRIVATE_LUA_CEMBED_TABLE_PROTECT_VOID
2446024460
private_lua_cembed_memory_limit = self->main_object->memory_limit;
2446124461

@@ -24612,7 +24612,7 @@ void LuaCEmbedTable_set_string_prop(LuaCEmbedTable *self , const char *name, co
2461224612

2461324613
}
2461424614

24615-
void LuaCEmbedTable_set_long_prop(LuaCEmbedTable *self , const char *name, long value){
24615+
void LuaCEmbedTable_set_long_prop(LuaCEmbedTable *self , const char *name, long long value){
2461624616
PRIVATE_LUA_CEMBED_TABLE_PROTECT_VOID
2461724617

2461824618
lua_getglobal(self->main_object->state,self->global_name);
@@ -24746,7 +24746,7 @@ void LuaCEmbedTable_insert_bool_at_index(LuaCEmbedTable *self, long index,bool
2474624746
lua_settop(self->main_object->state, 0);
2474724747
}
2474824748

24749-
void LuaCEmbedTable_insert_long_at_index(LuaCEmbedTable *self, long index,long value){
24749+
void LuaCEmbedTable_insert_long_at_index(LuaCEmbedTable *self, long long index,long value){
2475024750

2475124751
// Movendo os elementos existentes para frente
2475224752
long formatted_index = index + LUA_CEMBED_INDEX_DIF;
@@ -25103,7 +25103,7 @@ void LuaCEmbedTable_append_string(LuaCEmbedTable *self, const char *value){
2510325103

2510425104
}
2510525105

25106-
void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long value){
25106+
void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long long value){
2510725107
PRIVATE_LUA_CEMBED_TABLE_PROTECT_VOID
2510825108
private_lua_cembed_memory_limit = self->main_object->memory_limit;
2510925109

@@ -25327,7 +25327,7 @@ int LuaCEmbed_get_global_type(LuaCEmbed *self,const char *name){
2532725327
return lua_type(self->state,-1);
2532825328
}
2532925329

25330-
long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name){
25330+
long long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name){
2533125331
PRIVATE_LUA_CEMBED_PROTECT_NUM
2533225332
private_lua_cembed_memory_limit = self->memory_limit;
2533325333

@@ -25484,7 +25484,7 @@ void LuaCEmbed_set_global_string(LuaCEmbed *self, const char *name, const char
2548425484
lua_setglobal(self->state,name);
2548525485
}
2548625486

25487-
void LuaCEmbed_set_global_long(LuaCEmbed *self, const char *name, long value){
25487+
void LuaCEmbed_set_global_long(LuaCEmbed *self, const char *name, long long value){
2548825488
PRIVATE_LUA_CEMBED_PROTECT_VOID
2548925489
private_lua_cembed_memory_limit = self->memory_limit;
2549025490

@@ -25935,7 +25935,7 @@ long LuaCEmbed_get_evaluation_table_size(LuaCEmbed *self,const char *code, ...){
2593525935

2593625936

2593725937

25938-
long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...){
25938+
long long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...){
2593925939
PRIVATE_LUA_CEMBED_PROTECT_NUM
2594025940
private_lua_cembed_memory_limit = self->memory_limit;
2594125941

0 commit comments

Comments
 (0)