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 2015-12-14 05:13:43 -08:00
parent 86acbbbcdd
commit febdb30be3
4 changed files with 44175 additions and 44056 deletions

View file

@ -549,6 +549,7 @@ __STRING_MENUBAR->len=0;
*__LONG_IDEAUTOLAYOUT=0;
*__LONG_IDEAUTOINDENT=0;
*__LONG_IDEAUTOINDENTSIZE=0;
*__LONG_IDEINDENTSUBS=0;
*__LONG_IDEBACKUPSIZE=0;
*__LONG_IDEWX=0;
*__LONG_IDEWY=0;

View file

@ -180,6 +180,7 @@ int32 *__LONG_IDEENTERMENU=NULL;
int32 *__LONG_IDEAUTOLAYOUT=NULL;
int32 *__LONG_IDEAUTOINDENT=NULL;
int32 *__LONG_IDEAUTOINDENTSIZE=NULL;
int32 *__LONG_IDEINDENTSUBS=NULL;
int32 *__LONG_IDEBACKUPSIZE=NULL;
int32 *__LONG_IDEWX=NULL;
int32 *__LONG_IDEWY=NULL;

File diff suppressed because it is too large Load diff

View file

@ -778,6 +778,10 @@ if(__LONG_IDEAUTOINDENTSIZE==NULL){
__LONG_IDEAUTOINDENTSIZE=(int32*)mem_static_malloc(4);
*__LONG_IDEAUTOINDENTSIZE=0;
}
if(__LONG_IDEINDENTSUBS==NULL){
__LONG_IDEINDENTSUBS=(int32*)mem_static_malloc(4);
*__LONG_IDEINDENTSUBS=0;
}
if(__LONG_IDEBACKUPSIZE==NULL){
__LONG_IDEBACKUPSIZE=(int32*)mem_static_malloc(4);
*__LONG_IDEBACKUPSIZE=0;