1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 07:41:21 +00:00

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

This commit is contained in:
Galleondragon 2016-11-09 05:23:49 -08:00
parent b51f6e4117
commit 45d5fcc5d9
5 changed files with 20972 additions and 20966 deletions

View file

@ -1,5 +1,6 @@
__STRING_VERSION->len=0;
__STRING_BUILDNUM->len=0;
__STRING_AUTOBUILDMSG->len=0;
memset((void*)(__STRING1_SP->chr),0,1);
memset((void*)(__STRING1_SP2->chr),0,1);
memset((void*)(__STRING1_SP3->chr),0,1);

View file

@ -9,6 +9,7 @@ char *g_tmp_udt_LABEL_TYPE=(char*)malloc(282);
char *g_tmp_udt_IDSTRUCT=(char*)malloc(2860);
qbs *__STRING_VERSION=NULL;
qbs *__STRING_BUILDNUM=NULL;
qbs *__STRING_AUTOBUILDMSG=NULL;
qbs *__STRING1_SP=NULL;
qbs *__STRING1_SP2=NULL;
qbs *__STRING1_SP3=NULL;

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,6 @@
if (!__STRING_VERSION)__STRING_VERSION=qbs_new(0,0);
if (!__STRING_BUILDNUM)__STRING_BUILDNUM=qbs_new(0,0);
if (!__STRING_AUTOBUILDMSG)__STRING_AUTOBUILDMSG=qbs_new(0,0);
if(__STRING1_SP==NULL){
__STRING1_SP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(__STRING1_SP->chr,0,1);

View file

@ -1,5 +1,6 @@
qbs_free(__STRING_VERSION);
qbs_free(__STRING_BUILDNUM);
qbs_free(__STRING_AUTOBUILDMSG);
qbs_free(__STRING1_SP);
qbs_free(__STRING1_SP2);
qbs_free(__STRING1_SP3);