1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-16 17:54:16 +00:00
QB64-PE/internal/source/data31.txt
Luke Ceddia b586eafd3b Integrated _BLINEINPUT into regular LINE INPUT for BINARY files
LINE INPUT will now use the faster method if passed a file handle
that has been opened FOR BINARY. As such, the _BLINEINPUT command
has been removed.

qb64.bas now takes advantage of this for reading from '$include files,
at least in Include Manager 1. Some tweaking of internal/source/main.txt
was required to get things into a sane state, so I'm holing off changing
the compiler any further so the auto-builder can make sure everything's
smoothed over.

Note: Everything should still compile as normal; I'm just being overcautious.
2014-07-27 00:06:17 +10:00

25 lines
1.1 KiB
Text

int32 *_FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE=NULL;
if(_FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE==NULL){
_FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE=(int32*)mem_static_malloc(4);
*_FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE=0;
}
qbs*oldstr2596=NULL;
if(_FUNC_OPERATORUSAGE_STRING_OPERATOR->tmp||_FUNC_OPERATORUSAGE_STRING_OPERATOR->fixed||_FUNC_OPERATORUSAGE_STRING_OPERATOR->readonly){
oldstr2596=_FUNC_OPERATORUSAGE_STRING_OPERATOR;
if (oldstr2596->cmem_descriptor){
_FUNC_OPERATORUSAGE_STRING_OPERATOR=qbs_new_cmem(oldstr2596->len,0);
}else{
_FUNC_OPERATORUSAGE_STRING_OPERATOR=qbs_new(oldstr2596->len,0);
}
memcpy(_FUNC_OPERATORUSAGE_STRING_OPERATOR->chr,oldstr2596->chr,oldstr2596->len);
}
qbs*oldstr2597=NULL;
if(_FUNC_OPERATORUSAGE_STRING_INFO->tmp||_FUNC_OPERATORUSAGE_STRING_INFO->fixed||_FUNC_OPERATORUSAGE_STRING_INFO->readonly){
oldstr2597=_FUNC_OPERATORUSAGE_STRING_INFO;
if (oldstr2597->cmem_descriptor){
_FUNC_OPERATORUSAGE_STRING_INFO=qbs_new_cmem(oldstr2597->len,0);
}else{
_FUNC_OPERATORUSAGE_STRING_INFO=qbs_new(oldstr2597->len,0);
}
memcpy(_FUNC_OPERATORUSAGE_STRING_INFO->chr,oldstr2597->chr,oldstr2597->len);
}