@@ -22833,7 +22833,7 @@ long privateLuaCEmbedTable_convert_index(LuaCEmbedTable *self, private_lua_cemb
22833
22833
22834
22834
int LuaCEmbedTable_get_type_by_index(LuaCEmbedTable *self, int index);
22835
22835
22836
- long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index);
22836
+ long long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index);
22837
22837
22838
22838
double LuaCEmbedTable_get_double_by_index(LuaCEmbedTable *self, int index);
22839
22839
@@ -22849,7 +22849,7 @@ bool LuaCEmbedTable_get_bool_by_index(LuaCEmbedTable *self, int index);
22849
22849
22850
22850
char* LuaCembedTable_get_string_prop(LuaCEmbedTable *self, const char *name);
22851
22851
22852
- long LuaCembedTable_get_long_prop(LuaCEmbedTable *self, const char *name);
22852
+ long long LuaCembedTable_get_long_prop(LuaCEmbedTable *self, const char *name);
22853
22853
22854
22854
double LuaCembedTable_get_double_prop(LuaCEmbedTable *self, const char *name);
22855
22855
@@ -22863,7 +22863,7 @@ int LuaCEmbedTable_get_type_prop(LuaCEmbedTable *self, const char *name);
22863
22863
22864
22864
void LuaCEmbedTable_set_string_by_index(LuaCEmbedTable *self, long index, const char *value);
22865
22865
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);
22867
22867
22868
22868
void LuaCEmbedTable_set_double_by_index(LuaCEmbedTable *self, long index, double value);
22869
22869
@@ -22882,7 +22882,7 @@ void LuaCEmbedTable_set_method(LuaCEmbedTable *self, const char *name, LuaCEmbed
22882
22882
22883
22883
void LuaCEmbedTable_set_string_prop(LuaCEmbedTable *self, const char *name, const char *value);
22884
22884
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);
22886
22886
22887
22887
void LuaCEmbedTable_set_double_prop(LuaCEmbedTable *self, const char *name, double value);
22888
22888
@@ -22901,7 +22901,7 @@ void LuaCEmbedTable_insert_string_at_index(LuaCEmbedTable *self, long index, co
22901
22901
22902
22902
void LuaCEmbedTable_insert_bool_at_index(LuaCEmbedTable *self, long index,bool value);
22903
22903
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);
22905
22905
22906
22906
void LuaCEmbedTable_insert_double_at_index(LuaCEmbedTable *self, long index,double value);
22907
22907
@@ -22948,7 +22948,7 @@ void LuaCEmbedTable_append_evaluation(LuaCEmbedTable *self, const char *code, .
22948
22948
22949
22949
void LuaCEmbedTable_append_string(LuaCEmbedTable *self, const char *value);
22950
22950
22951
- void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long value);
22951
+ void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long long value);
22952
22952
22953
22953
void LuaCEmbedTable_append_double(LuaCEmbedTable *self, double value);
22954
22954
@@ -23022,7 +23022,7 @@ int LuaCEmbed_get_arg_type(LuaCEmbed *self,int index);
23022
23022
23023
23023
23024
23024
23025
- long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index);
23025
+ long long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index);
23026
23026
23027
23027
double LuaCEmbed_get_double_arg(LuaCEmbed *self, int index);
23028
23028
@@ -23042,11 +23042,11 @@ int private_LuaCembed_run_code_with_args(LuaCEmbed *self,int index,const char *c
23042
23042
23043
23043
int privateLuaCembed_ensure_arg_evaluation_type(LuaCEmbed *self,int index,int expected_type);
23044
23044
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,...);
23046
23046
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,...);
23048
23048
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,...);
23050
23050
23051
23051
23052
23052
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_
23069
23069
23070
23070
int LuaCEmbed_get_global_type(LuaCEmbed *self,const char *name);
23071
23071
23072
- long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name);
23072
+ long long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name);
23073
23073
23074
23074
double LuaCEmbed_get_global_double(LuaCEmbed *self,const char *name);
23075
23075
@@ -23089,7 +23089,7 @@ LuaCEmbedTable * LuaCembed_new_global_table(LuaCEmbed *self, const char *name);
23089
23089
23090
23090
void LuaCEmbed_set_global_string(LuaCEmbed *self, const char *name, const char *value);
23091
23091
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);
23093
23093
23094
23094
void LuaCEmbed_set_global_double(LuaCEmbed *self, const char *name, double value);
23095
23095
@@ -23142,7 +23142,7 @@ int LuaCEmbed_get_evaluation_type(LuaCEmbed *self,const char *code, ...);
23142
23142
23143
23143
long LuaCEmbed_get_evaluation_table_size(LuaCEmbed *self,const char *code, ...);
23144
23144
23145
- long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...);
23145
+ long long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...);
23146
23146
23147
23147
double LuaCEmbed_get_evaluation_double(LuaCEmbed *self,const char *code, ...);
23148
23148
@@ -23175,7 +23175,7 @@ bool LuaCEmbed_get_evaluation_bool(LuaCEmbed *self,const char *code, ...);
23175
23175
23176
23176
23177
23177
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);
23179
23179
23180
23180
void LuaCEmbed_set_double_lib_prop(LuaCEmbed *self,const char *name,double value);
23181
23181
@@ -23189,7 +23189,7 @@ void LuaCEmbed_set_table_lib_prop(LuaCEmbed *self,const char *name,LuaCEmbedTabl
23189
23189
23190
23190
23191
23191
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){
23193
23193
lua_getglobal(self->state,PRIVATE_LUA_CEMBED_MAIN_LIB_TABLE_NAME);
23194
23194
lua_pushvalue(self->state,-1);
23195
23195
//set the function name
@@ -23296,7 +23296,7 @@ typedef struct {
23296
23296
23297
23297
int (*ensure_type)(LuaCEmbed *self, const char *name,int expected_type);
23298
23298
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);
23300
23300
double (*get_double)(LuaCEmbed *self,const char *name);
23301
23301
bool (*get_bool)(LuaCEmbed *self,const char *name);
23302
23302
char * (*get_string)(LuaCEmbed *self,const char *name);
@@ -23305,7 +23305,7 @@ typedef struct {
23305
23305
23306
23306
23307
23307
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);
23309
23309
void (*set_double)(LuaCEmbed *self,const char *name,double value);
23310
23310
void (*set_bool)(LuaCEmbed *self,const char *name,bool value);
23311
23311
@@ -23323,14 +23323,14 @@ typedef struct {
23323
23323
23324
23324
int (*size)(LuaCEmbed *self);
23325
23325
int (*get_type)(LuaCEmbed *self,int index);
23326
- long (*get_long)(LuaCEmbed *self, int index);
23326
+ long long (*get_long)(LuaCEmbed *self, int index);
23327
23327
double (*get_double)(LuaCEmbed *self, int index);
23328
23328
bool (*get_bool)(LuaCEmbed *self, int index);
23329
23329
char * (*get_str)(LuaCEmbed *self, int index);
23330
23330
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,...);
23334
23334
double (*get_double_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23335
23335
bool (*get_bool_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
23336
23336
char* (*get_string_arg_clojure_evalation)(LuaCEmbed *self,int index,const char *code,...);
@@ -23347,7 +23347,7 @@ LuaCembedArgsModule newLuaCembedArgsModule();
23347
23347
typedef struct {
23348
23348
23349
23349
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);
23351
23351
void (*append_double)(LuaCEmbedTable *self, double value);
23352
23352
void (*append_bool)(LuaCEmbedTable *self, bool value);
23353
23353
void (*append_table)(LuaCEmbedTable *self, LuaCEmbedTable *table);
@@ -23356,15 +23356,15 @@ typedef struct {
23356
23356
23357
23357
void (*insert_string_at_index)(LuaCEmbedTable *self, long index, const char *value);
23358
23358
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);
23360
23360
void (*insert_double_at_index)(LuaCEmbedTable *self, long index,double value);
23361
23361
void (*insert_table_at_index)(LuaCEmbedTable *self, long index,LuaCEmbedTable *table);
23362
23362
23363
23363
23364
23364
23365
23365
void (*set_sub_table_by_index)(LuaCEmbedTable *self, long index,LuaCEmbedTable *sub_table);
23366
23366
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);
23368
23368
void (*set_double_by_index)(LuaCEmbedTable *self, long index, double value);
23369
23369
void (*set_bool_by_index)(LuaCEmbedTable *self, long index, bool value);
23370
23370
void (*set_evaluation_by_index)(LuaCEmbedTable *self, long index, const char *code, ...);
@@ -23375,12 +23375,12 @@ typedef struct {
23375
23375
23376
23376
void (*set_method)(LuaCEmbedTable *self , const char *name, LuaCEmbedResponse *(*callback)(LuaCEmbedTable *self, LuaCEmbed *args));
23377
23377
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);
23379
23379
void (*set_double_prop)(LuaCEmbedTable *self , const char *name, double value);
23380
23380
void (*set_bool_prop)(LuaCEmbedTable *self , const char *name, bool value);
23381
23381
int (*get_type_prop)(LuaCEmbedTable *self, const char *name);
23382
23382
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);
23384
23384
double (*get_double_prop)(LuaCEmbedTable *self , const char *name);
23385
23385
bool (*get_bool_prop)(LuaCEmbedTable *self , const char *name);
23386
23386
LuaCEmbedTable * (*new_anonymous_table)(LuaCEmbed *self);
@@ -23394,7 +23394,7 @@ typedef struct {
23394
23394
23395
23395
long (*get_size)(LuaCEmbedTable *self);
23396
23396
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);
23398
23398
double (*get_double_by_index)(LuaCEmbedTable *self, int index);
23399
23399
char * (*get_string_by_index)(LuaCEmbedTable *self, int index);
23400
23400
bool (*get_bool_by_index)(LuaCEmbedTable *self, int index);
@@ -23427,11 +23427,11 @@ typedef struct{
23427
23427
char * (*get_string_evaluation)(LuaCEmbed *self,const char *code, ...);
23428
23428
int (*get_evaluation_type)(LuaCEmbed *self,const char *code,...);
23429
23429
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,...);
23431
23431
double (*get_evaluation_double)(LuaCEmbed *self,const char *code,...);
23432
23432
bool (*get_evaluation_bool)(LuaCEmbed *self, const char *code,...);
23433
23433
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);
23435
23435
23436
23436
void (*set_double_lib_prop)(LuaCEmbed *self,const char *name,double value);
23437
23437
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){
23776
23776
}
23777
23777
23778
23778
23779
- long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index){
23779
+ long long LuaCEmbed_get_long_arg(LuaCEmbed *self, int index){
23780
23780
PRIVATE_LUA_CEMBED_PROTECT_NUM
23781
23781
privateLuaCEmbed_put_arg_on_top(self,index);
23782
23782
if(private_LuaCEmbed_ensure_top_stack_arg_type(self,index,LUA_CEMBED_NUMBER)){
23783
23783
return (long )LUA_CEMBED_NOT_FOUND;
23784
23784
}
23785
- return (long)lua_tonumber(self->state,-1);
23785
+ return (long long )lua_tonumber(self->state,-1);
23786
23786
}
23787
23787
23788
23788
@@ -23933,7 +23933,7 @@ int privateLuaCembed_ensure_arg_evaluation_type(LuaCEmbed *self,int index,int ex
23933
23933
);
23934
23934
return LUA_CEMBED_GENERIC_ERROR;
23935
23935
}
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,...){
23937
23937
PRIVATE_LUA_CEMBED_PROTECT_NUM
23938
23938
23939
23939
va_list args;
@@ -23945,7 +23945,7 @@ long LuaCEmbed_get_type_clojure_evalation(LuaCEmbed *self,int index,const char *
23945
23945
}
23946
23946
return lua_type(self->state,-1);
23947
23947
}
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,...){
23949
23949
PRIVATE_LUA_CEMBED_PROTECT_NUM
23950
23950
23951
23951
va_list args;
@@ -23957,7 +23957,7 @@ long LuaCEmbed_generate_arg_clojure_evalation(LuaCEmbed *self,int index,const ch
23957
23957
}
23958
23958
return LUA_CEMBED_OK;
23959
23959
}
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,...){
23961
23961
PRIVATE_LUA_CEMBED_PROTECT_NUM
23962
23962
23963
23963
va_list args;
@@ -23970,7 +23970,7 @@ long LuaCEmbed_get_long_arg_clojure_evalation(LuaCEmbed *self,int index,const ch
23970
23970
if(privateLuaCembed_ensure_arg_evaluation_type(self,index,LUA_CEMBED_NUMBER)){
23971
23971
return LUA_CEMBED_GENERIC_ERROR;
23972
23972
}
23973
- return (long) lua_tonumber(self->state,-1);
23973
+ return (long long ) lua_tonumber(self->state,-1);
23974
23974
23975
23975
}
23976
23976
@@ -24225,7 +24225,7 @@ bool LuaCembedTable_has_key_at_index(LuaCEmbedTable *self, long index){
24225
24225
return false;
24226
24226
}
24227
24227
24228
- long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index){
24228
+ long long LuaCEmbedTable_get_long_by_index(LuaCEmbedTable *self, int index){
24229
24229
PRIVATE_LUA_CEMBED_TABLE_PROTECT_NUM
24230
24230
private_lua_cembed_memory_limit = self->main_object->memory_limit;
24231
24231
@@ -24396,7 +24396,7 @@ char* LuaCembedTable_get_string_prop(LuaCEmbedTable *self , const char *name){
24396
24396
}
24397
24397
24398
24398
24399
- long LuaCembedTable_get_long_prop(LuaCEmbedTable *self , const char *name){
24399
+ long long LuaCembedTable_get_long_prop(LuaCEmbedTable *self , const char *name){
24400
24400
PRIVATE_LUA_CEMBED_TABLE_PROTECT_NUM
24401
24401
private_lua_cembed_memory_limit = self->main_object->memory_limit;
24402
24402
@@ -24405,7 +24405,7 @@ long LuaCembedTable_get_long_prop(LuaCEmbedTable *self , const char *name){
24405
24405
if(privateLuaCEmbedTable_ensure_type_with_key(self, name, LUA_CEMBED_NUMBER)){
24406
24406
return LUA_CEMBED_GENERIC_ERROR;
24407
24407
}
24408
- return (long )lua_tonumber(self->main_object->state,-1);
24408
+ return (long long )lua_tonumber(self->main_object->state,-1);
24409
24409
}
24410
24410
24411
24411
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
24455
24455
24456
24456
}
24457
24457
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){
24459
24459
PRIVATE_LUA_CEMBED_TABLE_PROTECT_VOID
24460
24460
private_lua_cembed_memory_limit = self->main_object->memory_limit;
24461
24461
@@ -24612,7 +24612,7 @@ void LuaCEmbedTable_set_string_prop(LuaCEmbedTable *self , const char *name, co
24612
24612
24613
24613
}
24614
24614
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){
24616
24616
PRIVATE_LUA_CEMBED_TABLE_PROTECT_VOID
24617
24617
24618
24618
lua_getglobal(self->main_object->state,self->global_name);
@@ -24746,7 +24746,7 @@ void LuaCEmbedTable_insert_bool_at_index(LuaCEmbedTable *self, long index,bool
24746
24746
lua_settop(self->main_object->state, 0);
24747
24747
}
24748
24748
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){
24750
24750
24751
24751
// Movendo os elementos existentes para frente
24752
24752
long formatted_index = index + LUA_CEMBED_INDEX_DIF;
@@ -25103,7 +25103,7 @@ void LuaCEmbedTable_append_string(LuaCEmbedTable *self, const char *value){
25103
25103
25104
25104
}
25105
25105
25106
- void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long value){
25106
+ void LuaCEmbedTable_append_long(LuaCEmbedTable *self, long long value){
25107
25107
PRIVATE_LUA_CEMBED_TABLE_PROTECT_VOID
25108
25108
private_lua_cembed_memory_limit = self->main_object->memory_limit;
25109
25109
@@ -25327,7 +25327,7 @@ int LuaCEmbed_get_global_type(LuaCEmbed *self,const char *name){
25327
25327
return lua_type(self->state,-1);
25328
25328
}
25329
25329
25330
- long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name){
25330
+ long long LuaCEmbed_get_global_long(LuaCEmbed *self,const char *name){
25331
25331
PRIVATE_LUA_CEMBED_PROTECT_NUM
25332
25332
private_lua_cembed_memory_limit = self->memory_limit;
25333
25333
@@ -25484,7 +25484,7 @@ void LuaCEmbed_set_global_string(LuaCEmbed *self, const char *name, const char
25484
25484
lua_setglobal(self->state,name);
25485
25485
}
25486
25486
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){
25488
25488
PRIVATE_LUA_CEMBED_PROTECT_VOID
25489
25489
private_lua_cembed_memory_limit = self->memory_limit;
25490
25490
@@ -25935,7 +25935,7 @@ long LuaCEmbed_get_evaluation_table_size(LuaCEmbed *self,const char *code, ...){
25935
25935
25936
25936
25937
25937
25938
- long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...){
25938
+ long long LuaCEmbed_get_evaluation_long(LuaCEmbed *self,const char *code, ...){
25939
25939
PRIVATE_LUA_CEMBED_PROTECT_NUM
25940
25940
private_lua_cembed_memory_limit = self->memory_limit;
25941
25941
0 commit comments