1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 12:40:36 +00:00

(Automated push) Update internal/source/* from qb64.bas

This commit is contained in:
Galleondragon 2017-11-14 05:16:14 -08:00
parent b8526c502a
commit 5ae6b6fd52
5 changed files with 21773 additions and 21741 deletions

View file

@ -1194,6 +1194,7 @@ __STRING_COMPILELOG->len=0;
*__INTEGER_IDE_TOPPOSITION=0;
*__INTEGER_IDE_LEFTPOSITION=0;
*__BYTE_IDE_BYPASSAUTOPOSITION=0;
*__BYTE_IDESORTSUBS=0;
*__LONG_IDENORMALCURSORSTART=0;
*__LONG_IDENORMALCURSOREND=0;
__STRING_IDE_INDEX->len=0;

View file

@ -105,11 +105,6 @@ if(_FUNC_IDESUBS_LONG_SORTEDSUBSFLAG==NULL){
_FUNC_IDESUBS_LONG_SORTEDSUBSFLAG=(int32*)mem_static_malloc(4);
*_FUNC_IDESUBS_LONG_SORTEDSUBSFLAG=0;
}
int32 *_FUNC_IDESUBS_LONG_IDESORTSUBS=NULL;
if(_FUNC_IDESUBS_LONG_IDESORTSUBS==NULL){
_FUNC_IDESUBS_LONG_IDESORTSUBS=(int32*)mem_static_malloc(4);
*_FUNC_IDESUBS_LONG_IDESORTSUBS=0;
}
int32 *_FUNC_IDESUBS_LONG_Y=NULL;
if(_FUNC_IDESUBS_LONG_Y==NULL){
_FUNC_IDESUBS_LONG_Y=(int32*)mem_static_malloc(4);

View file

@ -348,6 +348,7 @@ int8 *__BYTE_IDE_AUTOPOSITION=NULL;
int16 *__INTEGER_IDE_TOPPOSITION=NULL;
int16 *__INTEGER_IDE_LEFTPOSITION=NULL;
int8 *__BYTE_IDE_BYPASSAUTOPOSITION=NULL;
int8 *__BYTE_IDESORTSUBS=NULL;
int32 *__LONG_IDENORMALCURSORSTART=NULL;
int32 *__LONG_IDENORMALCURSOREND=NULL;
qbs *__STRING_IDE_INDEX=NULL;

File diff suppressed because it is too large Load diff

View file

@ -1567,6 +1567,10 @@ if(__BYTE_IDE_BYPASSAUTOPOSITION==NULL){
__BYTE_IDE_BYPASSAUTOPOSITION=(int8*)mem_static_malloc(1);
*__BYTE_IDE_BYPASSAUTOPOSITION=0;
}
if(__BYTE_IDESORTSUBS==NULL){
__BYTE_IDESORTSUBS=(int8*)mem_static_malloc(1);
*__BYTE_IDESORTSUBS=0;
}
if(__LONG_IDENORMALCURSORSTART==NULL){
__LONG_IDENORMALCURSORSTART=(int32*)mem_static_malloc(4);
*__LONG_IDENORMALCURSORSTART=0;