1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 10:20:42 +00:00

Update internal/source

This commit is contained in:
Autobuild Process 2021-02-26 03:53:59 +00:00
parent a7bdcfe053
commit bfa4c6defb
4 changed files with 53505 additions and 53467 deletions

View file

@ -2026,6 +2026,7 @@ __STRING_ADDMETAINCLUDE->len=0;
__STRING_MODULE->len=0;
__STRING_SUBFUNC->len=0;
*__LONG_SUBFUNCN=0;
*__BYTE_CLOSEDSUBFUNC=0;
*__LONG_SUBFUNCID=0;
*__INTEGER_DEFDATAHANDLE=0;
*__INTEGER_DIMSFARRAY=0;

View file

@ -572,6 +572,7 @@ int16 *__INTEGER_CLOSEDMAIN=NULL;
qbs *__STRING_MODULE=NULL;
qbs *__STRING_SUBFUNC=NULL;
int32 *__LONG_SUBFUNCN=NULL;
int8 *__BYTE_CLOSEDSUBFUNC=NULL;
int32 *__LONG_SUBFUNCID=NULL;
int16 *__INTEGER_DEFDATAHANDLE=NULL;
int16 *__INTEGER_DIMSFARRAY=NULL;

File diff suppressed because it is too large Load diff

View file

@ -2666,6 +2666,10 @@ if(__LONG_SUBFUNCN==NULL){
__LONG_SUBFUNCN=(int32*)mem_static_malloc(4);
*__LONG_SUBFUNCN=0;
}
if(__BYTE_CLOSEDSUBFUNC==NULL){
__BYTE_CLOSEDSUBFUNC=(int8*)mem_static_malloc(1);
*__BYTE_CLOSEDSUBFUNC=0;
}
if(__LONG_SUBFUNCID==NULL){
__LONG_SUBFUNCID=(int32*)mem_static_malloc(4);
*__LONG_SUBFUNCID=0;