diff --git a/docs/testing.md b/docs/testing.md index 3a1952ef3..5b6d46e40 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -20,6 +20,14 @@ produce when attempting to compile that code. Tests can also have an optional `*.flags` file. The contents of this file will be provide as command line arguments to QB64-PE when compiling the test source. +Tests are compiled from the directory the `.bas` file is in. That is, they are +compiled as though the user `cd`'d into the directory the `.bas` file is in, +and then ran the compiler from that starting location to compile the `.bas`. If +necessary this behavior can be changed by including a `*.compile-from-base` +file next to the associated `*.bas` test file. This will case the test script +to compile the `*.bas` file from the directory the compiler is located in +instead, and the full path to the `*.bas` file will be provided to `-x`. + These tests are run via the `./tests/compile_tests.sh` script. The script searches the `./tests/compile_tests` directory for any `*.bas` files, and then uses the provide QB64-PE compiler to test them. diff --git a/internal/c/libqb.cpp b/internal/c/libqb.cpp index 7242f2800..1da206e5b 100644 --- a/internal/c/libqb.cpp +++ b/internal/c/libqb.cpp @@ -34100,7 +34100,6 @@ void GLUT_KEYBOARD_FUNC(unsigned char key, int x, int y) { void GLUT_KEYBOARDUP_FUNC(unsigned char key, int x, int y) { GLUT_key_ascii(key, 0); } void GLUT_key_special(int32 key, int32 down) { - #ifdef QB64_GLUT # ifndef CORE_FREEGLUT /* @@ -39069,78 +39068,64 @@ void scancodeup(uint8 scancode) { #define OS_EVENT_POST_PROCESSING 2 #define OS_EVENT_RETURN_IMMEDIATELY 3 +static void reportKeyState(int code, int down) { + static device_struct *d; + d = &devices[1]; // keyboard + + // don't add message if state already matches what we're reporting + if (getDeviceEventButtonValue(d, d->queued_events - 1, code) != down) { + int32 eventIndex = createDeviceEvent(d); + setDeviceEventButtonValue(d, eventIndex, code, down); + commitDeviceEvent(d); + } +} + + #ifdef QB64_WINDOWS + +// Windows only reports one WM_KEYUP event when both shift keys are held. To +// fix that somewhat we're manually check on each window message and reporting +// the keyup ourselves. +static void checkShiftKeys() { + static int rightShift = 0, leftShift = 0; + + // GetAsyncKeyState() indicates the key state in the most significant bit + if (rightShift != !!(GetAsyncKeyState(VK_RSHIFT) & 0x8000)) { + rightShift = !rightShift; + reportKeyState(0x36, rightShift); + } + + if (leftShift != !!(GetAsyncKeyState(VK_LSHIFT) & 0x8000)) { + leftShift = !leftShift; + reportKeyState(0x2A, leftShift); + } +} + extern "C" LRESULT qb64_os_event_windows(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, int *qb64_os_event_info) { if (*qb64_os_event_info == OS_EVENT_PRE_PROCESSING) { - // example usage - /* - if (uMsg==WM_CLOSE){ - alert("goodbye"); - *qb64_os_event_info=OS_EVENT_RETURN_IMMEDIATELY; + if (func__hasfocus()) + checkShiftKeys(); + + if (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN) { + if (device_last) { // core devices required? + /* + 16-23 The scan code. The value depends on the OEM. + 24 Indicates whether the key is an extended key, such as the right-hand ALT and CTRL keys that appear on an enhanced 101- or 102-key + keyboard. The value is 1 if it is an extended key; otherwise, it is 0. + */ + uint32_t code = (lParam >> 16) & 0x1FF; + + reportKeyState(code, 1); } - */ - - if (uMsg == WM_KEYDOWN) { + } + if (uMsg == WM_KEYUP || uMsg == WM_SYSKEYUP) { if (device_last) { // core devices required? + uint32_t code = (lParam >> 16) & 0x1FF; - /* - 16-23 The scan code. The value depends on the OEM. - 24 Indicates whether the key is an extended key, such as the right-hand ALT and CTRL keys that appear on an enhanced 101- or 102-key - keyboard. The value is 1 if it is an extended key; otherwise, it is 0. - */ - - static int32 code, special; - special = 0; // set to 2 for keys which we cannot detect a release for - code = (lParam >> 16) & 511; - - keydown_special: - static device_struct *d; - d = &devices[1]; // keyboard - if (getDeviceEventButtonValue(d, d->queued_events - 1, code) != 1) { // don't add message if already on - - int32 eventIndex = createDeviceEvent(d); - setDeviceEventButtonValue(d, eventIndex, code, 1); - if (special == 2) { - special = 1; - commitDeviceEvent(d); - goto keydown_special; - } // jump to ~5 lines above to add a 2nd key event - if (special == 1) - setDeviceEventButtonValue(d, eventIndex, code, 0); - commitDeviceEvent(d); - - } // not 1 - } // core devices required - - } // WM_KEYDOWN - - if (uMsg == WM_KEYUP) { - - if (device_last) { // core devices required? - - /* - 16-23 The scan code. The value depends on the OEM. - 24 Indicates whether the key is an extended key, such as the right-hand ALT and CTRL keys that appear on an enhanced 101- or 102-key - keyboard. The value is 1 if it is an extended key; otherwise, it is 0. - */ - - static int32 code; - - code = (lParam >> 16) & 511; - - static device_struct *d; - d = &devices[1]; // keyboard - if (getDeviceEventButtonValue(d, d->queued_events - 1, code) != 0) { // don't add message if already off - - int32 eventIndex = createDeviceEvent(d); - setDeviceEventButtonValue(d, eventIndex, code, 0); - commitDeviceEvent(d); - - } // not 1 - } // core devices required - - } // WM_KEYUP + reportKeyState(code, 0); + } + } } if (*qb64_os_event_info == OS_EVENT_POST_PROCESSING) { } diff --git a/internal/source/data1.txt b/internal/source/data1.txt index 588c6821b..8c35ef344 100644 --- a/internal/source/data1.txt +++ b/internal/source/data1.txt @@ -5,13 +5,13 @@ if(_FUNC_PARSECMDLINEARGS_LONG_I==NULL){ _FUNC_PARSECMDLINEARGS_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_PARSECMDLINEARGS_LONG_I=0; } -int64 fornext_value2133; -int64 fornext_finalvalue2133; -int64 fornext_step2133; -uint8 fornext_step_negative2133; +int64 fornext_value2135; +int64 fornext_finalvalue2135; +int64 fornext_step2135; +uint8 fornext_step_negative2135; qbs *_FUNC_PARSECMDLINEARGS_STRING_TOKEN=NULL; if (!_FUNC_PARSECMDLINEARGS_STRING_TOKEN)_FUNC_PARSECMDLINEARGS_STRING_TOKEN=qbs_new(0,0); -static qbs *sc_2134=qbs_new(0,0); +static qbs *sc_2136=qbs_new(0,0); int32 *_FUNC_PARSECMDLINEARGS_LONG_CMDLINESWITCH=NULL; if(_FUNC_PARSECMDLINEARGS_LONG_CMDLINESWITCH==NULL){ _FUNC_PARSECMDLINEARGS_LONG_CMDLINESWITCH=(int32*)mem_static_malloc(4); @@ -22,16 +22,16 @@ if(_FUNC_PARSECMDLINEARGS_LONG_SETTINGSMODE==NULL){ _FUNC_PARSECMDLINEARGS_LONG_SETTINGSMODE=(int32*)mem_static_malloc(4); *_FUNC_PARSECMDLINEARGS_LONG_SETTINGSMODE=0; } -static qbs *sc_2161=qbs_new(0,0); +static qbs *sc_2163=qbs_new(0,0); qbs *_FUNC_PARSECMDLINEARGS_STRING_DEBUGINFOINIWARNING=NULL; if (!_FUNC_PARSECMDLINEARGS_STRING_DEBUGINFOINIWARNING)_FUNC_PARSECMDLINEARGS_STRING_DEBUGINFOINIWARNING=qbs_new(0,0); -int32 pass2177; int32 pass2179; -int32 pass2185; -static qbs *sc_2186=qbs_new(0,0); +int32 pass2181; +int32 pass2187; +static qbs *sc_2188=qbs_new(0,0); qbs *_FUNC_PARSECMDLINEARGS_STRING_PASSEDFILENAME=NULL; if (!_FUNC_PARSECMDLINEARGS_STRING_PASSEDFILENAME)_FUNC_PARSECMDLINEARGS_STRING_PASSEDFILENAME=qbs_new(0,0); -byte_element_struct *byte_element_2187=NULL; -if (!byte_element_2187){ -if ((mem_static_pointer+=12)tmp||_SUB_ASSIGN_STRING_A->fixed||_SUB_ASSIGN_STRING_A->readonly){ -oldstr2307=_SUB_ASSIGN_STRING_A; -if (oldstr2307->cmem_descriptor){ -_SUB_ASSIGN_STRING_A=qbs_new_cmem(oldstr2307->len,0); +oldstr2309=_SUB_ASSIGN_STRING_A; +if (oldstr2309->cmem_descriptor){ +_SUB_ASSIGN_STRING_A=qbs_new_cmem(oldstr2309->len,0); }else{ -_SUB_ASSIGN_STRING_A=qbs_new(oldstr2307->len,0); +_SUB_ASSIGN_STRING_A=qbs_new(oldstr2309->len,0); } -memcpy(_SUB_ASSIGN_STRING_A->chr,oldstr2307->chr,oldstr2307->len); +memcpy(_SUB_ASSIGN_STRING_A->chr,oldstr2309->chr,oldstr2309->len); } int32 *_SUB_ASSIGN_LONG_I=NULL; if(_SUB_ASSIGN_LONG_I==NULL){ _SUB_ASSIGN_LONG_I=(int32*)mem_static_malloc(4); *_SUB_ASSIGN_LONG_I=0; } -int64 fornext_value2309; -int64 fornext_finalvalue2309; -int64 fornext_step2309; -uint8 fornext_step_negative2309; +int64 fornext_value2311; +int64 fornext_finalvalue2311; +int64 fornext_step2311; +uint8 fornext_step_negative2311; int32 *_SUB_ASSIGN_LONG_C=NULL; if(_SUB_ASSIGN_LONG_C==NULL){ _SUB_ASSIGN_LONG_C=(int32*)mem_static_malloc(4); @@ -29,8 +29,8 @@ _SUB_ASSIGN_LONG_B=(int32*)mem_static_malloc(4); } qbs *_SUB_ASSIGN_STRING_A2=NULL; if (!_SUB_ASSIGN_STRING_A2)_SUB_ASSIGN_STRING_A2=qbs_new(0,0); -int32 pass2310; -int32 pass2311; +int32 pass2312; +int32 pass2313; qbs *_SUB_ASSIGN_STRING_L=NULL; if (!_SUB_ASSIGN_STRING_L)_SUB_ASSIGN_STRING_L=qbs_new(0,0); int32 *_SUB_ASSIGN_LONG_TRY=NULL; @@ -43,5 +43,5 @@ if(_SUB_ASSIGN_LONG_TYP==NULL){ _SUB_ASSIGN_LONG_TYP=(int32*)mem_static_malloc(4); *_SUB_ASSIGN_LONG_TYP=0; } -int32 pass2313; -int32 pass2314; +int32 pass2315; +int32 pass2316; diff --git a/internal/source/data100.txt b/internal/source/data100.txt index 6de93285f..a24b7bcf7 100644 --- a/internal/source/data100.txt +++ b/internal/source/data100.txt @@ -1,32 +1,32 @@ -qbs*oldstr3703=NULL; -if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->readonly){ -oldstr3703=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N; -if (oldstr3703->cmem_descriptor){ -_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3703->len,0); -}else{ -_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3703->len,0); -} -memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3703->chr,oldstr3703->len); -} -qbs*oldstr3704=NULL; -if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->readonly){ -oldstr3704=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT; -if (oldstr3704->cmem_descriptor){ -_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3704->len,0); -}else{ -_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3704->len,0); -} -memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3704->chr,oldstr3704->len); -} qbs*oldstr3705=NULL; -if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->readonly){ -oldstr3705=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC; +if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->readonly){ +oldstr3705=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N; if (oldstr3705->cmem_descriptor){ -_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3705->len,0); +_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3705->len,0); }else{ -_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3705->len,0); +_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3705->len,0); } -memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3705->chr,oldstr3705->len); +memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3705->chr,oldstr3705->len); +} +qbs*oldstr3706=NULL; +if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->readonly){ +oldstr3706=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT; +if (oldstr3706->cmem_descriptor){ +_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3706->len,0); +}else{ +_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3706->len,0); +} +memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3706->chr,oldstr3706->len); +} +qbs*oldstr3707=NULL; +if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->readonly){ +oldstr3707=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC; +if (oldstr3707->cmem_descriptor){ +_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3707->len,0); +}else{ +_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3707->len,0); +} +memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3707->chr,oldstr3707->len); } int32 *_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET=NULL; if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET==NULL){ @@ -38,4 +38,4 @@ if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT==NULL){ _SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=(int32*)mem_static_malloc(4); *_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=0; } -int32 pass3707; +int32 pass3709; diff --git a/internal/source/data101.txt b/internal/source/data101.txt index 607247e43..0d97c642a 100644 --- a/internal/source/data101.txt +++ b/internal/source/data101.txt @@ -1,32 +1,32 @@ -qbs*oldstr3708=NULL; -if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->readonly){ -oldstr3708=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N; -if (oldstr3708->cmem_descriptor){ -_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3708->len,0); -}else{ -_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3708->len,0); -} -memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3708->chr,oldstr3708->len); -} -qbs*oldstr3709=NULL; -if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->readonly){ -oldstr3709=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT; -if (oldstr3709->cmem_descriptor){ -_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3709->len,0); -}else{ -_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3709->len,0); -} -memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3709->chr,oldstr3709->len); -} qbs*oldstr3710=NULL; -if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->readonly){ -oldstr3710=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC; +if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->readonly){ +oldstr3710=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N; if (oldstr3710->cmem_descriptor){ -_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3710->len,0); +_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3710->len,0); }else{ -_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3710->len,0); +_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3710->len,0); } -memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3710->chr,oldstr3710->len); +memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3710->chr,oldstr3710->len); +} +qbs*oldstr3711=NULL; +if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->readonly){ +oldstr3711=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT; +if (oldstr3711->cmem_descriptor){ +_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3711->len,0); +}else{ +_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3711->len,0); +} +memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3711->chr,oldstr3711->len); +} +qbs*oldstr3712=NULL; +if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->readonly){ +oldstr3712=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC; +if (oldstr3712->cmem_descriptor){ +_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3712->len,0); +}else{ +_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3712->len,0); +} +memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3712->chr,oldstr3712->len); } int32 *_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET=NULL; if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET==NULL){ @@ -38,4 +38,4 @@ if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT==NULL){ _SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=(int32*)mem_static_malloc(4); *_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=0; } -int32 pass3712; +int32 pass3714; diff --git a/internal/source/data102.txt b/internal/source/data102.txt index ada0384e4..c1abbc988 100644 --- a/internal/source/data102.txt +++ b/internal/source/data102.txt @@ -1,24 +1,24 @@ -qbs*oldstr3713=NULL; +qbs*oldstr3715=NULL; if(_SUB_COPY_FULL_UDT_STRING_DST->tmp||_SUB_COPY_FULL_UDT_STRING_DST->fixed||_SUB_COPY_FULL_UDT_STRING_DST->readonly){ -oldstr3713=_SUB_COPY_FULL_UDT_STRING_DST; -if (oldstr3713->cmem_descriptor){ -_SUB_COPY_FULL_UDT_STRING_DST=qbs_new_cmem(oldstr3713->len,0); +oldstr3715=_SUB_COPY_FULL_UDT_STRING_DST; +if (oldstr3715->cmem_descriptor){ +_SUB_COPY_FULL_UDT_STRING_DST=qbs_new_cmem(oldstr3715->len,0); }else{ -_SUB_COPY_FULL_UDT_STRING_DST=qbs_new(oldstr3713->len,0); +_SUB_COPY_FULL_UDT_STRING_DST=qbs_new(oldstr3715->len,0); } -memcpy(_SUB_COPY_FULL_UDT_STRING_DST->chr,oldstr3713->chr,oldstr3713->len); +memcpy(_SUB_COPY_FULL_UDT_STRING_DST->chr,oldstr3715->chr,oldstr3715->len); } -qbs*oldstr3714=NULL; +qbs*oldstr3716=NULL; if(_SUB_COPY_FULL_UDT_STRING_SRC->tmp||_SUB_COPY_FULL_UDT_STRING_SRC->fixed||_SUB_COPY_FULL_UDT_STRING_SRC->readonly){ -oldstr3714=_SUB_COPY_FULL_UDT_STRING_SRC; -if (oldstr3714->cmem_descriptor){ -_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new_cmem(oldstr3714->len,0); +oldstr3716=_SUB_COPY_FULL_UDT_STRING_SRC; +if (oldstr3716->cmem_descriptor){ +_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new_cmem(oldstr3716->len,0); }else{ -_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new(oldstr3714->len,0); +_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new(oldstr3716->len,0); } -memcpy(_SUB_COPY_FULL_UDT_STRING_SRC->chr,oldstr3714->chr,oldstr3714->len); +memcpy(_SUB_COPY_FULL_UDT_STRING_SRC->chr,oldstr3716->chr,oldstr3716->len); } -int16 pass3715; +int16 pass3717; int32 *_SUB_COPY_FULL_UDT_LONG_OFFSET=NULL; if(_SUB_COPY_FULL_UDT_LONG_OFFSET==NULL){ _SUB_COPY_FULL_UDT_LONG_OFFSET=(int32*)mem_static_malloc(4); @@ -29,6 +29,6 @@ if(_SUB_COPY_FULL_UDT_LONG_ELEMENT==NULL){ _SUB_COPY_FULL_UDT_LONG_ELEMENT=(int32*)mem_static_malloc(4); *_SUB_COPY_FULL_UDT_LONG_ELEMENT=0; } -int16 pass3717; -int32 pass3718; int16 pass3719; +int32 pass3720; +int16 pass3721; diff --git a/internal/source/data103.txt b/internal/source/data103.txt index 3b4b1479d..e261541eb 100644 --- a/internal/source/data103.txt +++ b/internal/source/data103.txt @@ -8,11 +8,11 @@ if(_SUB_DUMP_UDTS_LONG_I==NULL){ _SUB_DUMP_UDTS_LONG_I=(int32*)mem_static_malloc(4); *_SUB_DUMP_UDTS_LONG_I=0; } -int64 fornext_value3722; -int64 fornext_finalvalue3722; -int64 fornext_step3722; -uint8 fornext_step_negative3722; -int64 fornext_value3726; -int64 fornext_finalvalue3726; -int64 fornext_step3726; -uint8 fornext_step_negative3726; +int64 fornext_value3724; +int64 fornext_finalvalue3724; +int64 fornext_step3724; +uint8 fornext_step_negative3724; +int64 fornext_value3728; +int64 fornext_finalvalue3728; +int64 fornext_step3728; +uint8 fornext_step_negative3728; diff --git a/internal/source/data104.txt b/internal/source/data104.txt index 13674ce14..ad35d56b7 100644 --- a/internal/source/data104.txt +++ b/internal/source/data104.txt @@ -1,22 +1,22 @@ -qbs*oldstr3728=NULL; +qbs*oldstr3730=NULL; if(_SUB_MANAGEVARIABLELIST_STRING___NAME->tmp||_SUB_MANAGEVARIABLELIST_STRING___NAME->fixed||_SUB_MANAGEVARIABLELIST_STRING___NAME->readonly){ -oldstr3728=_SUB_MANAGEVARIABLELIST_STRING___NAME; -if (oldstr3728->cmem_descriptor){ -_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new_cmem(oldstr3728->len,0); +oldstr3730=_SUB_MANAGEVARIABLELIST_STRING___NAME; +if (oldstr3730->cmem_descriptor){ +_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new_cmem(oldstr3730->len,0); }else{ -_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new(oldstr3728->len,0); +_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new(oldstr3730->len,0); } -memcpy(_SUB_MANAGEVARIABLELIST_STRING___NAME->chr,oldstr3728->chr,oldstr3728->len); +memcpy(_SUB_MANAGEVARIABLELIST_STRING___NAME->chr,oldstr3730->chr,oldstr3730->len); } -qbs*oldstr3729=NULL; +qbs*oldstr3731=NULL; if(_SUB_MANAGEVARIABLELIST_STRING___CNAME->tmp||_SUB_MANAGEVARIABLELIST_STRING___CNAME->fixed||_SUB_MANAGEVARIABLELIST_STRING___CNAME->readonly){ -oldstr3729=_SUB_MANAGEVARIABLELIST_STRING___CNAME; -if (oldstr3729->cmem_descriptor){ -_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new_cmem(oldstr3729->len,0); +oldstr3731=_SUB_MANAGEVARIABLELIST_STRING___CNAME; +if (oldstr3731->cmem_descriptor){ +_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new_cmem(oldstr3731->len,0); }else{ -_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new(oldstr3729->len,0); +_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new(oldstr3731->len,0); } -memcpy(_SUB_MANAGEVARIABLELIST_STRING___CNAME->chr,oldstr3729->chr,oldstr3729->len); +memcpy(_SUB_MANAGEVARIABLELIST_STRING___CNAME->chr,oldstr3731->chr,oldstr3731->len); } int32 *_SUB_MANAGEVARIABLELIST_LONG_FINDITEM=NULL; if(_SUB_MANAGEVARIABLELIST_LONG_FINDITEM==NULL){ @@ -39,38 +39,30 @@ qbs *_SUB_MANAGEVARIABLELIST_STRING_NAME=NULL; if (!_SUB_MANAGEVARIABLELIST_STRING_NAME)_SUB_MANAGEVARIABLELIST_STRING_NAME=qbs_new(0,0); qbs *_SUB_MANAGEVARIABLELIST_STRING_TEMP=NULL; if (!_SUB_MANAGEVARIABLELIST_STRING_TEMP)_SUB_MANAGEVARIABLELIST_STRING_TEMP=qbs_new(0,0); -byte_element_struct *byte_element_3730=NULL; -if (!byte_element_3730){ -if ((mem_static_pointer+=12)tmp||_SUB_ADDWARNING_STRING_INCFILENAME->fixed||_SUB_ADDWARNING_STRING_INCFILENAME->readonly){ -oldstr3740=_SUB_ADDWARNING_STRING_INCFILENAME; -if (oldstr3740->cmem_descriptor){ -_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new_cmem(oldstr3740->len,0); -}else{ -_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new(oldstr3740->len,0); -} -memcpy(_SUB_ADDWARNING_STRING_INCFILENAME->chr,oldstr3740->chr,oldstr3740->len); -} -qbs*oldstr3741=NULL; -if(_SUB_ADDWARNING_STRING_HEADER->tmp||_SUB_ADDWARNING_STRING_HEADER->fixed||_SUB_ADDWARNING_STRING_HEADER->readonly){ -oldstr3741=_SUB_ADDWARNING_STRING_HEADER; -if (oldstr3741->cmem_descriptor){ -_SUB_ADDWARNING_STRING_HEADER=qbs_new_cmem(oldstr3741->len,0); -}else{ -_SUB_ADDWARNING_STRING_HEADER=qbs_new(oldstr3741->len,0); -} -memcpy(_SUB_ADDWARNING_STRING_HEADER->chr,oldstr3741->chr,oldstr3741->len); -} qbs*oldstr3742=NULL; -if(_SUB_ADDWARNING_STRING_TEXT->tmp||_SUB_ADDWARNING_STRING_TEXT->fixed||_SUB_ADDWARNING_STRING_TEXT->readonly){ -oldstr3742=_SUB_ADDWARNING_STRING_TEXT; +if(_SUB_ADDWARNING_STRING_INCFILENAME->tmp||_SUB_ADDWARNING_STRING_INCFILENAME->fixed||_SUB_ADDWARNING_STRING_INCFILENAME->readonly){ +oldstr3742=_SUB_ADDWARNING_STRING_INCFILENAME; if (oldstr3742->cmem_descriptor){ -_SUB_ADDWARNING_STRING_TEXT=qbs_new_cmem(oldstr3742->len,0); +_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new_cmem(oldstr3742->len,0); }else{ -_SUB_ADDWARNING_STRING_TEXT=qbs_new(oldstr3742->len,0); +_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new(oldstr3742->len,0); } -memcpy(_SUB_ADDWARNING_STRING_TEXT->chr,oldstr3742->chr,oldstr3742->len); +memcpy(_SUB_ADDWARNING_STRING_INCFILENAME->chr,oldstr3742->chr,oldstr3742->len); +} +qbs*oldstr3743=NULL; +if(_SUB_ADDWARNING_STRING_HEADER->tmp||_SUB_ADDWARNING_STRING_HEADER->fixed||_SUB_ADDWARNING_STRING_HEADER->readonly){ +oldstr3743=_SUB_ADDWARNING_STRING_HEADER; +if (oldstr3743->cmem_descriptor){ +_SUB_ADDWARNING_STRING_HEADER=qbs_new_cmem(oldstr3743->len,0); +}else{ +_SUB_ADDWARNING_STRING_HEADER=qbs_new(oldstr3743->len,0); +} +memcpy(_SUB_ADDWARNING_STRING_HEADER->chr,oldstr3743->chr,oldstr3743->len); +} +qbs*oldstr3744=NULL; +if(_SUB_ADDWARNING_STRING_TEXT->tmp||_SUB_ADDWARNING_STRING_TEXT->fixed||_SUB_ADDWARNING_STRING_TEXT->readonly){ +oldstr3744=_SUB_ADDWARNING_STRING_TEXT; +if (oldstr3744->cmem_descriptor){ +_SUB_ADDWARNING_STRING_TEXT=qbs_new_cmem(oldstr3744->len,0); +}else{ +_SUB_ADDWARNING_STRING_TEXT=qbs_new(oldstr3744->len,0); +} +memcpy(_SUB_ADDWARNING_STRING_TEXT->chr,oldstr3744->chr,oldstr3744->len); } qbs *_SUB_ADDWARNING_STRING_THISSOURCE=NULL; if (!_SUB_ADDWARNING_STRING_THISSOURCE)_SUB_ADDWARNING_STRING_THISSOURCE=qbs_new(0,0); -byte_element_struct *byte_element_3743=NULL; -if (!byte_element_3743){ -if ((mem_static_pointer+=12)tmp||_FUNC_SCASE_STRING_T->fixed||_FUNC_SCASE_STRING_T->readonly){ -oldstr3754=_FUNC_SCASE_STRING_T; -if (oldstr3754->cmem_descriptor){ -_FUNC_SCASE_STRING_T=qbs_new_cmem(oldstr3754->len,0); +oldstr3756=_FUNC_SCASE_STRING_T; +if (oldstr3756->cmem_descriptor){ +_FUNC_SCASE_STRING_T=qbs_new_cmem(oldstr3756->len,0); }else{ -_FUNC_SCASE_STRING_T=qbs_new(oldstr3754->len,0); +_FUNC_SCASE_STRING_T=qbs_new(oldstr3756->len,0); } -memcpy(_FUNC_SCASE_STRING_T->chr,oldstr3754->chr,oldstr3754->len); +memcpy(_FUNC_SCASE_STRING_T->chr,oldstr3756->chr,oldstr3756->len); } diff --git a/internal/source/data107.txt b/internal/source/data107.txt index 50def0525..59f71bbee 100644 --- a/internal/source/data107.txt +++ b/internal/source/data107.txt @@ -1,14 +1,14 @@ qbs *_FUNC_SCASE2_STRING_SCASE2=NULL; if (!_FUNC_SCASE2_STRING_SCASE2)_FUNC_SCASE2_STRING_SCASE2=qbs_new(0,0); -qbs*oldstr3755=NULL; +qbs*oldstr3757=NULL; if(_FUNC_SCASE2_STRING_T->tmp||_FUNC_SCASE2_STRING_T->fixed||_FUNC_SCASE2_STRING_T->readonly){ -oldstr3755=_FUNC_SCASE2_STRING_T; -if (oldstr3755->cmem_descriptor){ -_FUNC_SCASE2_STRING_T=qbs_new_cmem(oldstr3755->len,0); +oldstr3757=_FUNC_SCASE2_STRING_T; +if (oldstr3757->cmem_descriptor){ +_FUNC_SCASE2_STRING_T=qbs_new_cmem(oldstr3757->len,0); }else{ -_FUNC_SCASE2_STRING_T=qbs_new(oldstr3755->len,0); +_FUNC_SCASE2_STRING_T=qbs_new(oldstr3757->len,0); } -memcpy(_FUNC_SCASE2_STRING_T->chr,oldstr3755->chr,oldstr3755->len); +memcpy(_FUNC_SCASE2_STRING_T->chr,oldstr3757->chr,oldstr3757->len); } qbs *_FUNC_SCASE2_STRING_SEPARATOR=NULL; if (!_FUNC_SCASE2_STRING_SEPARATOR)_FUNC_SCASE2_STRING_SEPARATOR=qbs_new(0,0); @@ -24,13 +24,13 @@ if(_FUNC_SCASE2_LONG_I==NULL){ _FUNC_SCASE2_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_SCASE2_LONG_I=0; } -int64 fornext_value3757; -int64 fornext_finalvalue3757; -int64 fornext_step3757; -uint8 fornext_step_negative3757; -byte_element_struct *byte_element_3758=NULL; -if (!byte_element_3758){ -if ((mem_static_pointer+=12)tmp||_FUNC_COMPAREVERSIONS_STRING_V->fixed||_FUNC_COMPAREVERSIONS_STRING_V->readonly){ -oldstr3759=_FUNC_COMPAREVERSIONS_STRING_V; -if (oldstr3759->cmem_descriptor){ -_FUNC_COMPAREVERSIONS_STRING_V=qbs_new_cmem(oldstr3759->len,0); +oldstr3761=_FUNC_COMPAREVERSIONS_STRING_V; +if (oldstr3761->cmem_descriptor){ +_FUNC_COMPAREVERSIONS_STRING_V=qbs_new_cmem(oldstr3761->len,0); }else{ -_FUNC_COMPAREVERSIONS_STRING_V=qbs_new(oldstr3759->len,0); +_FUNC_COMPAREVERSIONS_STRING_V=qbs_new(oldstr3761->len,0); } -memcpy(_FUNC_COMPAREVERSIONS_STRING_V->chr,oldstr3759->chr,oldstr3759->len); +memcpy(_FUNC_COMPAREVERSIONS_STRING_V->chr,oldstr3761->chr,oldstr3761->len); } -qbs*oldstr3760=NULL; +qbs*oldstr3762=NULL; if(_FUNC_COMPAREVERSIONS_STRING_V1->tmp||_FUNC_COMPAREVERSIONS_STRING_V1->fixed||_FUNC_COMPAREVERSIONS_STRING_V1->readonly){ -oldstr3760=_FUNC_COMPAREVERSIONS_STRING_V1; -if (oldstr3760->cmem_descriptor){ -_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new_cmem(oldstr3760->len,0); +oldstr3762=_FUNC_COMPAREVERSIONS_STRING_V1; +if (oldstr3762->cmem_descriptor){ +_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new_cmem(oldstr3762->len,0); }else{ -_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new(oldstr3760->len,0); +_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new(oldstr3762->len,0); } -memcpy(_FUNC_COMPAREVERSIONS_STRING_V1->chr,oldstr3760->chr,oldstr3760->len); +memcpy(_FUNC_COMPAREVERSIONS_STRING_V1->chr,oldstr3762->chr,oldstr3762->len); } qbs *_FUNC_COMPAREVERSIONS_STRING_T=NULL; if (!_FUNC_COMPAREVERSIONS_STRING_T)_FUNC_COMPAREVERSIONS_STRING_T=qbs_new(0,0); qbs *_FUNC_COMPAREVERSIONS_STRING_T1=NULL; if (!_FUNC_COMPAREVERSIONS_STRING_T1)_FUNC_COMPAREVERSIONS_STRING_T1=qbs_new(0,0); -byte_element_struct *byte_element_3761=NULL; -if (!byte_element_3761){ -if ((mem_static_pointer+=12)tmp||_FUNC_STRREMOVE_STRING_MYSTRING->fixed||_FUNC_STRREMOVE_STRING_MYSTRING->readonly){ -oldstr3764=_FUNC_STRREMOVE_STRING_MYSTRING; -if (oldstr3764->cmem_descriptor){ -_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new_cmem(oldstr3764->len,0); +oldstr3766=_FUNC_STRREMOVE_STRING_MYSTRING; +if (oldstr3766->cmem_descriptor){ +_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new_cmem(oldstr3766->len,0); }else{ -_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new(oldstr3764->len,0); +_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new(oldstr3766->len,0); } -memcpy(_FUNC_STRREMOVE_STRING_MYSTRING->chr,oldstr3764->chr,oldstr3764->len); +memcpy(_FUNC_STRREMOVE_STRING_MYSTRING->chr,oldstr3766->chr,oldstr3766->len); } -qbs*oldstr3765=NULL; +qbs*oldstr3767=NULL; if(_FUNC_STRREMOVE_STRING_WHATTOREMOVE->tmp||_FUNC_STRREMOVE_STRING_WHATTOREMOVE->fixed||_FUNC_STRREMOVE_STRING_WHATTOREMOVE->readonly){ -oldstr3765=_FUNC_STRREMOVE_STRING_WHATTOREMOVE; -if (oldstr3765->cmem_descriptor){ -_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new_cmem(oldstr3765->len,0); +oldstr3767=_FUNC_STRREMOVE_STRING_WHATTOREMOVE; +if (oldstr3767->cmem_descriptor){ +_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new_cmem(oldstr3767->len,0); }else{ -_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new(oldstr3765->len,0); +_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new(oldstr3767->len,0); } -memcpy(_FUNC_STRREMOVE_STRING_WHATTOREMOVE->chr,oldstr3765->chr,oldstr3765->len); +memcpy(_FUNC_STRREMOVE_STRING_WHATTOREMOVE->chr,oldstr3767->chr,oldstr3767->len); } qbs *_FUNC_STRREMOVE_STRING_A=NULL; if (!_FUNC_STRREMOVE_STRING_A)_FUNC_STRREMOVE_STRING_A=qbs_new(0,0); @@ -29,11 +29,11 @@ if(_FUNC_STRREMOVE_LONG_I==NULL){ _FUNC_STRREMOVE_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_STRREMOVE_LONG_I=0; } -byte_element_struct *byte_element_3767=NULL; -if (!byte_element_3767){ -if ((mem_static_pointer+=12)tmp||_FUNC_STRREPLACE_STRING_MYSTRING->fixed||_FUNC_STRREPLACE_STRING_MYSTRING->readonly){ -oldstr3769=_FUNC_STRREPLACE_STRING_MYSTRING; -if (oldstr3769->cmem_descriptor){ -_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new_cmem(oldstr3769->len,0); -}else{ -_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new(oldstr3769->len,0); -} -memcpy(_FUNC_STRREPLACE_STRING_MYSTRING->chr,oldstr3769->chr,oldstr3769->len); -} -qbs*oldstr3770=NULL; -if(_FUNC_STRREPLACE_STRING_FIND->tmp||_FUNC_STRREPLACE_STRING_FIND->fixed||_FUNC_STRREPLACE_STRING_FIND->readonly){ -oldstr3770=_FUNC_STRREPLACE_STRING_FIND; -if (oldstr3770->cmem_descriptor){ -_FUNC_STRREPLACE_STRING_FIND=qbs_new_cmem(oldstr3770->len,0); -}else{ -_FUNC_STRREPLACE_STRING_FIND=qbs_new(oldstr3770->len,0); -} -memcpy(_FUNC_STRREPLACE_STRING_FIND->chr,oldstr3770->chr,oldstr3770->len); -} qbs*oldstr3771=NULL; -if(_FUNC_STRREPLACE_STRING_REPLACEWITH->tmp||_FUNC_STRREPLACE_STRING_REPLACEWITH->fixed||_FUNC_STRREPLACE_STRING_REPLACEWITH->readonly){ -oldstr3771=_FUNC_STRREPLACE_STRING_REPLACEWITH; +if(_FUNC_STRREPLACE_STRING_MYSTRING->tmp||_FUNC_STRREPLACE_STRING_MYSTRING->fixed||_FUNC_STRREPLACE_STRING_MYSTRING->readonly){ +oldstr3771=_FUNC_STRREPLACE_STRING_MYSTRING; if (oldstr3771->cmem_descriptor){ -_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new_cmem(oldstr3771->len,0); +_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new_cmem(oldstr3771->len,0); }else{ -_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new(oldstr3771->len,0); +_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new(oldstr3771->len,0); } -memcpy(_FUNC_STRREPLACE_STRING_REPLACEWITH->chr,oldstr3771->chr,oldstr3771->len); +memcpy(_FUNC_STRREPLACE_STRING_MYSTRING->chr,oldstr3771->chr,oldstr3771->len); +} +qbs*oldstr3772=NULL; +if(_FUNC_STRREPLACE_STRING_FIND->tmp||_FUNC_STRREPLACE_STRING_FIND->fixed||_FUNC_STRREPLACE_STRING_FIND->readonly){ +oldstr3772=_FUNC_STRREPLACE_STRING_FIND; +if (oldstr3772->cmem_descriptor){ +_FUNC_STRREPLACE_STRING_FIND=qbs_new_cmem(oldstr3772->len,0); +}else{ +_FUNC_STRREPLACE_STRING_FIND=qbs_new(oldstr3772->len,0); +} +memcpy(_FUNC_STRREPLACE_STRING_FIND->chr,oldstr3772->chr,oldstr3772->len); +} +qbs*oldstr3773=NULL; +if(_FUNC_STRREPLACE_STRING_REPLACEWITH->tmp||_FUNC_STRREPLACE_STRING_REPLACEWITH->fixed||_FUNC_STRREPLACE_STRING_REPLACEWITH->readonly){ +oldstr3773=_FUNC_STRREPLACE_STRING_REPLACEWITH; +if (oldstr3773->cmem_descriptor){ +_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new_cmem(oldstr3773->len,0); +}else{ +_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new(oldstr3773->len,0); +} +memcpy(_FUNC_STRREPLACE_STRING_REPLACEWITH->chr,oldstr3773->chr,oldstr3773->len); } qbs *_FUNC_STRREPLACE_STRING_A=NULL; if (!_FUNC_STRREPLACE_STRING_A)_FUNC_STRREPLACE_STRING_A=qbs_new(0,0); @@ -44,19 +44,19 @@ if(_FUNC_STRREPLACE_LONG_I==NULL){ _FUNC_STRREPLACE_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_STRREPLACE_LONG_I=0; } -byte_element_struct *byte_element_3772=NULL; -if (!byte_element_3772){ -if ((mem_static_pointer+=12)tmp||_FUNC_ADDQUOTES_STRING_S->fixed||_FUNC_ADDQUOTES_STRING_S->readonly){ -oldstr3777=_FUNC_ADDQUOTES_STRING_S; -if (oldstr3777->cmem_descriptor){ -_FUNC_ADDQUOTES_STRING_S=qbs_new_cmem(oldstr3777->len,0); +oldstr3779=_FUNC_ADDQUOTES_STRING_S; +if (oldstr3779->cmem_descriptor){ +_FUNC_ADDQUOTES_STRING_S=qbs_new_cmem(oldstr3779->len,0); }else{ -_FUNC_ADDQUOTES_STRING_S=qbs_new(oldstr3777->len,0); +_FUNC_ADDQUOTES_STRING_S=qbs_new(oldstr3779->len,0); } -memcpy(_FUNC_ADDQUOTES_STRING_S->chr,oldstr3777->chr,oldstr3777->len); +memcpy(_FUNC_ADDQUOTES_STRING_S->chr,oldstr3779->chr,oldstr3779->len); } diff --git a/internal/source/data114.txt b/internal/source/data114.txt index 9dd287158..7977deb06 100644 --- a/internal/source/data114.txt +++ b/internal/source/data114.txt @@ -3,15 +3,15 @@ if(_FUNC_TFSTRINGTOBOOL_INTEGER_TFSTRINGTOBOOL==NULL){ _FUNC_TFSTRINGTOBOOL_INTEGER_TFSTRINGTOBOOL=(int16*)mem_static_malloc(2); *_FUNC_TFSTRINGTOBOOL_INTEGER_TFSTRINGTOBOOL=0; } -qbs*oldstr3778=NULL; +qbs*oldstr3780=NULL; if(_FUNC_TFSTRINGTOBOOL_STRING_S->tmp||_FUNC_TFSTRINGTOBOOL_STRING_S->fixed||_FUNC_TFSTRINGTOBOOL_STRING_S->readonly){ -oldstr3778=_FUNC_TFSTRINGTOBOOL_STRING_S; -if (oldstr3778->cmem_descriptor){ -_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new_cmem(oldstr3778->len,0); +oldstr3780=_FUNC_TFSTRINGTOBOOL_STRING_S; +if (oldstr3780->cmem_descriptor){ +_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new_cmem(oldstr3780->len,0); }else{ -_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new(oldstr3778->len,0); +_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new(oldstr3780->len,0); } -memcpy(_FUNC_TFSTRINGTOBOOL_STRING_S->chr,oldstr3778->chr,oldstr3778->len); +memcpy(_FUNC_TFSTRINGTOBOOL_STRING_S->chr,oldstr3780->chr,oldstr3780->len); } qbs *_FUNC_TFSTRINGTOBOOL_STRING_S2=NULL; if (!_FUNC_TFSTRINGTOBOOL_STRING_S2)_FUNC_TFSTRINGTOBOOL_STRING_S2=qbs_new(0,0); diff --git a/internal/source/data115.txt b/internal/source/data115.txt index 4581eab43..35f47431f 100644 --- a/internal/source/data115.txt +++ b/internal/source/data115.txt @@ -3,25 +3,25 @@ if(_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_READWRITEBOOLEANSETTINGVALUE==NULL _FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_READWRITEBOOLEANSETTINGVALUE=(int16*)mem_static_malloc(2); *_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_READWRITEBOOLEANSETTINGVALUE=0; } -qbs*oldstr3779=NULL; +qbs*oldstr3781=NULL; if(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->readonly){ -oldstr3779=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION; -if (oldstr3779->cmem_descriptor){ -_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3779->len,0); +oldstr3781=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION; +if (oldstr3781->cmem_descriptor){ +_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3781->len,0); }else{ -_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3779->len,0); +_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3781->len,0); } -memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->chr,oldstr3779->chr,oldstr3779->len); +memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->chr,oldstr3781->chr,oldstr3781->len); } -qbs*oldstr3780=NULL; +qbs*oldstr3782=NULL; if(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->readonly){ -oldstr3780=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING; -if (oldstr3780->cmem_descriptor){ -_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3780->len,0); +oldstr3782=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING; +if (oldstr3782->cmem_descriptor){ +_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3782->len,0); }else{ -_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3780->len,0); +_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3782->len,0); } -memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->chr,oldstr3780->chr,oldstr3780->len); +memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->chr,oldstr3782->chr,oldstr3782->len); } int16 *_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_CHECKRESULT=NULL; if(_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_CHECKRESULT==NULL){ @@ -35,4 +35,4 @@ if(_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_RESULT==NULL){ _FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_RESULT=(int16*)mem_static_malloc(2); *_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_RESULT=0; } -int32 pass3781; +int32 pass3783; diff --git a/internal/source/data116.txt b/internal/source/data116.txt index 88b5b9b44..440068981 100644 --- a/internal/source/data116.txt +++ b/internal/source/data116.txt @@ -1,34 +1,34 @@ qbs *_FUNC_READWRITESTRINGSETTINGVALUE_STRING_READWRITESTRINGSETTINGVALUE=NULL; if (!_FUNC_READWRITESTRINGSETTINGVALUE_STRING_READWRITESTRINGSETTINGVALUE)_FUNC_READWRITESTRINGSETTINGVALUE_STRING_READWRITESTRINGSETTINGVALUE=qbs_new(0,0); -qbs*oldstr3782=NULL; -if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->readonly){ -oldstr3782=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION; -if (oldstr3782->cmem_descriptor){ -_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3782->len,0); -}else{ -_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3782->len,0); -} -memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->chr,oldstr3782->chr,oldstr3782->len); -} -qbs*oldstr3783=NULL; -if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->readonly){ -oldstr3783=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING; -if (oldstr3783->cmem_descriptor){ -_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3783->len,0); -}else{ -_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3783->len,0); -} -memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->chr,oldstr3783->chr,oldstr3783->len); -} qbs*oldstr3784=NULL; -if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->readonly){ -oldstr3784=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT; +if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->readonly){ +oldstr3784=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION; if (oldstr3784->cmem_descriptor){ -_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new_cmem(oldstr3784->len,0); +_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3784->len,0); }else{ -_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new(oldstr3784->len,0); +_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3784->len,0); } -memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->chr,oldstr3784->chr,oldstr3784->len); +memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->chr,oldstr3784->chr,oldstr3784->len); +} +qbs*oldstr3785=NULL; +if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->readonly){ +oldstr3785=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING; +if (oldstr3785->cmem_descriptor){ +_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3785->len,0); +}else{ +_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3785->len,0); +} +memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->chr,oldstr3785->chr,oldstr3785->len); +} +qbs*oldstr3786=NULL; +if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->readonly){ +oldstr3786=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT; +if (oldstr3786->cmem_descriptor){ +_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new_cmem(oldstr3786->len,0); +}else{ +_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new(oldstr3786->len,0); +} +memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->chr,oldstr3786->chr,oldstr3786->len); } qbs *_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE=NULL; if (!_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE)_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE=qbs_new(0,0); diff --git a/internal/source/data117.txt b/internal/source/data117.txt index 110e6609e..b55ab44e5 100644 --- a/internal/source/data117.txt +++ b/internal/source/data117.txt @@ -3,25 +3,25 @@ if(_FUNC_READWRITELONGSETTINGVALUE_LONG_READWRITELONGSETTINGVALUE==NULL){ _FUNC_READWRITELONGSETTINGVALUE_LONG_READWRITELONGSETTINGVALUE=(int32*)mem_static_malloc(4); *_FUNC_READWRITELONGSETTINGVALUE_LONG_READWRITELONGSETTINGVALUE=0; } -qbs*oldstr3785=NULL; +qbs*oldstr3787=NULL; if(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->readonly){ -oldstr3785=_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION; -if (oldstr3785->cmem_descriptor){ -_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3785->len,0); +oldstr3787=_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION; +if (oldstr3787->cmem_descriptor){ +_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3787->len,0); }else{ -_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3785->len,0); +_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3787->len,0); } -memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->chr,oldstr3785->chr,oldstr3785->len); +memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->chr,oldstr3787->chr,oldstr3787->len); } -qbs*oldstr3786=NULL; +qbs*oldstr3788=NULL; if(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->readonly){ -oldstr3786=_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING; -if (oldstr3786->cmem_descriptor){ -_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3786->len,0); +oldstr3788=_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING; +if (oldstr3788->cmem_descriptor){ +_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3788->len,0); }else{ -_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3786->len,0); +_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3788->len,0); } -memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->chr,oldstr3786->chr,oldstr3786->len); +memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->chr,oldstr3788->chr,oldstr3788->len); } qbs *_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE=NULL; if (!_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE)_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE=qbs_new(0,0); diff --git a/internal/source/data118.txt b/internal/source/data118.txt index e096423aa..410881d4e 100644 --- a/internal/source/data118.txt +++ b/internal/source/data118.txt @@ -3,25 +3,25 @@ if(_FUNC_COPYFILE_LONG_COPYFILE==NULL){ _FUNC_COPYFILE_LONG_COPYFILE=(int32*)mem_static_malloc(4); *_FUNC_COPYFILE_LONG_COPYFILE=0; } -qbs*oldstr3787=NULL; +qbs*oldstr3789=NULL; if(_FUNC_COPYFILE_STRING_SOURCEFILE->tmp||_FUNC_COPYFILE_STRING_SOURCEFILE->fixed||_FUNC_COPYFILE_STRING_SOURCEFILE->readonly){ -oldstr3787=_FUNC_COPYFILE_STRING_SOURCEFILE; -if (oldstr3787->cmem_descriptor){ -_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new_cmem(oldstr3787->len,0); +oldstr3789=_FUNC_COPYFILE_STRING_SOURCEFILE; +if (oldstr3789->cmem_descriptor){ +_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new_cmem(oldstr3789->len,0); }else{ -_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new(oldstr3787->len,0); +_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new(oldstr3789->len,0); } -memcpy(_FUNC_COPYFILE_STRING_SOURCEFILE->chr,oldstr3787->chr,oldstr3787->len); +memcpy(_FUNC_COPYFILE_STRING_SOURCEFILE->chr,oldstr3789->chr,oldstr3789->len); } -qbs*oldstr3788=NULL; +qbs*oldstr3790=NULL; if(_FUNC_COPYFILE_STRING_DESTFILE->tmp||_FUNC_COPYFILE_STRING_DESTFILE->fixed||_FUNC_COPYFILE_STRING_DESTFILE->readonly){ -oldstr3788=_FUNC_COPYFILE_STRING_DESTFILE; -if (oldstr3788->cmem_descriptor){ -_FUNC_COPYFILE_STRING_DESTFILE=qbs_new_cmem(oldstr3788->len,0); +oldstr3790=_FUNC_COPYFILE_STRING_DESTFILE; +if (oldstr3790->cmem_descriptor){ +_FUNC_COPYFILE_STRING_DESTFILE=qbs_new_cmem(oldstr3790->len,0); }else{ -_FUNC_COPYFILE_STRING_DESTFILE=qbs_new(oldstr3788->len,0); +_FUNC_COPYFILE_STRING_DESTFILE=qbs_new(oldstr3790->len,0); } -memcpy(_FUNC_COPYFILE_STRING_DESTFILE->chr,oldstr3788->chr,oldstr3788->len); +memcpy(_FUNC_COPYFILE_STRING_DESTFILE->chr,oldstr3790->chr,oldstr3790->len); } int32 *_FUNC_COPYFILE_LONG_SOURCEFILENO=NULL; if(_FUNC_COPYFILE_LONG_SOURCEFILENO==NULL){ @@ -40,7 +40,7 @@ _FUNC_COPYFILE_INTEGER64_FILELENGTH=(int64*)mem_static_malloc(8); } qbs *_FUNC_COPYFILE_STRING_BUFFER=NULL; if (!_FUNC_COPYFILE_STRING_BUFFER)_FUNC_COPYFILE_STRING_BUFFER=qbs_new(0,0); -byte_element_struct *byte_element_3789=NULL; -if (!byte_element_3789){ -if ((mem_static_pointer+=12)tmp||_FUNC_GETFILEPATH_STRING_F->fixed||_FUNC_GETFILEPATH_STRING_F->readonly){ -oldstr3790=_FUNC_GETFILEPATH_STRING_F; -if (oldstr3790->cmem_descriptor){ -_FUNC_GETFILEPATH_STRING_F=qbs_new_cmem(oldstr3790->len,0); +oldstr3792=_FUNC_GETFILEPATH_STRING_F; +if (oldstr3792->cmem_descriptor){ +_FUNC_GETFILEPATH_STRING_F=qbs_new_cmem(oldstr3792->len,0); }else{ -_FUNC_GETFILEPATH_STRING_F=qbs_new(oldstr3790->len,0); +_FUNC_GETFILEPATH_STRING_F=qbs_new(oldstr3792->len,0); } -memcpy(_FUNC_GETFILEPATH_STRING_F->chr,oldstr3790->chr,oldstr3790->len); +memcpy(_FUNC_GETFILEPATH_STRING_F->chr,oldstr3792->chr,oldstr3792->len); } int32 *_FUNC_GETFILEPATH_LONG_I=NULL; if(_FUNC_GETFILEPATH_LONG_I==NULL){ _FUNC_GETFILEPATH_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_GETFILEPATH_LONG_I=0; } -int64 fornext_value3792; -int64 fornext_finalvalue3792; -int64 fornext_step3792; -uint8 fornext_step_negative3792; -byte_element_struct *byte_element_3793=NULL; -if (!byte_element_3793){ -if ((mem_static_pointer+=12)tmp||_SUB_VWATCHVARIABLE_STRING_THIS->fixed||_SUB_VWATCHVARIABLE_STRING_THIS->readonly){ -oldstr2315=_SUB_VWATCHVARIABLE_STRING_THIS; -if (oldstr2315->cmem_descriptor){ -_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new_cmem(oldstr2315->len,0); +oldstr2317=_SUB_VWATCHVARIABLE_STRING_THIS; +if (oldstr2317->cmem_descriptor){ +_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new_cmem(oldstr2317->len,0); }else{ -_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new(oldstr2315->len,0); +_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new(oldstr2317->len,0); } -memcpy(_SUB_VWATCHVARIABLE_STRING_THIS->chr,oldstr2315->chr,oldstr2315->len); +memcpy(_SUB_VWATCHVARIABLE_STRING_THIS->chr,oldstr2317->chr,oldstr2317->len); } -int32 pass2317; -int32 pass2318; -int8 pass2319; +int32 pass2319; int32 pass2320; -int32 pass2321; -int8 pass2322; -int16 pass2323; -int16 pass2324; +int8 pass2321; +int32 pass2322; +int32 pass2323; +int8 pass2324; int16 pass2325; int16 pass2326; int16 pass2327; @@ -23,3 +21,5 @@ int16 pass2328; int16 pass2329; int16 pass2330; int16 pass2331; +int16 pass2332; +int16 pass2333; diff --git a/internal/source/data120.txt b/internal/source/data120.txt index 8f6335157..09f4b5bac 100644 --- a/internal/source/data120.txt +++ b/internal/source/data120.txt @@ -3,28 +3,28 @@ if(_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION==NULL){ _FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=(int32*)mem_static_malloc(4); *_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=0; } -qbs*oldstr3794=NULL; +qbs*oldstr3796=NULL; if(_FUNC_FILEHASEXTENSION_STRING_F->tmp||_FUNC_FILEHASEXTENSION_STRING_F->fixed||_FUNC_FILEHASEXTENSION_STRING_F->readonly){ -oldstr3794=_FUNC_FILEHASEXTENSION_STRING_F; -if (oldstr3794->cmem_descriptor){ -_FUNC_FILEHASEXTENSION_STRING_F=qbs_new_cmem(oldstr3794->len,0); +oldstr3796=_FUNC_FILEHASEXTENSION_STRING_F; +if (oldstr3796->cmem_descriptor){ +_FUNC_FILEHASEXTENSION_STRING_F=qbs_new_cmem(oldstr3796->len,0); }else{ -_FUNC_FILEHASEXTENSION_STRING_F=qbs_new(oldstr3794->len,0); +_FUNC_FILEHASEXTENSION_STRING_F=qbs_new(oldstr3796->len,0); } -memcpy(_FUNC_FILEHASEXTENSION_STRING_F->chr,oldstr3794->chr,oldstr3794->len); +memcpy(_FUNC_FILEHASEXTENSION_STRING_F->chr,oldstr3796->chr,oldstr3796->len); } int32 *_FUNC_FILEHASEXTENSION_LONG_I=NULL; if(_FUNC_FILEHASEXTENSION_LONG_I==NULL){ _FUNC_FILEHASEXTENSION_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_FILEHASEXTENSION_LONG_I=0; } -int64 fornext_value3796; -int64 fornext_finalvalue3796; -int64 fornext_step3796; -uint8 fornext_step_negative3796; -byte_element_struct *byte_element_3797=NULL; -if (!byte_element_3797){ -if ((mem_static_pointer+=12)tmp||_FUNC_REMOVEFILEEXTENSION_STRING_F->fixed||_FUNC_REMOVEFILEEXTENSION_STRING_F->readonly){ -oldstr3798=_FUNC_REMOVEFILEEXTENSION_STRING_F; -if (oldstr3798->cmem_descriptor){ -_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3798->len,0); +oldstr3800=_FUNC_REMOVEFILEEXTENSION_STRING_F; +if (oldstr3800->cmem_descriptor){ +_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3800->len,0); }else{ -_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new(oldstr3798->len,0); +_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new(oldstr3800->len,0); } -memcpy(_FUNC_REMOVEFILEEXTENSION_STRING_F->chr,oldstr3798->chr,oldstr3798->len); +memcpy(_FUNC_REMOVEFILEEXTENSION_STRING_F->chr,oldstr3800->chr,oldstr3800->len); } int32 *_FUNC_REMOVEFILEEXTENSION_LONG_I=NULL; if(_FUNC_REMOVEFILEEXTENSION_LONG_I==NULL){ _FUNC_REMOVEFILEEXTENSION_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_REMOVEFILEEXTENSION_LONG_I=0; } -int64 fornext_value3800; -int64 fornext_finalvalue3800; -int64 fornext_step3800; -uint8 fornext_step_negative3800; -byte_element_struct *byte_element_3801=NULL; -if (!byte_element_3801){ -if ((mem_static_pointer+=12)tmp||_FUNC_GETFILEEXTENSION_STRING_F->fixed||_FUNC_GETFILEEXTENSION_STRING_F->readonly){ -oldstr3802=_FUNC_GETFILEEXTENSION_STRING_F; -if (oldstr3802->cmem_descriptor){ -_FUNC_GETFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3802->len,0); +oldstr3804=_FUNC_GETFILEEXTENSION_STRING_F; +if (oldstr3804->cmem_descriptor){ +_FUNC_GETFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3804->len,0); }else{ -_FUNC_GETFILEEXTENSION_STRING_F=qbs_new(oldstr3802->len,0); +_FUNC_GETFILEEXTENSION_STRING_F=qbs_new(oldstr3804->len,0); } -memcpy(_FUNC_GETFILEEXTENSION_STRING_F->chr,oldstr3802->chr,oldstr3802->len); +memcpy(_FUNC_GETFILEEXTENSION_STRING_F->chr,oldstr3804->chr,oldstr3804->len); } int32 *_FUNC_GETFILEEXTENSION_LONG_I=NULL; if(_FUNC_GETFILEEXTENSION_LONG_I==NULL){ _FUNC_GETFILEEXTENSION_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_GETFILEEXTENSION_LONG_I=0; } -int64 fornext_value3804; -int64 fornext_finalvalue3804; -int64 fornext_step3804; -uint8 fornext_step_negative3804; -byte_element_struct *byte_element_3805=NULL; -if (!byte_element_3805){ -if ((mem_static_pointer+=12)tmp||_SUB_PATH_SLASH_CORRECT_STRING_A->fixed||_SUB_PATH_SLASH_CORRECT_STRING_A->readonly){ -oldstr3806=_SUB_PATH_SLASH_CORRECT_STRING_A; -if (oldstr3806->cmem_descriptor){ -_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new_cmem(oldstr3806->len,0); +oldstr3808=_SUB_PATH_SLASH_CORRECT_STRING_A; +if (oldstr3808->cmem_descriptor){ +_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new_cmem(oldstr3808->len,0); }else{ -_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new(oldstr3806->len,0); +_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new(oldstr3808->len,0); } -memcpy(_SUB_PATH_SLASH_CORRECT_STRING_A->chr,oldstr3806->chr,oldstr3806->len); +memcpy(_SUB_PATH_SLASH_CORRECT_STRING_A->chr,oldstr3808->chr,oldstr3808->len); } int32 *_SUB_PATH_SLASH_CORRECT_LONG_X=NULL; if(_SUB_PATH_SLASH_CORRECT_LONG_X==NULL){ _SUB_PATH_SLASH_CORRECT_LONG_X=(int32*)mem_static_malloc(4); *_SUB_PATH_SLASH_CORRECT_LONG_X=0; } -int64 fornext_value3808; -int64 fornext_finalvalue3808; -int64 fornext_step3808; -uint8 fornext_step_negative3808; -byte_element_struct *byte_element_3809=NULL; -if (!byte_element_3809){ -if ((mem_static_pointer+=12)tmp||_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->fixed||_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->readonly){ -oldstr3813=_FUNC_GETESCAPEDPATH_STRING_PATH_NAME; -if (oldstr3813->cmem_descriptor){ -_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new_cmem(oldstr3813->len,0); +oldstr3815=_FUNC_GETESCAPEDPATH_STRING_PATH_NAME; +if (oldstr3815->cmem_descriptor){ +_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new_cmem(oldstr3815->len,0); }else{ -_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new(oldstr3813->len,0); +_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new(oldstr3815->len,0); } -memcpy(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->chr,oldstr3813->chr,oldstr3813->len); +memcpy(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->chr,oldstr3815->chr,oldstr3815->len); } qbs *_FUNC_GETESCAPEDPATH_STRING_BUF=NULL; if (!_FUNC_GETESCAPEDPATH_STRING_BUF)_FUNC_GETESCAPEDPATH_STRING_BUF=qbs_new(0,0); @@ -22,11 +22,11 @@ if(_FUNC_GETESCAPEDPATH_UBYTE_A==NULL){ _FUNC_GETESCAPEDPATH_UBYTE_A=(uint8*)mem_static_malloc(1); *_FUNC_GETESCAPEDPATH_UBYTE_A=0; } -int64 fornext_value3815; -int64 fornext_finalvalue3815; -int64 fornext_step3815; -uint8 fornext_step_negative3815; -byte_element_struct *byte_element_3816=NULL; -if (!byte_element_3816){ -if ((mem_static_pointer+=12)tmp||_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->fixed||_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->readonly){ -oldstr3817=_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME; -if (oldstr3817->cmem_descriptor){ -_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new_cmem(oldstr3817->len,0); +oldstr3819=_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME; +if (oldstr3819->cmem_descriptor){ +_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new_cmem(oldstr3819->len,0); }else{ -_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new(oldstr3817->len,0); +_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new(oldstr3819->len,0); } -memcpy(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->chr,oldstr3817->chr,oldstr3817->len); +memcpy(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->chr,oldstr3819->chr,oldstr3819->len); } -byte_element_struct *byte_element_3818=NULL; -if (!byte_element_3818){ -if ((mem_static_pointer+=12)tmp||_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->fixed||_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->readonly){ -oldstr3819=_SUB_PURGETEMPORARYBUILDFILES_STRING_OS; -if (oldstr3819->cmem_descriptor){ -_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new_cmem(oldstr3819->len,0); +oldstr3821=_SUB_PURGETEMPORARYBUILDFILES_STRING_OS; +if (oldstr3821->cmem_descriptor){ +_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new_cmem(oldstr3821->len,0); }else{ -_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new(oldstr3819->len,0); +_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new(oldstr3821->len,0); } -memcpy(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->chr,oldstr3819->chr,oldstr3819->len); +memcpy(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->chr,oldstr3821->chr,oldstr3821->len); } qbs *_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE=NULL; if (!_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE)_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE=qbs_new(0,0); diff --git a/internal/source/data128.txt b/internal/source/data128.txt index 4b578ea29..a7bc59eca 100644 --- a/internal/source/data128.txt +++ b/internal/source/data128.txt @@ -1,14 +1,14 @@ qbs *_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME=NULL; if (!_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME)_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME=qbs_new(0,0); -qbs*oldstr3820=NULL; +qbs*oldstr3822=NULL; if(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->tmp||_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->fixed||_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->readonly){ -oldstr3820=_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE; -if (oldstr3820->cmem_descriptor){ -_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new_cmem(oldstr3820->len,0); +oldstr3822=_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE; +if (oldstr3822->cmem_descriptor){ +_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new_cmem(oldstr3822->len,0); }else{ -_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new(oldstr3820->len,0); +_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new(oldstr3822->len,0); } -memcpy(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->chr,oldstr3820->chr,oldstr3820->len); +memcpy(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->chr,oldstr3822->chr,oldstr3822->len); } qbs *_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN=NULL; if (!_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN)_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN=qbs_new(0,0); diff --git a/internal/source/data129.txt b/internal/source/data129.txt index 4098954d1..bf7c05c38 100644 --- a/internal/source/data129.txt +++ b/internal/source/data129.txt @@ -1,14 +1,14 @@ qbs *_FUNC_GETELEMENT_STRING_GETELEMENT=NULL; if (!_FUNC_GETELEMENT_STRING_GETELEMENT)_FUNC_GETELEMENT_STRING_GETELEMENT=qbs_new(0,0); -qbs*oldstr3821=NULL; +qbs*oldstr3823=NULL; if(_FUNC_GETELEMENT_STRING_A->tmp||_FUNC_GETELEMENT_STRING_A->fixed||_FUNC_GETELEMENT_STRING_A->readonly){ -oldstr3821=_FUNC_GETELEMENT_STRING_A; -if (oldstr3821->cmem_descriptor){ -_FUNC_GETELEMENT_STRING_A=qbs_new_cmem(oldstr3821->len,0); +oldstr3823=_FUNC_GETELEMENT_STRING_A; +if (oldstr3823->cmem_descriptor){ +_FUNC_GETELEMENT_STRING_A=qbs_new_cmem(oldstr3823->len,0); }else{ -_FUNC_GETELEMENT_STRING_A=qbs_new(oldstr3821->len,0); +_FUNC_GETELEMENT_STRING_A=qbs_new(oldstr3823->len,0); } -memcpy(_FUNC_GETELEMENT_STRING_A->chr,oldstr3821->chr,oldstr3821->len); +memcpy(_FUNC_GETELEMENT_STRING_A->chr,oldstr3823->chr,oldstr3823->len); } int32 *_FUNC_GETELEMENT_LONG_P=NULL; if(_FUNC_GETELEMENT_LONG_P==NULL){ @@ -25,7 +25,7 @@ if(_FUNC_GETELEMENT_LONG_I==NULL){ _FUNC_GETELEMENT_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_GETELEMENT_LONG_I=0; } -byte_element_struct *byte_element_3822=NULL; -if (!byte_element_3822){ -if ((mem_static_pointer+=12)tmp||_FUNC_GETELEMENTS_STRING_A->fixed||_FUNC_GETELEMENTS_STRING_A->readonly){ -oldstr3823=_FUNC_GETELEMENTS_STRING_A; -if (oldstr3823->cmem_descriptor){ -_FUNC_GETELEMENTS_STRING_A=qbs_new_cmem(oldstr3823->len,0); +oldstr3825=_FUNC_GETELEMENTS_STRING_A; +if (oldstr3825->cmem_descriptor){ +_FUNC_GETELEMENTS_STRING_A=qbs_new_cmem(oldstr3825->len,0); }else{ -_FUNC_GETELEMENTS_STRING_A=qbs_new(oldstr3823->len,0); +_FUNC_GETELEMENTS_STRING_A=qbs_new(oldstr3825->len,0); } -memcpy(_FUNC_GETELEMENTS_STRING_A->chr,oldstr3823->chr,oldstr3823->len); +memcpy(_FUNC_GETELEMENTS_STRING_A->chr,oldstr3825->chr,oldstr3825->len); } int32 *_FUNC_GETELEMENTS_LONG_P=NULL; if(_FUNC_GETELEMENTS_LONG_P==NULL){ @@ -30,7 +30,7 @@ if(_FUNC_GETELEMENTS_LONG_I1POS==NULL){ _FUNC_GETELEMENTS_LONG_I1POS=(int32*)mem_static_malloc(4); *_FUNC_GETELEMENTS_LONG_I1POS=0; } -byte_element_struct *byte_element_3824=NULL; -if (!byte_element_3824){ -if ((mem_static_pointer+=12)tmp||_SUB_INSERTELEMENTS_STRING_A->fixed||_SUB_INSERTELEMENTS_STRING_A->readonly){ -oldstr3825=_SUB_INSERTELEMENTS_STRING_A; -if (oldstr3825->cmem_descriptor){ -_SUB_INSERTELEMENTS_STRING_A=qbs_new_cmem(oldstr3825->len,0); +oldstr3827=_SUB_INSERTELEMENTS_STRING_A; +if (oldstr3827->cmem_descriptor){ +_SUB_INSERTELEMENTS_STRING_A=qbs_new_cmem(oldstr3827->len,0); }else{ -_SUB_INSERTELEMENTS_STRING_A=qbs_new(oldstr3825->len,0); +_SUB_INSERTELEMENTS_STRING_A=qbs_new(oldstr3827->len,0); } -memcpy(_SUB_INSERTELEMENTS_STRING_A->chr,oldstr3825->chr,oldstr3825->len); +memcpy(_SUB_INSERTELEMENTS_STRING_A->chr,oldstr3827->chr,oldstr3827->len); } -qbs*oldstr3826=NULL; +qbs*oldstr3828=NULL; if(_SUB_INSERTELEMENTS_STRING_ELEMENTS->tmp||_SUB_INSERTELEMENTS_STRING_ELEMENTS->fixed||_SUB_INSERTELEMENTS_STRING_ELEMENTS->readonly){ -oldstr3826=_SUB_INSERTELEMENTS_STRING_ELEMENTS; -if (oldstr3826->cmem_descriptor){ -_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new_cmem(oldstr3826->len,0); +oldstr3828=_SUB_INSERTELEMENTS_STRING_ELEMENTS; +if (oldstr3828->cmem_descriptor){ +_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new_cmem(oldstr3828->len,0); }else{ -_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new(oldstr3826->len,0); +_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new(oldstr3828->len,0); } -memcpy(_SUB_INSERTELEMENTS_STRING_ELEMENTS->chr,oldstr3826->chr,oldstr3826->len); +memcpy(_SUB_INSERTELEMENTS_STRING_ELEMENTS->chr,oldstr3828->chr,oldstr3828->len); } qbs *_SUB_INSERTELEMENTS_STRING_A2=NULL; if (!_SUB_INSERTELEMENTS_STRING_A2)_SUB_INSERTELEMENTS_STRING_A2=qbs_new(0,0); @@ -30,7 +30,7 @@ if(_SUB_INSERTELEMENTS_LONG_I2==NULL){ _SUB_INSERTELEMENTS_LONG_I2=(int32*)mem_static_malloc(4); *_SUB_INSERTELEMENTS_LONG_I2=0; } -int64 fornext_value3828; -int64 fornext_finalvalue3828; -int64 fornext_step3828; -uint8 fornext_step_negative3828; +int64 fornext_value3830; +int64 fornext_finalvalue3830; +int64 fornext_step3830; +uint8 fornext_step_negative3830; diff --git a/internal/source/data132.txt b/internal/source/data132.txt index 49d27b3cc..c185c69f0 100644 --- a/internal/source/data132.txt +++ b/internal/source/data132.txt @@ -3,15 +3,15 @@ if(_FUNC_NUMELEMENTS_LONG_NUMELEMENTS==NULL){ _FUNC_NUMELEMENTS_LONG_NUMELEMENTS=(int32*)mem_static_malloc(4); *_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=0; } -qbs*oldstr3829=NULL; +qbs*oldstr3831=NULL; if(_FUNC_NUMELEMENTS_STRING_A->tmp||_FUNC_NUMELEMENTS_STRING_A->fixed||_FUNC_NUMELEMENTS_STRING_A->readonly){ -oldstr3829=_FUNC_NUMELEMENTS_STRING_A; -if (oldstr3829->cmem_descriptor){ -_FUNC_NUMELEMENTS_STRING_A=qbs_new_cmem(oldstr3829->len,0); +oldstr3831=_FUNC_NUMELEMENTS_STRING_A; +if (oldstr3831->cmem_descriptor){ +_FUNC_NUMELEMENTS_STRING_A=qbs_new_cmem(oldstr3831->len,0); }else{ -_FUNC_NUMELEMENTS_STRING_A=qbs_new(oldstr3829->len,0); +_FUNC_NUMELEMENTS_STRING_A=qbs_new(oldstr3831->len,0); } -memcpy(_FUNC_NUMELEMENTS_STRING_A->chr,oldstr3829->chr,oldstr3829->len); +memcpy(_FUNC_NUMELEMENTS_STRING_A->chr,oldstr3831->chr,oldstr3831->len); } int32 *_FUNC_NUMELEMENTS_LONG_P=NULL; if(_FUNC_NUMELEMENTS_LONG_P==NULL){ diff --git a/internal/source/data133.txt b/internal/source/data133.txt index 130dd3adb..308f8bb5f 100644 --- a/internal/source/data133.txt +++ b/internal/source/data133.txt @@ -1,12 +1,12 @@ -qbs*oldstr3830=NULL; +qbs*oldstr3832=NULL; if(_SUB_REMOVEELEMENTS_STRING_A->tmp||_SUB_REMOVEELEMENTS_STRING_A->fixed||_SUB_REMOVEELEMENTS_STRING_A->readonly){ -oldstr3830=_SUB_REMOVEELEMENTS_STRING_A; -if (oldstr3830->cmem_descriptor){ -_SUB_REMOVEELEMENTS_STRING_A=qbs_new_cmem(oldstr3830->len,0); +oldstr3832=_SUB_REMOVEELEMENTS_STRING_A; +if (oldstr3832->cmem_descriptor){ +_SUB_REMOVEELEMENTS_STRING_A=qbs_new_cmem(oldstr3832->len,0); }else{ -_SUB_REMOVEELEMENTS_STRING_A=qbs_new(oldstr3830->len,0); +_SUB_REMOVEELEMENTS_STRING_A=qbs_new(oldstr3832->len,0); } -memcpy(_SUB_REMOVEELEMENTS_STRING_A->chr,oldstr3830->chr,oldstr3830->len); +memcpy(_SUB_REMOVEELEMENTS_STRING_A->chr,oldstr3832->chr,oldstr3832->len); } int32 *_SUB_REMOVEELEMENTS_LONG_N=NULL; if(_SUB_REMOVEELEMENTS_LONG_N==NULL){ @@ -20,11 +20,11 @@ _SUB_REMOVEELEMENTS_LONG_I=(int32*)mem_static_malloc(4); } qbs *_SUB_REMOVEELEMENTS_STRING_A2=NULL; if (!_SUB_REMOVEELEMENTS_STRING_A2)_SUB_REMOVEELEMENTS_STRING_A2=qbs_new(0,0); -int64 fornext_value3832; -int64 fornext_finalvalue3832; -int64 fornext_step3832; -uint8 fornext_step_negative3832; -byte_element_struct *byte_element_3833=NULL; -if (!byte_element_3833){ -if ((mem_static_pointer+=12)tmp||_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->fixed||_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->readonly){ -oldstr3834=_FUNC_COUNTFUNCTIONELEMENTS_STRING_A; -if (oldstr3834->cmem_descriptor){ -_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new_cmem(oldstr3834->len,0); +oldstr3836=_FUNC_COUNTFUNCTIONELEMENTS_STRING_A; +if (oldstr3836->cmem_descriptor){ +_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new_cmem(oldstr3836->len,0); }else{ -_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new(oldstr3834->len,0); +_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new(oldstr3836->len,0); } -memcpy(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->chr,oldstr3834->chr,oldstr3834->len); +memcpy(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->chr,oldstr3836->chr,oldstr3836->len); } int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=NULL; if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT==NULL){ @@ -33,8 +33,8 @@ if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_I==NULL){ _FUNC_COUNTFUNCTIONELEMENTS_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=0; } -byte_element_struct *byte_element_3835=NULL; -if (!byte_element_3835){ -if ((mem_static_pointer+=12)tmp||_FUNC_HASFUNCTIONELEMENT_STRING_A->fixed||_FUNC_HASFUNCTIONELEMENT_STRING_A->readonly){ -oldstr3838=_FUNC_HASFUNCTIONELEMENT_STRING_A; -if (oldstr3838->cmem_descriptor){ -_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new_cmem(oldstr3838->len,0); +oldstr3840=_FUNC_HASFUNCTIONELEMENT_STRING_A; +if (oldstr3840->cmem_descriptor){ +_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new_cmem(oldstr3840->len,0); }else{ -_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new(oldstr3838->len,0); +_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new(oldstr3840->len,0); } -memcpy(_FUNC_HASFUNCTIONELEMENT_STRING_A->chr,oldstr3838->chr,oldstr3838->len); +memcpy(_FUNC_HASFUNCTIONELEMENT_STRING_A->chr,oldstr3840->chr,oldstr3840->len); } int32 *_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=NULL; if(_FUNC_HASFUNCTIONELEMENT_LONG_COUNT==NULL){ @@ -38,16 +38,16 @@ if(_FUNC_HASFUNCTIONELEMENT_LONG_START==NULL){ _FUNC_HASFUNCTIONELEMENT_LONG_START=(int32*)mem_static_malloc(4); *_FUNC_HASFUNCTIONELEMENT_LONG_START=0; } -byte_element_struct *byte_element_3839=NULL; -if (!byte_element_3839){ -if ((mem_static_pointer+=12)tmp||_FUNC_ISVALIDARGSET_STRING_FORMAT->fixed||_FUNC_ISVALIDARGSET_STRING_FORMAT->readonly){ -oldstr3844=_FUNC_ISVALIDARGSET_STRING_FORMAT; -if (oldstr3844->cmem_descriptor){ -_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new_cmem(oldstr3844->len,0); +oldstr3846=_FUNC_ISVALIDARGSET_STRING_FORMAT; +if (oldstr3846->cmem_descriptor){ +_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new_cmem(oldstr3846->len,0); }else{ -_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new(oldstr3844->len,0); +_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new(oldstr3846->len,0); } -memcpy(_FUNC_ISVALIDARGSET_STRING_FORMAT->chr,oldstr3844->chr,oldstr3844->len); +memcpy(_FUNC_ISVALIDARGSET_STRING_FORMAT->chr,oldstr3846->chr,oldstr3846->len); } int32 *_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=NULL; if(_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT==NULL){ @@ -60,12 +60,12 @@ if(_FUNC_ISVALIDARGSET_LONG_ARGIGNORED==NULL){ _FUNC_ISVALIDARGSET_LONG_ARGIGNORED=(int32*)mem_static_malloc(4); *_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=0; } -int64 fornext_value3846; -int64 fornext_finalvalue3846; -int64 fornext_step3846; -uint8 fornext_step_negative3846; -byte_element_struct *byte_element_3847=NULL; -if (!byte_element_3847){ -if ((mem_static_pointer+=12)tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->readonly){ -oldstr3849=_FUNC_GL2QB_TYPE_CONVERT_STRING_A; -if (oldstr3849->cmem_descriptor){ -_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new_cmem(oldstr3849->len,0); -}else{ -_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new(oldstr3849->len,0); -} -memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->chr,oldstr3849->chr,oldstr3849->len); -} -qbs*oldstr3850=NULL; -if(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->readonly){ -oldstr3850=_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL; -if (oldstr3850->cmem_descriptor){ -_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new_cmem(oldstr3850->len,0); -}else{ -_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new(oldstr3850->len,0); -} -memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->chr,oldstr3850->chr,oldstr3850->len); -} qbs*oldstr3851=NULL; -if(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->readonly){ -oldstr3851=_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP; +if(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->readonly){ +oldstr3851=_FUNC_GL2QB_TYPE_CONVERT_STRING_A; if (oldstr3851->cmem_descriptor){ -_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new_cmem(oldstr3851->len,0); +_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new_cmem(oldstr3851->len,0); }else{ -_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new(oldstr3851->len,0); +_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new(oldstr3851->len,0); } -memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->chr,oldstr3851->chr,oldstr3851->len); +memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->chr,oldstr3851->chr,oldstr3851->len); +} +qbs*oldstr3852=NULL; +if(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->readonly){ +oldstr3852=_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL; +if (oldstr3852->cmem_descriptor){ +_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new_cmem(oldstr3852->len,0); +}else{ +_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new(oldstr3852->len,0); +} +memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->chr,oldstr3852->chr,oldstr3852->len); +} +qbs*oldstr3853=NULL; +if(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->readonly){ +oldstr3853=_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP; +if (oldstr3853->cmem_descriptor){ +_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new_cmem(oldstr3853->len,0); +}else{ +_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new(oldstr3853->len,0); +} +memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->chr,oldstr3853->chr,oldstr3853->len); } qbs *_FUNC_GL2QB_TYPE_CONVERT_STRING_B=NULL; if (!_FUNC_GL2QB_TYPE_CONVERT_STRING_B)_FUNC_GL2QB_TYPE_CONVERT_STRING_B=qbs_new(0,0); diff --git a/internal/source/data138.txt b/internal/source/data138.txt index 86fdf9b73..4b4f727de 100644 --- a/internal/source/data138.txt +++ b/internal/source/data138.txt @@ -1,44 +1,44 @@ qbs *_FUNC_READCHUNK_STRING_READCHUNK=NULL; if (!_FUNC_READCHUNK_STRING_READCHUNK)_FUNC_READCHUNK_STRING_READCHUNK=qbs_new(0,0); -qbs*oldstr3853=NULL; +qbs*oldstr3855=NULL; if(_FUNC_READCHUNK_STRING_A->tmp||_FUNC_READCHUNK_STRING_A->fixed||_FUNC_READCHUNK_STRING_A->readonly){ -oldstr3853=_FUNC_READCHUNK_STRING_A; -if (oldstr3853->cmem_descriptor){ -_FUNC_READCHUNK_STRING_A=qbs_new_cmem(oldstr3853->len,0); +oldstr3855=_FUNC_READCHUNK_STRING_A; +if (oldstr3855->cmem_descriptor){ +_FUNC_READCHUNK_STRING_A=qbs_new_cmem(oldstr3855->len,0); }else{ -_FUNC_READCHUNK_STRING_A=qbs_new(oldstr3853->len,0); +_FUNC_READCHUNK_STRING_A=qbs_new(oldstr3855->len,0); } -memcpy(_FUNC_READCHUNK_STRING_A->chr,oldstr3853->chr,oldstr3853->len); +memcpy(_FUNC_READCHUNK_STRING_A->chr,oldstr3855->chr,oldstr3855->len); } -qbs*oldstr3854=NULL; +qbs*oldstr3856=NULL; if(_FUNC_READCHUNK_STRING_LAST_CHARACTER->tmp||_FUNC_READCHUNK_STRING_LAST_CHARACTER->fixed||_FUNC_READCHUNK_STRING_LAST_CHARACTER->readonly){ -oldstr3854=_FUNC_READCHUNK_STRING_LAST_CHARACTER; -if (oldstr3854->cmem_descriptor){ -_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new_cmem(oldstr3854->len,0); +oldstr3856=_FUNC_READCHUNK_STRING_LAST_CHARACTER; +if (oldstr3856->cmem_descriptor){ +_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new_cmem(oldstr3856->len,0); }else{ -_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new(oldstr3854->len,0); +_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new(oldstr3856->len,0); } -memcpy(_FUNC_READCHUNK_STRING_LAST_CHARACTER->chr,oldstr3854->chr,oldstr3854->len); +memcpy(_FUNC_READCHUNK_STRING_LAST_CHARACTER->chr,oldstr3856->chr,oldstr3856->len); } int32 *_FUNC_READCHUNK_LONG_X=NULL; if(_FUNC_READCHUNK_LONG_X==NULL){ _FUNC_READCHUNK_LONG_X=(int32*)mem_static_malloc(4); *_FUNC_READCHUNK_LONG_X=0; } -int64 fornext_value3856; -int64 fornext_finalvalue3856; -int64 fornext_step3856; -uint8 fornext_step_negative3856; -byte_element_struct *byte_element_3857=NULL; -if (!byte_element_3857){ -if ((mem_static_pointer+=12)tmp||_FUNC_INIGETSECTION_STRING___SECTION->fixed||_FUNC_INIGETSECTION_STRING___SECTION->readonly){ -oldstr3901=_FUNC_INIGETSECTION_STRING___SECTION; -if (oldstr3901->cmem_descriptor){ -_FUNC_INIGETSECTION_STRING___SECTION=qbs_new_cmem(oldstr3901->len,0); +oldstr3903=_FUNC_INIGETSECTION_STRING___SECTION; +if (oldstr3903->cmem_descriptor){ +_FUNC_INIGETSECTION_STRING___SECTION=qbs_new_cmem(oldstr3903->len,0); }else{ -_FUNC_INIGETSECTION_STRING___SECTION=qbs_new(oldstr3901->len,0); +_FUNC_INIGETSECTION_STRING___SECTION=qbs_new(oldstr3903->len,0); } -memcpy(_FUNC_INIGETSECTION_STRING___SECTION->chr,oldstr3901->chr,oldstr3901->len); +memcpy(_FUNC_INIGETSECTION_STRING___SECTION->chr,oldstr3903->chr,oldstr3903->len); } qbs *_FUNC_INIGETSECTION_STRING_SECTION=NULL; if (!_FUNC_INIGETSECTION_STRING_SECTION)_FUNC_INIGETSECTION_STRING_SECTION=qbs_new(0,0); @@ -42,14 +42,10 @@ if(_FUNC_INIGETSECTION_BYTE_INQUOTE==NULL){ _FUNC_INIGETSECTION_BYTE_INQUOTE=(int8*)mem_static_malloc(1); *_FUNC_INIGETSECTION_BYTE_INQUOTE=0; } -int64 fornext_value3903; -int64 fornext_finalvalue3903; -int64 fornext_step3903; -uint8 fornext_step_negative3903; -int64 fornext_value3906; -int64 fornext_finalvalue3906; -int64 fornext_step3906; -uint8 fornext_step_negative3906; +int64 fornext_value3905; +int64 fornext_finalvalue3905; +int64 fornext_step3905; +uint8 fornext_step_negative3905; int64 fornext_value3908; int64 fornext_finalvalue3908; int64 fornext_step3908; @@ -58,7 +54,11 @@ int64 fornext_value3910; int64 fornext_finalvalue3910; int64 fornext_step3910; uint8 fornext_step_negative3910; -byte_element_struct *byte_element_3911=NULL; -if (!byte_element_3911){ -if ((mem_static_pointer+=12)tmp||_FUNC_INIFORMATSECTION_STRING___SECTION->fixed||_FUNC_INIFORMATSECTION_STRING___SECTION->readonly){ -oldstr3912=_FUNC_INIFORMATSECTION_STRING___SECTION; -if (oldstr3912->cmem_descriptor){ -_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new_cmem(oldstr3912->len,0); +oldstr3914=_FUNC_INIFORMATSECTION_STRING___SECTION; +if (oldstr3914->cmem_descriptor){ +_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new_cmem(oldstr3914->len,0); }else{ -_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new(oldstr3912->len,0); +_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new(oldstr3914->len,0); } -memcpy(_FUNC_INIFORMATSECTION_STRING___SECTION->chr,oldstr3912->chr,oldstr3912->len); +memcpy(_FUNC_INIFORMATSECTION_STRING___SECTION->chr,oldstr3914->chr,oldstr3914->len); } qbs *_FUNC_INIFORMATSECTION_STRING_SECTION=NULL; if (!_FUNC_INIFORMATSECTION_STRING_SECTION)_FUNC_INIFORMATSECTION_STRING_SECTION=qbs_new(0,0); -byte_element_struct *byte_element_3913=NULL; -if (!byte_element_3913){ -if ((mem_static_pointer+=12)tmp||_FUNC_READSETTING_STRING_FILE->fixed||_FUNC_READSETTING_STRING_FILE->readonly){ -oldstr3915=_FUNC_READSETTING_STRING_FILE; -if (oldstr3915->cmem_descriptor){ -_FUNC_READSETTING_STRING_FILE=qbs_new_cmem(oldstr3915->len,0); -}else{ -_FUNC_READSETTING_STRING_FILE=qbs_new(oldstr3915->len,0); -} -memcpy(_FUNC_READSETTING_STRING_FILE->chr,oldstr3915->chr,oldstr3915->len); -} -qbs*oldstr3916=NULL; -if(_FUNC_READSETTING_STRING___SECTION->tmp||_FUNC_READSETTING_STRING___SECTION->fixed||_FUNC_READSETTING_STRING___SECTION->readonly){ -oldstr3916=_FUNC_READSETTING_STRING___SECTION; -if (oldstr3916->cmem_descriptor){ -_FUNC_READSETTING_STRING___SECTION=qbs_new_cmem(oldstr3916->len,0); -}else{ -_FUNC_READSETTING_STRING___SECTION=qbs_new(oldstr3916->len,0); -} -memcpy(_FUNC_READSETTING_STRING___SECTION->chr,oldstr3916->chr,oldstr3916->len); -} qbs*oldstr3917=NULL; -if(_FUNC_READSETTING_STRING___KEY->tmp||_FUNC_READSETTING_STRING___KEY->fixed||_FUNC_READSETTING_STRING___KEY->readonly){ -oldstr3917=_FUNC_READSETTING_STRING___KEY; +if(_FUNC_READSETTING_STRING_FILE->tmp||_FUNC_READSETTING_STRING_FILE->fixed||_FUNC_READSETTING_STRING_FILE->readonly){ +oldstr3917=_FUNC_READSETTING_STRING_FILE; if (oldstr3917->cmem_descriptor){ -_FUNC_READSETTING_STRING___KEY=qbs_new_cmem(oldstr3917->len,0); +_FUNC_READSETTING_STRING_FILE=qbs_new_cmem(oldstr3917->len,0); }else{ -_FUNC_READSETTING_STRING___KEY=qbs_new(oldstr3917->len,0); +_FUNC_READSETTING_STRING_FILE=qbs_new(oldstr3917->len,0); } -memcpy(_FUNC_READSETTING_STRING___KEY->chr,oldstr3917->chr,oldstr3917->len); +memcpy(_FUNC_READSETTING_STRING_FILE->chr,oldstr3917->chr,oldstr3917->len); +} +qbs*oldstr3918=NULL; +if(_FUNC_READSETTING_STRING___SECTION->tmp||_FUNC_READSETTING_STRING___SECTION->fixed||_FUNC_READSETTING_STRING___SECTION->readonly){ +oldstr3918=_FUNC_READSETTING_STRING___SECTION; +if (oldstr3918->cmem_descriptor){ +_FUNC_READSETTING_STRING___SECTION=qbs_new_cmem(oldstr3918->len,0); +}else{ +_FUNC_READSETTING_STRING___SECTION=qbs_new(oldstr3918->len,0); +} +memcpy(_FUNC_READSETTING_STRING___SECTION->chr,oldstr3918->chr,oldstr3918->len); +} +qbs*oldstr3919=NULL; +if(_FUNC_READSETTING_STRING___KEY->tmp||_FUNC_READSETTING_STRING___KEY->fixed||_FUNC_READSETTING_STRING___KEY->readonly){ +oldstr3919=_FUNC_READSETTING_STRING___KEY; +if (oldstr3919->cmem_descriptor){ +_FUNC_READSETTING_STRING___KEY=qbs_new_cmem(oldstr3919->len,0); +}else{ +_FUNC_READSETTING_STRING___KEY=qbs_new(oldstr3919->len,0); +} +memcpy(_FUNC_READSETTING_STRING___KEY->chr,oldstr3919->chr,oldstr3919->len); } uint32 *_FUNC_READSETTING_ULONG_EQUAL=NULL; if(_FUNC_READSETTING_ULONG_EQUAL==NULL){ @@ -61,26 +61,18 @@ if(_FUNC_READSETTING_ULONG_FOUNDLF==NULL){ _FUNC_READSETTING_ULONG_FOUNDLF=(uint32*)mem_static_malloc(4); *_FUNC_READSETTING_ULONG_FOUNDLF=0; } -byte_element_struct *byte_element_3918=NULL; -if (!byte_element_3918){ -if ((mem_static_pointer+=12)tmp||_SUB_WRITESETTING_STRING_FILE->fixed||_SUB_WRITESETTING_STRING_FILE->readonly){ -oldstr3931=_SUB_WRITESETTING_STRING_FILE; -if (oldstr3931->cmem_descriptor){ -_SUB_WRITESETTING_STRING_FILE=qbs_new_cmem(oldstr3931->len,0); -}else{ -_SUB_WRITESETTING_STRING_FILE=qbs_new(oldstr3931->len,0); -} -memcpy(_SUB_WRITESETTING_STRING_FILE->chr,oldstr3931->chr,oldstr3931->len); -} -qbs*oldstr3932=NULL; -if(_SUB_WRITESETTING_STRING___SECTION->tmp||_SUB_WRITESETTING_STRING___SECTION->fixed||_SUB_WRITESETTING_STRING___SECTION->readonly){ -oldstr3932=_SUB_WRITESETTING_STRING___SECTION; -if (oldstr3932->cmem_descriptor){ -_SUB_WRITESETTING_STRING___SECTION=qbs_new_cmem(oldstr3932->len,0); -}else{ -_SUB_WRITESETTING_STRING___SECTION=qbs_new(oldstr3932->len,0); -} -memcpy(_SUB_WRITESETTING_STRING___SECTION->chr,oldstr3932->chr,oldstr3932->len); -} qbs*oldstr3933=NULL; -if(_SUB_WRITESETTING_STRING___KEY->tmp||_SUB_WRITESETTING_STRING___KEY->fixed||_SUB_WRITESETTING_STRING___KEY->readonly){ -oldstr3933=_SUB_WRITESETTING_STRING___KEY; +if(_SUB_WRITESETTING_STRING_FILE->tmp||_SUB_WRITESETTING_STRING_FILE->fixed||_SUB_WRITESETTING_STRING_FILE->readonly){ +oldstr3933=_SUB_WRITESETTING_STRING_FILE; if (oldstr3933->cmem_descriptor){ -_SUB_WRITESETTING_STRING___KEY=qbs_new_cmem(oldstr3933->len,0); +_SUB_WRITESETTING_STRING_FILE=qbs_new_cmem(oldstr3933->len,0); }else{ -_SUB_WRITESETTING_STRING___KEY=qbs_new(oldstr3933->len,0); +_SUB_WRITESETTING_STRING_FILE=qbs_new(oldstr3933->len,0); } -memcpy(_SUB_WRITESETTING_STRING___KEY->chr,oldstr3933->chr,oldstr3933->len); +memcpy(_SUB_WRITESETTING_STRING_FILE->chr,oldstr3933->chr,oldstr3933->len); } qbs*oldstr3934=NULL; -if(_SUB_WRITESETTING_STRING___VALUE->tmp||_SUB_WRITESETTING_STRING___VALUE->fixed||_SUB_WRITESETTING_STRING___VALUE->readonly){ -oldstr3934=_SUB_WRITESETTING_STRING___VALUE; +if(_SUB_WRITESETTING_STRING___SECTION->tmp||_SUB_WRITESETTING_STRING___SECTION->fixed||_SUB_WRITESETTING_STRING___SECTION->readonly){ +oldstr3934=_SUB_WRITESETTING_STRING___SECTION; if (oldstr3934->cmem_descriptor){ -_SUB_WRITESETTING_STRING___VALUE=qbs_new_cmem(oldstr3934->len,0); +_SUB_WRITESETTING_STRING___SECTION=qbs_new_cmem(oldstr3934->len,0); }else{ -_SUB_WRITESETTING_STRING___VALUE=qbs_new(oldstr3934->len,0); +_SUB_WRITESETTING_STRING___SECTION=qbs_new(oldstr3934->len,0); } -memcpy(_SUB_WRITESETTING_STRING___VALUE->chr,oldstr3934->chr,oldstr3934->len); +memcpy(_SUB_WRITESETTING_STRING___SECTION->chr,oldstr3934->chr,oldstr3934->len); +} +qbs*oldstr3935=NULL; +if(_SUB_WRITESETTING_STRING___KEY->tmp||_SUB_WRITESETTING_STRING___KEY->fixed||_SUB_WRITESETTING_STRING___KEY->readonly){ +oldstr3935=_SUB_WRITESETTING_STRING___KEY; +if (oldstr3935->cmem_descriptor){ +_SUB_WRITESETTING_STRING___KEY=qbs_new_cmem(oldstr3935->len,0); +}else{ +_SUB_WRITESETTING_STRING___KEY=qbs_new(oldstr3935->len,0); +} +memcpy(_SUB_WRITESETTING_STRING___KEY->chr,oldstr3935->chr,oldstr3935->len); +} +qbs*oldstr3936=NULL; +if(_SUB_WRITESETTING_STRING___VALUE->tmp||_SUB_WRITESETTING_STRING___VALUE->fixed||_SUB_WRITESETTING_STRING___VALUE->readonly){ +oldstr3936=_SUB_WRITESETTING_STRING___VALUE; +if (oldstr3936->cmem_descriptor){ +_SUB_WRITESETTING_STRING___VALUE=qbs_new_cmem(oldstr3936->len,0); +}else{ +_SUB_WRITESETTING_STRING___VALUE=qbs_new(oldstr3936->len,0); +} +memcpy(_SUB_WRITESETTING_STRING___VALUE->chr,oldstr3936->chr,oldstr3936->len); } qbs *_SUB_WRITESETTING_STRING_TEMPVALUE=NULL; if (!_SUB_WRITESETTING_STRING_TEMPVALUE)_SUB_WRITESETTING_STRING_TEMPVALUE=qbs_new(0,0); @@ -71,22 +71,14 @@ if(_SUB_WRITESETTING_ULONG_I==NULL){ _SUB_WRITESETTING_ULONG_I=(uint32*)mem_static_malloc(4); *_SUB_WRITESETTING_ULONG_I=0; } -int64 fornext_value3936; -int64 fornext_finalvalue3936; -int64 fornext_step3936; -uint8 fornext_step_negative3936; int64 fornext_value3938; int64 fornext_finalvalue3938; int64 fornext_step3938; uint8 fornext_step_negative3938; -byte_element_struct *byte_element_3939=NULL; -if (!byte_element_3939){ -if ((mem_static_pointer+=12)tmp||_FUNC_COUNTELEMENTS_STRING_A->fixed||_FUNC_COUNTELEMENTS_STRING_A->readonly){ -oldstr2361=_FUNC_COUNTELEMENTS_STRING_A; -if (oldstr2361->cmem_descriptor){ -_FUNC_COUNTELEMENTS_STRING_A=qbs_new_cmem(oldstr2361->len,0); +oldstr2363=_FUNC_COUNTELEMENTS_STRING_A; +if (oldstr2363->cmem_descriptor){ +_FUNC_COUNTELEMENTS_STRING_A=qbs_new_cmem(oldstr2363->len,0); }else{ -_FUNC_COUNTELEMENTS_STRING_A=qbs_new(oldstr2361->len,0); +_FUNC_COUNTELEMENTS_STRING_A=qbs_new(oldstr2363->len,0); } -memcpy(_FUNC_COUNTELEMENTS_STRING_A->chr,oldstr2361->chr,oldstr2361->len); +memcpy(_FUNC_COUNTELEMENTS_STRING_A->chr,oldstr2363->chr,oldstr2363->len); } int32 *_FUNC_COUNTELEMENTS_LONG_N=NULL; if(_FUNC_COUNTELEMENTS_LONG_N==NULL){ @@ -28,10 +28,10 @@ if(_FUNC_COUNTELEMENTS_LONG_I==NULL){ _FUNC_COUNTELEMENTS_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_COUNTELEMENTS_LONG_I=0; } -int64 fornext_value2363; -int64 fornext_finalvalue2363; -int64 fornext_step2363; -uint8 fornext_step_negative2363; +int64 fornext_value2365; +int64 fornext_finalvalue2365; +int64 fornext_step2365; +uint8 fornext_step_negative2365; qbs *_FUNC_COUNTELEMENTS_STRING_E=NULL; if (!_FUNC_COUNTELEMENTS_STRING_E)_FUNC_COUNTELEMENTS_STRING_E=qbs_new(0,0); int32 *_FUNC_COUNTELEMENTS_LONG_B=NULL; diff --git a/internal/source/data151.txt b/internal/source/data151.txt index 7e2d5f3fe..7c96ed448 100644 --- a/internal/source/data151.txt +++ b/internal/source/data151.txt @@ -1,19 +1,19 @@ -qbs*oldstr3944=NULL; +qbs*oldstr3946=NULL; if(_SUB_INILOAD_STRING_FILE->tmp||_SUB_INILOAD_STRING_FILE->fixed||_SUB_INILOAD_STRING_FILE->readonly){ -oldstr3944=_SUB_INILOAD_STRING_FILE; -if (oldstr3944->cmem_descriptor){ -_SUB_INILOAD_STRING_FILE=qbs_new_cmem(oldstr3944->len,0); +oldstr3946=_SUB_INILOAD_STRING_FILE; +if (oldstr3946->cmem_descriptor){ +_SUB_INILOAD_STRING_FILE=qbs_new_cmem(oldstr3946->len,0); }else{ -_SUB_INILOAD_STRING_FILE=qbs_new(oldstr3944->len,0); +_SUB_INILOAD_STRING_FILE=qbs_new(oldstr3946->len,0); } -memcpy(_SUB_INILOAD_STRING_FILE->chr,oldstr3944->chr,oldstr3944->len); +memcpy(_SUB_INILOAD_STRING_FILE->chr,oldstr3946->chr,oldstr3946->len); } int16 *_SUB_INILOAD_INTEGER_FILENUM=NULL; if(_SUB_INILOAD_INTEGER_FILENUM==NULL){ _SUB_INILOAD_INTEGER_FILENUM=(int16*)mem_static_malloc(2); *_SUB_INILOAD_INTEGER_FILENUM=0; } -byte_element_struct *byte_element_3945=NULL; -if (!byte_element_3945){ -if ((mem_static_pointer+=12)tmp||_FUNC_FILETOBUF_STRING_FILESPEC->fixed||_FUNC_FILETOBUF_STRING_FILESPEC->readonly){ -oldstr3947=_FUNC_FILETOBUF_STRING_FILESPEC; -if (oldstr3947->cmem_descriptor){ -_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new_cmem(oldstr3947->len,0); +oldstr3949=_FUNC_FILETOBUF_STRING_FILESPEC; +if (oldstr3949->cmem_descriptor){ +_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new_cmem(oldstr3949->len,0); }else{ -_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new(oldstr3947->len,0); +_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new(oldstr3949->len,0); } -memcpy(_FUNC_FILETOBUF_STRING_FILESPEC->chr,oldstr3947->chr,oldstr3947->len); +memcpy(_FUNC_FILETOBUF_STRING_FILESPEC->chr,oldstr3949->chr,oldstr3949->len); } int16 *_FUNC_FILETOBUF_INTEGER_HAN=NULL; if(_FUNC_FILETOBUF_INTEGER_HAN==NULL){ diff --git a/internal/source/data155.txt b/internal/source/data155.txt index 4bd0c3476..18caf2d00 100644 --- a/internal/source/data155.txt +++ b/internal/source/data155.txt @@ -1,12 +1,12 @@ -qbs*oldstr3948=NULL; +qbs*oldstr3950=NULL; if(_SUB_BUFTOFILE_STRING_FILESPEC->tmp||_SUB_BUFTOFILE_STRING_FILESPEC->fixed||_SUB_BUFTOFILE_STRING_FILESPEC->readonly){ -oldstr3948=_SUB_BUFTOFILE_STRING_FILESPEC; -if (oldstr3948->cmem_descriptor){ -_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new_cmem(oldstr3948->len,0); +oldstr3950=_SUB_BUFTOFILE_STRING_FILESPEC; +if (oldstr3950->cmem_descriptor){ +_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new_cmem(oldstr3950->len,0); }else{ -_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new(oldstr3948->len,0); +_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new(oldstr3950->len,0); } -memcpy(_SUB_BUFTOFILE_STRING_FILESPEC->chr,oldstr3948->chr,oldstr3948->len); +memcpy(_SUB_BUFTOFILE_STRING_FILESPEC->chr,oldstr3950->chr,oldstr3950->len); } int32 *_SUB_BUFTOFILE_LONG_BUF=NULL; if(_SUB_BUFTOFILE_LONG_BUF==NULL){ @@ -20,7 +20,7 @@ _SUB_BUFTOFILE_INTEGER_FF=(int16*)mem_static_malloc(2); } qbs *_SUB_BUFTOFILE_STRING_DAT=NULL; if (!_SUB_BUFTOFILE_STRING_DAT)_SUB_BUFTOFILE_STRING_DAT=qbs_new(0,0); -byte_element_struct *byte_element_3949=NULL; -if (!byte_element_3949){ -if ((mem_static_pointer+=12)tmp||_SUB_WRITEBUFLINE_STRING_TEXT->fixed||_SUB_WRITEBUFLINE_STRING_TEXT->readonly){ -oldstr3951=_SUB_WRITEBUFLINE_STRING_TEXT; -if (oldstr3951->cmem_descriptor){ -_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new_cmem(oldstr3951->len,0); +oldstr3953=_SUB_WRITEBUFLINE_STRING_TEXT; +if (oldstr3953->cmem_descriptor){ +_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new_cmem(oldstr3953->len,0); }else{ -_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new(oldstr3951->len,0); +_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new(oldstr3953->len,0); } -memcpy(_SUB_WRITEBUFLINE_STRING_TEXT->chr,oldstr3951->chr,oldstr3951->len); +memcpy(_SUB_WRITEBUFLINE_STRING_TEXT->chr,oldstr3953->chr,oldstr3953->len); } int32 *_SUB_WRITEBUFLINE_LONG_BUF=NULL; if(_SUB_WRITEBUFLINE_LONG_BUF==NULL){ @@ -50,15 +50,15 @@ if(_SUB_WRITEBUFLINE_LONG_EXT==NULL){ _SUB_WRITEBUFLINE_LONG_EXT=(int32*)mem_static_malloc(4); *_SUB_WRITEBUFLINE_LONG_EXT=0; } -byte_element_struct *byte_element_3952=NULL; -if (!byte_element_3952){ -if ((mem_static_pointer+=12)tmp||_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->fixed||_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->readonly){ -oldstr3956=_SUB_WRITEBUFRAWDATA_STRING_RAWDATA; -if (oldstr3956->cmem_descriptor){ -_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new_cmem(oldstr3956->len,0); +oldstr3958=_SUB_WRITEBUFRAWDATA_STRING_RAWDATA; +if (oldstr3958->cmem_descriptor){ +_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new_cmem(oldstr3958->len,0); }else{ -_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new(oldstr3956->len,0); +_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new(oldstr3958->len,0); } -memcpy(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->chr,oldstr3956->chr,oldstr3956->len); +memcpy(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->chr,oldstr3958->chr,oldstr3958->len); } int32 *_SUB_WRITEBUFRAWDATA_LONG_BUF=NULL; if(_SUB_WRITEBUFRAWDATA_LONG_BUF==NULL){ @@ -38,11 +38,11 @@ if(_SUB_WRITEBUFRAWDATA_LONG_EXT==NULL){ _SUB_WRITEBUFRAWDATA_LONG_EXT=(int32*)mem_static_malloc(4); *_SUB_WRITEBUFRAWDATA_LONG_EXT=0; } -byte_element_struct *byte_element_3957=NULL; -if (!byte_element_3957){ -if ((mem_static_pointer+=12)tmp||_FUNC_DIM2_STRING_VARNAME->fixed||_FUNC_DIM2_STRING_VARNAME->readonly){ -oldstr2364=_FUNC_DIM2_STRING_VARNAME; -if (oldstr2364->cmem_descriptor){ -_FUNC_DIM2_STRING_VARNAME=qbs_new_cmem(oldstr2364->len,0); -}else{ -_FUNC_DIM2_STRING_VARNAME=qbs_new(oldstr2364->len,0); -} -memcpy(_FUNC_DIM2_STRING_VARNAME->chr,oldstr2364->chr,oldstr2364->len); -} -qbs*oldstr2365=NULL; -if(_FUNC_DIM2_STRING_TYP2->tmp||_FUNC_DIM2_STRING_TYP2->fixed||_FUNC_DIM2_STRING_TYP2->readonly){ -oldstr2365=_FUNC_DIM2_STRING_TYP2; -if (oldstr2365->cmem_descriptor){ -_FUNC_DIM2_STRING_TYP2=qbs_new_cmem(oldstr2365->len,0); -}else{ -_FUNC_DIM2_STRING_TYP2=qbs_new(oldstr2365->len,0); -} -memcpy(_FUNC_DIM2_STRING_TYP2->chr,oldstr2365->chr,oldstr2365->len); -} qbs*oldstr2366=NULL; -if(_FUNC_DIM2_STRING_ELEMENTS->tmp||_FUNC_DIM2_STRING_ELEMENTS->fixed||_FUNC_DIM2_STRING_ELEMENTS->readonly){ -oldstr2366=_FUNC_DIM2_STRING_ELEMENTS; +if(_FUNC_DIM2_STRING_VARNAME->tmp||_FUNC_DIM2_STRING_VARNAME->fixed||_FUNC_DIM2_STRING_VARNAME->readonly){ +oldstr2366=_FUNC_DIM2_STRING_VARNAME; if (oldstr2366->cmem_descriptor){ -_FUNC_DIM2_STRING_ELEMENTS=qbs_new_cmem(oldstr2366->len,0); +_FUNC_DIM2_STRING_VARNAME=qbs_new_cmem(oldstr2366->len,0); }else{ -_FUNC_DIM2_STRING_ELEMENTS=qbs_new(oldstr2366->len,0); +_FUNC_DIM2_STRING_VARNAME=qbs_new(oldstr2366->len,0); } -memcpy(_FUNC_DIM2_STRING_ELEMENTS->chr,oldstr2366->chr,oldstr2366->len); +memcpy(_FUNC_DIM2_STRING_VARNAME->chr,oldstr2366->chr,oldstr2366->len); +} +qbs*oldstr2367=NULL; +if(_FUNC_DIM2_STRING_TYP2->tmp||_FUNC_DIM2_STRING_TYP2->fixed||_FUNC_DIM2_STRING_TYP2->readonly){ +oldstr2367=_FUNC_DIM2_STRING_TYP2; +if (oldstr2367->cmem_descriptor){ +_FUNC_DIM2_STRING_TYP2=qbs_new_cmem(oldstr2367->len,0); +}else{ +_FUNC_DIM2_STRING_TYP2=qbs_new(oldstr2367->len,0); +} +memcpy(_FUNC_DIM2_STRING_TYP2->chr,oldstr2367->chr,oldstr2367->len); +} +qbs*oldstr2368=NULL; +if(_FUNC_DIM2_STRING_ELEMENTS->tmp||_FUNC_DIM2_STRING_ELEMENTS->fixed||_FUNC_DIM2_STRING_ELEMENTS->readonly){ +oldstr2368=_FUNC_DIM2_STRING_ELEMENTS; +if (oldstr2368->cmem_descriptor){ +_FUNC_DIM2_STRING_ELEMENTS=qbs_new_cmem(oldstr2368->len,0); +}else{ +_FUNC_DIM2_STRING_ELEMENTS=qbs_new(oldstr2368->len,0); +} +memcpy(_FUNC_DIM2_STRING_ELEMENTS->chr,oldstr2368->chr,oldstr2368->len); } qbs *_FUNC_DIM2_STRING_TYP=NULL; if (!_FUNC_DIM2_STRING_TYP)_FUNC_DIM2_STRING_TYP=qbs_new(0,0); @@ -46,19 +46,19 @@ _FUNC_DIM2_LONG_F=(int32*)mem_static_malloc(4); } qbs *_FUNC_DIM2_STRING_SCOPE2=NULL; if (!_FUNC_DIM2_STRING_SCOPE2)_FUNC_DIM2_STRING_SCOPE2=qbs_new(0,0); -byte_element_struct *byte_element_2368=NULL; -if (!byte_element_2368){ -if ((mem_static_pointer+=12)tmp||_FUNC_OPENBUFFER_STRING_SBMODE->fixed||_FUNC_OPENBUFFER_STRING_SBMODE->readonly){ -oldstr3963=_FUNC_OPENBUFFER_STRING_SBMODE; -if (oldstr3963->cmem_descriptor){ -_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new_cmem(oldstr3963->len,0); +oldstr3965=_FUNC_OPENBUFFER_STRING_SBMODE; +if (oldstr3965->cmem_descriptor){ +_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new_cmem(oldstr3965->len,0); }else{ -_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new(oldstr3963->len,0); +_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new(oldstr3965->len,0); } -memcpy(_FUNC_OPENBUFFER_STRING_SBMODE->chr,oldstr3963->chr,oldstr3963->len); +memcpy(_FUNC_OPENBUFFER_STRING_SBMODE->chr,oldstr3965->chr,oldstr3965->len); } -qbs*oldstr3964=NULL; +qbs*oldstr3966=NULL; if(_FUNC_OPENBUFFER_STRING_SBNAME->tmp||_FUNC_OPENBUFFER_STRING_SBNAME->fixed||_FUNC_OPENBUFFER_STRING_SBNAME->readonly){ -oldstr3964=_FUNC_OPENBUFFER_STRING_SBNAME; -if (oldstr3964->cmem_descriptor){ -_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new_cmem(oldstr3964->len,0); +oldstr3966=_FUNC_OPENBUFFER_STRING_SBNAME; +if (oldstr3966->cmem_descriptor){ +_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new_cmem(oldstr3966->len,0); }else{ -_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new(oldstr3964->len,0); +_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new(oldstr3966->len,0); } -memcpy(_FUNC_OPENBUFFER_STRING_SBNAME->chr,oldstr3964->chr,oldstr3964->len); +memcpy(_FUNC_OPENBUFFER_STRING_SBNAME->chr,oldstr3966->chr,oldstr3966->len); } int16 *_FUNC_OPENBUFFER_INTEGER_BUF=NULL; if(_FUNC_OPENBUFFER_INTEGER_BUF==NULL){ @@ -33,14 +33,14 @@ if(_FUNC_OPENBUFFER_LONG_NUL==NULL){ _FUNC_OPENBUFFER_LONG_NUL=(int32*)mem_static_malloc(4); *_FUNC_OPENBUFFER_LONG_NUL=0; } -int32 fornext_value3966; -int32 fornext_finalvalue3966; -int32 fornext_step3966; -uint8 fornext_step_negative3966; -static qbs *sc_3967=qbs_new(0,0); -int32 pass3968; -int16 pass3969; +int32 fornext_value3968; +int32 fornext_finalvalue3968; +int32 fornext_step3968; +uint8 fornext_step_negative3968; +static qbs *sc_3969=qbs_new(0,0); int32 pass3970; int16 pass3971; int32 pass3972; int16 pass3973; +int32 pass3974; +int16 pass3975; diff --git a/internal/source/data167.txt b/internal/source/data167.txt index 1d138fe0c..36c69c16b 100644 --- a/internal/source/data167.txt +++ b/internal/source/data167.txt @@ -1,23 +1,23 @@ -qbs*oldstr3974=NULL; +qbs*oldstr3976=NULL; if(_SUB_CLEARBUFFERS_STRING_SBNAME->tmp||_SUB_CLEARBUFFERS_STRING_SBNAME->fixed||_SUB_CLEARBUFFERS_STRING_SBNAME->readonly){ -oldstr3974=_SUB_CLEARBUFFERS_STRING_SBNAME; -if (oldstr3974->cmem_descriptor){ -_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr3974->len,0); +oldstr3976=_SUB_CLEARBUFFERS_STRING_SBNAME; +if (oldstr3976->cmem_descriptor){ +_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr3976->len,0); }else{ -_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new(oldstr3974->len,0); +_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new(oldstr3976->len,0); } -memcpy(_SUB_CLEARBUFFERS_STRING_SBNAME->chr,oldstr3974->chr,oldstr3974->len); +memcpy(_SUB_CLEARBUFFERS_STRING_SBNAME->chr,oldstr3976->chr,oldstr3976->len); } int16 *_SUB_CLEARBUFFERS_INTEGER_BUF=NULL; if(_SUB_CLEARBUFFERS_INTEGER_BUF==NULL){ _SUB_CLEARBUFFERS_INTEGER_BUF=(int16*)mem_static_malloc(2); *_SUB_CLEARBUFFERS_INTEGER_BUF=0; } -int32 fornext_value3976; -int32 fornext_finalvalue3976; -int32 fornext_step3976; -uint8 fornext_step_negative3976; int32 fornext_value3978; int32 fornext_finalvalue3978; int32 fornext_step3978; uint8 fornext_step_negative3978; +int32 fornext_value3980; +int32 fornext_finalvalue3980; +int32 fornext_step3980; +uint8 fornext_step_negative3980; diff --git a/internal/source/data168.txt b/internal/source/data168.txt index dc8b2062b..bb373571c 100644 --- a/internal/source/data168.txt +++ b/internal/source/data168.txt @@ -1,23 +1,23 @@ -qbs*oldstr3979=NULL; +qbs*oldstr3981=NULL; if(_SUB_WRITEBUFFERS_STRING_SBNAME->tmp||_SUB_WRITEBUFFERS_STRING_SBNAME->fixed||_SUB_WRITEBUFFERS_STRING_SBNAME->readonly){ -oldstr3979=_SUB_WRITEBUFFERS_STRING_SBNAME; -if (oldstr3979->cmem_descriptor){ -_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr3979->len,0); +oldstr3981=_SUB_WRITEBUFFERS_STRING_SBNAME; +if (oldstr3981->cmem_descriptor){ +_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr3981->len,0); }else{ -_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new(oldstr3979->len,0); +_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new(oldstr3981->len,0); } -memcpy(_SUB_WRITEBUFFERS_STRING_SBNAME->chr,oldstr3979->chr,oldstr3979->len); +memcpy(_SUB_WRITEBUFFERS_STRING_SBNAME->chr,oldstr3981->chr,oldstr3981->len); } int16 *_SUB_WRITEBUFFERS_INTEGER_BUF=NULL; if(_SUB_WRITEBUFFERS_INTEGER_BUF==NULL){ _SUB_WRITEBUFFERS_INTEGER_BUF=(int16*)mem_static_malloc(2); *_SUB_WRITEBUFFERS_INTEGER_BUF=0; } -int32 fornext_value3981; -int32 fornext_finalvalue3981; -int32 fornext_step3981; -uint8 fornext_step_negative3981; int32 fornext_value3983; int32 fornext_finalvalue3983; int32 fornext_step3983; uint8 fornext_step_negative3983; +int32 fornext_value3985; +int32 fornext_finalvalue3985; +int32 fornext_step3985; +uint8 fornext_step_negative3985; diff --git a/internal/source/data169.txt b/internal/source/data169.txt index d864546f6..fccf2ca2b 100644 --- a/internal/source/data169.txt +++ b/internal/source/data169.txt @@ -8,36 +8,36 @@ if(_FUNC_IDE_LONG_CMD==NULL){ _FUNC_IDE_LONG_CMD=(int32*)mem_static_malloc(4); *_FUNC_IDE_LONG_CMD=0; } -byte_element_struct *byte_element_3984=NULL; -if (!byte_element_3984){ -if ((mem_static_pointer+=12)tmp||_FUNC_UDTREFERENCE_STRING_O->fixed||_FUNC_UDTREFERENCE_STRING_O->readonly){ -oldstr2531=_FUNC_UDTREFERENCE_STRING_O; -if (oldstr2531->cmem_descriptor){ -_FUNC_UDTREFERENCE_STRING_O=qbs_new_cmem(oldstr2531->len,0); +oldstr2533=_FUNC_UDTREFERENCE_STRING_O; +if (oldstr2533->cmem_descriptor){ +_FUNC_UDTREFERENCE_STRING_O=qbs_new_cmem(oldstr2533->len,0); }else{ -_FUNC_UDTREFERENCE_STRING_O=qbs_new(oldstr2531->len,0); +_FUNC_UDTREFERENCE_STRING_O=qbs_new(oldstr2533->len,0); } -memcpy(_FUNC_UDTREFERENCE_STRING_O->chr,oldstr2531->chr,oldstr2531->len); +memcpy(_FUNC_UDTREFERENCE_STRING_O->chr,oldstr2533->chr,oldstr2533->len); } -qbs*oldstr2532=NULL; +qbs*oldstr2534=NULL; if(_FUNC_UDTREFERENCE_STRING_A->tmp||_FUNC_UDTREFERENCE_STRING_A->fixed||_FUNC_UDTREFERENCE_STRING_A->readonly){ -oldstr2532=_FUNC_UDTREFERENCE_STRING_A; -if (oldstr2532->cmem_descriptor){ -_FUNC_UDTREFERENCE_STRING_A=qbs_new_cmem(oldstr2532->len,0); +oldstr2534=_FUNC_UDTREFERENCE_STRING_A; +if (oldstr2534->cmem_descriptor){ +_FUNC_UDTREFERENCE_STRING_A=qbs_new_cmem(oldstr2534->len,0); }else{ -_FUNC_UDTREFERENCE_STRING_A=qbs_new(oldstr2532->len,0); +_FUNC_UDTREFERENCE_STRING_A=qbs_new(oldstr2534->len,0); } -memcpy(_FUNC_UDTREFERENCE_STRING_A->chr,oldstr2532->chr,oldstr2532->len); +memcpy(_FUNC_UDTREFERENCE_STRING_A->chr,oldstr2534->chr,oldstr2534->len); } qbs *_FUNC_UDTREFERENCE_STRING_OBAK=NULL; if (!_FUNC_UDTREFERENCE_STRING_OBAK)_FUNC_UDTREFERENCE_STRING_OBAK=qbs_new(0,0); @@ -53,9 +53,9 @@ qbs *_FUNC_UDTREFERENCE_STRING_N=NULL; if (!_FUNC_UDTREFERENCE_STRING_N)_FUNC_UDTREFERENCE_STRING_N=qbs_new(0,0); qbs *_FUNC_UDTREFERENCE_STRING_NSYM=NULL; if (!_FUNC_UDTREFERENCE_STRING_NSYM)_FUNC_UDTREFERENCE_STRING_NSYM=qbs_new(0,0); -byte_element_struct *byte_element_2533=NULL; -if (!byte_element_2533){ -if ((mem_static_pointer+=12)tmp||_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->fixed||_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->readonly){ -oldstr4978=_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE; -if (oldstr4978->cmem_descriptor){ -_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr4978->len,0); +oldstr4980=_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE; +if (oldstr4980->cmem_descriptor){ +_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr4980->len,0); }else{ -_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new(oldstr4978->len,0); +_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new(oldstr4980->len,0); } -memcpy(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->chr,oldstr4978->chr,oldstr4978->len); +memcpy(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->chr,oldstr4980->chr,oldstr4980->len); } int32 *_SUB_SHOWVWATCHPANEL_LONG_FG=NULL; if(_SUB_SHOWVWATCHPANEL_LONG_FG==NULL){ @@ -20,35 +20,35 @@ _SUB_SHOWVWATCHPANEL_LONG_BG=(int32*)mem_static_malloc(4); } qbs *_SUB_SHOWVWATCHPANEL_STRING_TITLE=NULL; if (!_SUB_SHOWVWATCHPANEL_STRING_TITLE)_SUB_SHOWVWATCHPANEL_STRING_TITLE=qbs_new(0,0); -byte_element_struct *byte_element_4979=NULL; -if (!byte_element_4979){ -if ((mem_static_pointer+=12)tmp||_FUNC_MULTISEARCH_STRING___FULLTEXT->fixed||_FUNC_MULTISEARCH_STRING___FULLTEXT->readonly){ -oldstr5025=_FUNC_MULTISEARCH_STRING___FULLTEXT; -if (oldstr5025->cmem_descriptor){ -_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new_cmem(oldstr5025->len,0); +oldstr5027=_FUNC_MULTISEARCH_STRING___FULLTEXT; +if (oldstr5027->cmem_descriptor){ +_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new_cmem(oldstr5027->len,0); }else{ -_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new(oldstr5025->len,0); +_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new(oldstr5027->len,0); } -memcpy(_FUNC_MULTISEARCH_STRING___FULLTEXT->chr,oldstr5025->chr,oldstr5025->len); +memcpy(_FUNC_MULTISEARCH_STRING___FULLTEXT->chr,oldstr5027->chr,oldstr5027->len); } -qbs*oldstr5026=NULL; +qbs*oldstr5028=NULL; if(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->tmp||_FUNC_MULTISEARCH_STRING___SEARCHSTRING->fixed||_FUNC_MULTISEARCH_STRING___SEARCHSTRING->readonly){ -oldstr5026=_FUNC_MULTISEARCH_STRING___SEARCHSTRING; -if (oldstr5026->cmem_descriptor){ -_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new_cmem(oldstr5026->len,0); +oldstr5028=_FUNC_MULTISEARCH_STRING___SEARCHSTRING; +if (oldstr5028->cmem_descriptor){ +_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new_cmem(oldstr5028->len,0); }else{ -_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new(oldstr5026->len,0); +_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new(oldstr5028->len,0); } -memcpy(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->chr,oldstr5026->chr,oldstr5026->len); +memcpy(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->chr,oldstr5028->chr,oldstr5028->len); } qbs *_FUNC_MULTISEARCH_STRING_FULLTEXT=NULL; if (!_FUNC_MULTISEARCH_STRING_FULLTEXT)_FUNC_MULTISEARCH_STRING_FULLTEXT=qbs_new(0,0); qbs *_FUNC_MULTISEARCH_STRING_SEARCHSTRING=NULL; if (!_FUNC_MULTISEARCH_STRING_SEARCHSTRING)_FUNC_MULTISEARCH_STRING_SEARCHSTRING=qbs_new(0,0); -byte_element_struct *byte_element_5027=NULL; -if (!byte_element_5027){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->fixed||_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->readonly){ -oldstr5031=_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE; -if (oldstr5031->cmem_descriptor){ -_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr5031->len,0); +oldstr5033=_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE; +if (oldstr5033->cmem_descriptor){ +_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr5033->len,0); }else{ -_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new(oldstr5031->len,0); +_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new(oldstr5033->len,0); } -memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->chr,oldstr5031->chr,oldstr5031->len); +memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->chr,oldstr5033->chr,oldstr5033->len); } -qbs*oldstr5032=NULL; +qbs*oldstr5034=NULL; if(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->tmp||_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->fixed||_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->readonly){ -oldstr5032=_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER; -if (oldstr5032->cmem_descriptor){ -_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new_cmem(oldstr5032->len,0); +oldstr5034=_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER; +if (oldstr5034->cmem_descriptor){ +_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new_cmem(oldstr5034->len,0); }else{ -_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new(oldstr5032->len,0); +_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new(oldstr5034->len,0); } -memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->chr,oldstr5032->chr,oldstr5032->len); +memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->chr,oldstr5034->chr,oldstr5034->len); } int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=NULL; if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS==NULL){ @@ -54,9 +54,9 @@ if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN==NULL){ _FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=(int32*)mem_static_malloc(4); *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=0; } -byte_element_struct *byte_element_5033=NULL; -if (!byte_element_5033){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->fixed||_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->readonly){ -oldstr5155=_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH; -if (oldstr5155->cmem_descriptor){ -_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new_cmem(oldstr5155->len,0); +oldstr5157=_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH; +if (oldstr5157->cmem_descriptor){ +_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new_cmem(oldstr5157->len,0); }else{ -_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new(oldstr5155->len,0); +_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new(oldstr5157->len,0); } -memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->chr,oldstr5155->chr,oldstr5155->len); +memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->chr,oldstr5157->chr,oldstr5157->len); } -qbs*oldstr5156=NULL; +qbs*oldstr5158=NULL; if(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->tmp||_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->fixed||_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->readonly){ -oldstr5156=_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES; -if (oldstr5156->cmem_descriptor){ -_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new_cmem(oldstr5156->len,0); +oldstr5158=_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES; +if (oldstr5158->cmem_descriptor){ +_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new_cmem(oldstr5158->len,0); }else{ -_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new(oldstr5156->len,0); +_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new(oldstr5158->len,0); } -memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->chr,oldstr5156->chr,oldstr5156->len); +memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->chr,oldstr5158->chr,oldstr5158->len); } int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=NULL; if(_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS==NULL){ @@ -67,9 +67,9 @@ if(_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS==NULL){ _FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=(int32*)mem_static_malloc(4); *_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=0; } -byte_element_struct *byte_element_5157=NULL; -if (!byte_element_5157){ -if ((mem_static_pointer+=12)tmp||_FUNC_FORMATRANGE_STRING___TEXT->fixed||_FUNC_FORMATRANGE_STRING___TEXT->readonly){ -oldstr5193=_FUNC_FORMATRANGE_STRING___TEXT; -if (oldstr5193->cmem_descriptor){ -_FUNC_FORMATRANGE_STRING___TEXT=qbs_new_cmem(oldstr5193->len,0); +oldstr5195=_FUNC_FORMATRANGE_STRING___TEXT; +if (oldstr5195->cmem_descriptor){ +_FUNC_FORMATRANGE_STRING___TEXT=qbs_new_cmem(oldstr5195->len,0); }else{ -_FUNC_FORMATRANGE_STRING___TEXT=qbs_new(oldstr5193->len,0); +_FUNC_FORMATRANGE_STRING___TEXT=qbs_new(oldstr5195->len,0); } -memcpy(_FUNC_FORMATRANGE_STRING___TEXT->chr,oldstr5193->chr,oldstr5193->len); +memcpy(_FUNC_FORMATRANGE_STRING___TEXT->chr,oldstr5195->chr,oldstr5195->len); } qbs *_FUNC_FORMATRANGE_STRING_TEMP=NULL; if (!_FUNC_FORMATRANGE_STRING_TEMP)_FUNC_FORMATRANGE_STRING_TEMP=qbs_new(0,0); @@ -27,13 +27,13 @@ if(_FUNC_FORMATRANGE_LONG_I==NULL){ _FUNC_FORMATRANGE_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_FORMATRANGE_LONG_I=0; } -int64 fornext_value5195; -int64 fornext_finalvalue5195; -int64 fornext_step5195; -uint8 fornext_step_negative5195; -byte_element_struct *byte_element_5196=NULL; -if (!byte_element_5196){ -if ((mem_static_pointer+=12)tmp||_FUNC_EXPANDARRAY_STRING___INDEXES->fixed||_FUNC_EXPANDARRAY_STRING___INDEXES->readonly){ -oldstr5197=_FUNC_EXPANDARRAY_STRING___INDEXES; -if (oldstr5197->cmem_descriptor){ -_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new_cmem(oldstr5197->len,0); +oldstr5199=_FUNC_EXPANDARRAY_STRING___INDEXES; +if (oldstr5199->cmem_descriptor){ +_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new_cmem(oldstr5199->len,0); }else{ -_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new(oldstr5197->len,0); +_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new(oldstr5199->len,0); } -memcpy(_FUNC_EXPANDARRAY_STRING___INDEXES->chr,oldstr5197->chr,oldstr5197->len); +memcpy(_FUNC_EXPANDARRAY_STRING___INDEXES->chr,oldstr5199->chr,oldstr5199->len); } -qbs*oldstr5198=NULL; +qbs*oldstr5200=NULL; if(_FUNC_EXPANDARRAY_STRING___PATH->tmp||_FUNC_EXPANDARRAY_STRING___PATH->fixed||_FUNC_EXPANDARRAY_STRING___PATH->readonly){ -oldstr5198=_FUNC_EXPANDARRAY_STRING___PATH; -if (oldstr5198->cmem_descriptor){ -_FUNC_EXPANDARRAY_STRING___PATH=qbs_new_cmem(oldstr5198->len,0); +oldstr5200=_FUNC_EXPANDARRAY_STRING___PATH; +if (oldstr5200->cmem_descriptor){ +_FUNC_EXPANDARRAY_STRING___PATH=qbs_new_cmem(oldstr5200->len,0); }else{ -_FUNC_EXPANDARRAY_STRING___PATH=qbs_new(oldstr5198->len,0); +_FUNC_EXPANDARRAY_STRING___PATH=qbs_new(oldstr5200->len,0); } -memcpy(_FUNC_EXPANDARRAY_STRING___PATH->chr,oldstr5198->chr,oldstr5198->len); +memcpy(_FUNC_EXPANDARRAY_STRING___PATH->chr,oldstr5200->chr,oldstr5200->len); } int32 *_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=NULL; if(_FUNC_EXPANDARRAY_LONG_TOTALINDEXES==NULL){ @@ -34,21 +34,21 @@ if(_FUNC_EXPANDARRAY_LONG_I==NULL){ _FUNC_EXPANDARRAY_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_EXPANDARRAY_LONG_I=0; } -int64 fornext_value5200; -int64 fornext_finalvalue5200; -int64 fornext_step5200; -uint8 fornext_step_negative5200; +int64 fornext_value5202; +int64 fornext_finalvalue5202; +int64 fornext_step5202; +uint8 fornext_step_negative5202; qbs *_FUNC_EXPANDARRAY_STRING_TEMP=NULL; if (!_FUNC_EXPANDARRAY_STRING_TEMP)_FUNC_EXPANDARRAY_STRING_TEMP=qbs_new(0,0); -byte_element_struct *byte_element_5201=NULL; -if (!byte_element_5201){ -if ((mem_static_pointer+=12)tmp||_FUNC_EVALUATE_STRING_A2->fixed||_FUNC_EVALUATE_STRING_A2->readonly){ -oldstr2535=_FUNC_EVALUATE_STRING_A2; -if (oldstr2535->cmem_descriptor){ -_FUNC_EVALUATE_STRING_A2=qbs_new_cmem(oldstr2535->len,0); +oldstr2537=_FUNC_EVALUATE_STRING_A2; +if (oldstr2537->cmem_descriptor){ +_FUNC_EVALUATE_STRING_A2=qbs_new_cmem(oldstr2537->len,0); }else{ -_FUNC_EVALUATE_STRING_A2=qbs_new(oldstr2535->len,0); +_FUNC_EVALUATE_STRING_A2=qbs_new(oldstr2537->len,0); } -memcpy(_FUNC_EVALUATE_STRING_A2->chr,oldstr2535->chr,oldstr2535->len); +memcpy(_FUNC_EVALUATE_STRING_A2->chr,oldstr2537->chr,oldstr2537->len); } ptrszint *_FUNC_EVALUATE_ARRAY_STRING_BLOCK=NULL; if (!_FUNC_EVALUATE_ARRAY_STRING_BLOCK){ @@ -68,15 +68,15 @@ if(_FUNC_EVALUATE_LONG_I==NULL){ _FUNC_EVALUATE_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_EVALUATE_LONG_I=0; } -int64 fornext_value2538; -int64 fornext_finalvalue2538; -int64 fornext_step2538; -uint8 fornext_step_negative2538; +int64 fornext_value2540; +int64 fornext_finalvalue2540; +int64 fornext_step2540; +uint8 fornext_step_negative2540; qbs *_FUNC_EVALUATE_STRING_L=NULL; if (!_FUNC_EVALUATE_STRING_L)_FUNC_EVALUATE_STRING_L=qbs_new(0,0); qbs *_FUNC_EVALUATE_STRING_NEXTL=NULL; if (!_FUNC_EVALUATE_STRING_NEXTL)_FUNC_EVALUATE_STRING_NEXTL=qbs_new(0,0); -int32 pass2540; +int32 pass2542; qbs *_FUNC_EVALUATE_STRING_L2=NULL; if (!_FUNC_EVALUATE_STRING_L2)_FUNC_EVALUATE_STRING_L2=qbs_new(0,0); int32 *_FUNC_EVALUATE_LONG_TRY_METHOD=NULL; @@ -84,15 +84,15 @@ if(_FUNC_EVALUATE_LONG_TRY_METHOD==NULL){ _FUNC_EVALUATE_LONG_TRY_METHOD=(int32*)mem_static_malloc(4); *_FUNC_EVALUATE_LONG_TRY_METHOD=0; } -int64 fornext_value2543; -int64 fornext_finalvalue2543; -int64 fornext_step2543; -uint8 fornext_step_negative2543; +int64 fornext_value2545; +int64 fornext_finalvalue2545; +int64 fornext_step2545; +uint8 fornext_step_negative2545; qbs *_FUNC_EVALUATE_STRING_DTYP=NULL; if (!_FUNC_EVALUATE_STRING_DTYP)_FUNC_EVALUATE_STRING_DTYP=qbs_new(0,0); -byte_element_struct *byte_element_2544=NULL; -if (!byte_element_2544){ -if ((mem_static_pointer+=12)tmp||_FUNC_PARSERANGE_STRING___TEXT->fixed||_FUNC_PARSERANGE_STRING___TEXT->readonly){ -oldstr5204=_FUNC_PARSERANGE_STRING___TEXT; -if (oldstr5204->cmem_descriptor){ -_FUNC_PARSERANGE_STRING___TEXT=qbs_new_cmem(oldstr5204->len,0); +oldstr5206=_FUNC_PARSERANGE_STRING___TEXT; +if (oldstr5206->cmem_descriptor){ +_FUNC_PARSERANGE_STRING___TEXT=qbs_new_cmem(oldstr5206->len,0); }else{ -_FUNC_PARSERANGE_STRING___TEXT=qbs_new(oldstr5204->len,0); +_FUNC_PARSERANGE_STRING___TEXT=qbs_new(oldstr5206->len,0); } -memcpy(_FUNC_PARSERANGE_STRING___TEXT->chr,oldstr5204->chr,oldstr5204->len); +memcpy(_FUNC_PARSERANGE_STRING___TEXT->chr,oldstr5206->chr,oldstr5206->len); } int8 *_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=NULL; if(_FUNC_PARSERANGE_BYTE_ZEROINCLUDED==NULL){ @@ -29,13 +29,13 @@ if(_FUNC_PARSERANGE_LONG_READING==NULL){ _FUNC_PARSERANGE_LONG_READING=(int32*)mem_static_malloc(4); *_FUNC_PARSERANGE_LONG_READING=0; } -int64 fornext_value5206; -int64 fornext_finalvalue5206; -int64 fornext_step5206; -uint8 fornext_step_negative5206; -byte_element_struct *byte_element_5207=NULL; -if (!byte_element_5207){ -if ((mem_static_pointer+=12)tmp||_SUB_FINDQUOTECOMMENT_STRING_TEXT->fixed||_SUB_FINDQUOTECOMMENT_STRING_TEXT->readonly){ -oldstr5276=_SUB_FINDQUOTECOMMENT_STRING_TEXT; -if (oldstr5276->cmem_descriptor){ -_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new_cmem(oldstr5276->len,0); +oldstr5278=_SUB_FINDQUOTECOMMENT_STRING_TEXT; +if (oldstr5278->cmem_descriptor){ +_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new_cmem(oldstr5278->len,0); }else{ -_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new(oldstr5276->len,0); +_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new(oldstr5278->len,0); } -memcpy(_SUB_FINDQUOTECOMMENT_STRING_TEXT->chr,oldstr5276->chr,oldstr5276->len); +memcpy(_SUB_FINDQUOTECOMMENT_STRING_TEXT->chr,oldstr5278->chr,oldstr5278->len); } int32 *_SUB_FINDQUOTECOMMENT_LONG_CURSOR=NULL; if(_SUB_FINDQUOTECOMMENT_LONG_CURSOR==NULL){ _SUB_FINDQUOTECOMMENT_LONG_CURSOR=(int32*)mem_static_malloc(4); *_SUB_FINDQUOTECOMMENT_LONG_CURSOR=0; } -byte_element_struct *byte_element_5277=NULL; -if (!byte_element_5277){ -if ((mem_static_pointer+=12)tmp||_FUNC_EVALUATEFUNC_STRING_A2->fixed||_FUNC_EVALUATEFUNC_STRING_A2->readonly){ -oldstr2601=_FUNC_EVALUATEFUNC_STRING_A2; -if (oldstr2601->cmem_descriptor){ -_FUNC_EVALUATEFUNC_STRING_A2=qbs_new_cmem(oldstr2601->len,0); +oldstr2603=_FUNC_EVALUATEFUNC_STRING_A2; +if (oldstr2603->cmem_descriptor){ +_FUNC_EVALUATEFUNC_STRING_A2=qbs_new_cmem(oldstr2603->len,0); }else{ -_FUNC_EVALUATEFUNC_STRING_A2=qbs_new(oldstr2601->len,0); +_FUNC_EVALUATEFUNC_STRING_A2=qbs_new(oldstr2603->len,0); } -memcpy(_FUNC_EVALUATEFUNC_STRING_A2->chr,oldstr2601->chr,oldstr2601->len); +memcpy(_FUNC_EVALUATEFUNC_STRING_A2->chr,oldstr2603->chr,oldstr2603->len); } qbs *_FUNC_EVALUATEFUNC_STRING_A=NULL; if (!_FUNC_EVALUATEFUNC_STRING_A)_FUNC_EVALUATEFUNC_STRING_A=qbs_new(0,0); @@ -25,8 +25,8 @@ if(_FUNC_EVALUATEFUNC_LONG_TARGETID==NULL){ _FUNC_EVALUATEFUNC_LONG_TARGETID=(int32*)mem_static_malloc(4); *_FUNC_EVALUATEFUNC_LONG_TARGETID=0; } -int16 pass2603; -int32 pass2604; +int16 pass2605; +int32 pass2606; int32 *_FUNC_EVALUATEFUNC_LONG_ARGCOUNT=NULL; if(_FUNC_EVALUATEFUNC_LONG_ARGCOUNT==NULL){ _FUNC_EVALUATEFUNC_LONG_ARGCOUNT=(int32*)mem_static_malloc(4); @@ -61,28 +61,28 @@ _FUNC_EVALUATEFUNC_LONG_FIRSTOPTIONALARGUMENT=(int32*)mem_static_malloc(4); } qbs *_FUNC_EVALUATEFUNC_STRING_F=NULL; if (!_FUNC_EVALUATEFUNC_STRING_F)_FUNC_EVALUATEFUNC_STRING_F=qbs_new(0,0); -byte_element_struct *byte_element_2605=NULL; -if (!byte_element_2605){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEFILEEXISTS_STRING_F->fixed||_FUNC_IDEFILEEXISTS_STRING_F->readonly){ -oldstr5345=_FUNC_IDEFILEEXISTS_STRING_F; -if (oldstr5345->cmem_descriptor){ -_FUNC_IDEFILEEXISTS_STRING_F=qbs_new_cmem(oldstr5345->len,0); +oldstr5347=_FUNC_IDEFILEEXISTS_STRING_F; +if (oldstr5347->cmem_descriptor){ +_FUNC_IDEFILEEXISTS_STRING_F=qbs_new_cmem(oldstr5347->len,0); }else{ -_FUNC_IDEFILEEXISTS_STRING_F=qbs_new(oldstr5345->len,0); +_FUNC_IDEFILEEXISTS_STRING_F=qbs_new(oldstr5347->len,0); } -memcpy(_FUNC_IDEFILEEXISTS_STRING_F->chr,oldstr5345->chr,oldstr5345->len); +memcpy(_FUNC_IDEFILEEXISTS_STRING_F->chr,oldstr5347->chr,oldstr5347->len); } int32 *_FUNC_IDEFILEEXISTS_LONG_L=NULL; if(_FUNC_IDEFILEEXISTS_LONG_L==NULL){ _FUNC_IDEFILEEXISTS_LONG_L=(int32*)mem_static_malloc(4); *_FUNC_IDEFILEEXISTS_LONG_L=0; } -byte_element_struct *byte_element_5346=NULL; -if (!byte_element_5346){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEHLEN_STRING_A->fixed||_FUNC_IDEHLEN_STRING_A->readonly){ -oldstr5394=_FUNC_IDEHLEN_STRING_A; -if (oldstr5394->cmem_descriptor){ -_FUNC_IDEHLEN_STRING_A=qbs_new_cmem(oldstr5394->len,0); +oldstr5396=_FUNC_IDEHLEN_STRING_A; +if (oldstr5396->cmem_descriptor){ +_FUNC_IDEHLEN_STRING_A=qbs_new_cmem(oldstr5396->len,0); }else{ -_FUNC_IDEHLEN_STRING_A=qbs_new(oldstr5394->len,0); +_FUNC_IDEHLEN_STRING_A=qbs_new(oldstr5396->len,0); } -memcpy(_FUNC_IDEHLEN_STRING_A->chr,oldstr5394->chr,oldstr5394->len); +memcpy(_FUNC_IDEHLEN_STRING_A->chr,oldstr5396->chr,oldstr5396->len); } -byte_element_struct *byte_element_5395=NULL; -if (!byte_element_5395){ -if ((mem_static_pointer+=12)tmp||_FUNC_INVALIDSETTINGERROR_STRING_TOKEN->fixed||_FUNC_INVALIDSETTINGERROR_STRING_TOKEN->readonly){ -oldstr2188=_FUNC_INVALIDSETTINGERROR_STRING_TOKEN; -if (oldstr2188->cmem_descriptor){ -_FUNC_INVALIDSETTINGERROR_STRING_TOKEN=qbs_new_cmem(oldstr2188->len,0); +oldstr2190=_FUNC_INVALIDSETTINGERROR_STRING_TOKEN; +if (oldstr2190->cmem_descriptor){ +_FUNC_INVALIDSETTINGERROR_STRING_TOKEN=qbs_new_cmem(oldstr2190->len,0); }else{ -_FUNC_INVALIDSETTINGERROR_STRING_TOKEN=qbs_new(oldstr2188->len,0); +_FUNC_INVALIDSETTINGERROR_STRING_TOKEN=qbs_new(oldstr2190->len,0); } -memcpy(_FUNC_INVALIDSETTINGERROR_STRING_TOKEN->chr,oldstr2188->chr,oldstr2188->len); +memcpy(_FUNC_INVALIDSETTINGERROR_STRING_TOKEN->chr,oldstr2190->chr,oldstr2190->len); } diff --git a/internal/source/data20.txt b/internal/source/data20.txt index 84a8fdd44..fb4257d6c 100644 --- a/internal/source/data20.txt +++ b/internal/source/data20.txt @@ -29,8 +29,8 @@ if(_FUNC_VARIABLESIZE_LONG_I2==NULL){ _FUNC_VARIABLESIZE_LONG_I2=(int32*)mem_static_malloc(4); *_FUNC_VARIABLESIZE_LONG_I2=0; } -int64 fornext_value2697; -int64 fornext_finalvalue2697; -int64 fornext_step2697; -uint8 fornext_step_negative2697; -int32 pass2698; +int64 fornext_value2699; +int64 fornext_finalvalue2699; +int64 fornext_step2699; +uint8 fornext_step_negative2699; +int32 pass2700; diff --git a/internal/source/data200.txt b/internal/source/data200.txt index 77536fa66..b10048aae 100644 --- a/internal/source/data200.txt +++ b/internal/source/data200.txt @@ -1,25 +1,25 @@ -qbs*oldstr5397=NULL; +qbs*oldstr5399=NULL; if(_SUB_IDEHPRINT_STRING_A->tmp||_SUB_IDEHPRINT_STRING_A->fixed||_SUB_IDEHPRINT_STRING_A->readonly){ -oldstr5397=_SUB_IDEHPRINT_STRING_A; -if (oldstr5397->cmem_descriptor){ -_SUB_IDEHPRINT_STRING_A=qbs_new_cmem(oldstr5397->len,0); +oldstr5399=_SUB_IDEHPRINT_STRING_A; +if (oldstr5399->cmem_descriptor){ +_SUB_IDEHPRINT_STRING_A=qbs_new_cmem(oldstr5399->len,0); }else{ -_SUB_IDEHPRINT_STRING_A=qbs_new(oldstr5397->len,0); +_SUB_IDEHPRINT_STRING_A=qbs_new(oldstr5399->len,0); } -memcpy(_SUB_IDEHPRINT_STRING_A->chr,oldstr5397->chr,oldstr5397->len); +memcpy(_SUB_IDEHPRINT_STRING_A->chr,oldstr5399->chr,oldstr5399->len); } int32 *_SUB_IDEHPRINT_LONG_I=NULL; if(_SUB_IDEHPRINT_LONG_I==NULL){ _SUB_IDEHPRINT_LONG_I=(int32*)mem_static_malloc(4); *_SUB_IDEHPRINT_LONG_I=0; } -int64 fornext_value5399; -int64 fornext_finalvalue5399; -int64 fornext_step5399; -uint8 fornext_step_negative5399; -byte_element_struct *byte_element_5400=NULL; -if (!byte_element_5400){ -if ((mem_static_pointer+=12)tmp||_SUB_IDEINSLINE_STRING_TEXT->fixed||_SUB_IDEINSLINE_STRING_TEXT->readonly){ -oldstr5402=_SUB_IDEINSLINE_STRING_TEXT; -if (oldstr5402->cmem_descriptor){ -_SUB_IDEINSLINE_STRING_TEXT=qbs_new_cmem(oldstr5402->len,0); +oldstr5404=_SUB_IDEINSLINE_STRING_TEXT; +if (oldstr5404->cmem_descriptor){ +_SUB_IDEINSLINE_STRING_TEXT=qbs_new_cmem(oldstr5404->len,0); }else{ -_SUB_IDEINSLINE_STRING_TEXT=qbs_new(oldstr5402->len,0); +_SUB_IDEINSLINE_STRING_TEXT=qbs_new(oldstr5404->len,0); } -memcpy(_SUB_IDEINSLINE_STRING_TEXT->chr,oldstr5402->chr,oldstr5402->len); +memcpy(_SUB_IDEINSLINE_STRING_TEXT->chr,oldstr5404->chr,oldstr5404->len); } int32 *_SUB_IDEINSLINE_LONG_B=NULL; if(_SUB_IDEINSLINE_LONG_B==NULL){ _SUB_IDEINSLINE_LONG_B=(int32*)mem_static_malloc(4); *_SUB_IDEINSLINE_LONG_B=0; } -int64 fornext_value5404; -int64 fornext_finalvalue5404; -int64 fornext_step5404; -uint8 fornext_step_negative5404; +int64 fornext_value5406; +int64 fornext_finalvalue5406; +int64 fornext_step5406; +uint8 fornext_step_negative5406; int32 *_SUB_IDEINSLINE_LONG_Y=NULL; if(_SUB_IDEINSLINE_LONG_Y==NULL){ _SUB_IDEINSLINE_LONG_Y=(int32*)mem_static_malloc(4); *_SUB_IDEINSLINE_LONG_Y=0; } -int64 fornext_value5406; -int64 fornext_finalvalue5406; -int64 fornext_step5406; -uint8 fornext_step_negative5406; int64 fornext_value5408; int64 fornext_finalvalue5408; int64 fornext_step5408; uint8 fornext_step_negative5408; +int64 fornext_value5410; +int64 fornext_finalvalue5410; +int64 fornext_step5410; +uint8 fornext_step_negative5410; int32 *_SUB_IDEINSLINE_LONG_TEXTLEN=NULL; if(_SUB_IDEINSLINE_LONG_TEXTLEN==NULL){ _SUB_IDEINSLINE_LONG_TEXTLEN=(int32*)mem_static_malloc(4); *_SUB_IDEINSLINE_LONG_TEXTLEN=0; } -byte_element_struct *byte_element_5409=NULL; -if (!byte_element_5409){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEINPUTBOX_STRING_TITLE->fixed||_FUNC_IDEINPUTBOX_STRING_TITLE->readonly){ -oldstr5411=_FUNC_IDEINPUTBOX_STRING_TITLE; -if (oldstr5411->cmem_descriptor){ -_FUNC_IDEINPUTBOX_STRING_TITLE=qbs_new_cmem(oldstr5411->len,0); -}else{ -_FUNC_IDEINPUTBOX_STRING_TITLE=qbs_new(oldstr5411->len,0); -} -memcpy(_FUNC_IDEINPUTBOX_STRING_TITLE->chr,oldstr5411->chr,oldstr5411->len); -} -qbs*oldstr5412=NULL; -if(_FUNC_IDEINPUTBOX_STRING_CAPTION->tmp||_FUNC_IDEINPUTBOX_STRING_CAPTION->fixed||_FUNC_IDEINPUTBOX_STRING_CAPTION->readonly){ -oldstr5412=_FUNC_IDEINPUTBOX_STRING_CAPTION; -if (oldstr5412->cmem_descriptor){ -_FUNC_IDEINPUTBOX_STRING_CAPTION=qbs_new_cmem(oldstr5412->len,0); -}else{ -_FUNC_IDEINPUTBOX_STRING_CAPTION=qbs_new(oldstr5412->len,0); -} -memcpy(_FUNC_IDEINPUTBOX_STRING_CAPTION->chr,oldstr5412->chr,oldstr5412->len); -} qbs*oldstr5413=NULL; -if(_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->tmp||_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->fixed||_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->readonly){ -oldstr5413=_FUNC_IDEINPUTBOX_STRING_INITIALVALUE; +if(_FUNC_IDEINPUTBOX_STRING_TITLE->tmp||_FUNC_IDEINPUTBOX_STRING_TITLE->fixed||_FUNC_IDEINPUTBOX_STRING_TITLE->readonly){ +oldstr5413=_FUNC_IDEINPUTBOX_STRING_TITLE; if (oldstr5413->cmem_descriptor){ -_FUNC_IDEINPUTBOX_STRING_INITIALVALUE=qbs_new_cmem(oldstr5413->len,0); +_FUNC_IDEINPUTBOX_STRING_TITLE=qbs_new_cmem(oldstr5413->len,0); }else{ -_FUNC_IDEINPUTBOX_STRING_INITIALVALUE=qbs_new(oldstr5413->len,0); +_FUNC_IDEINPUTBOX_STRING_TITLE=qbs_new(oldstr5413->len,0); } -memcpy(_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->chr,oldstr5413->chr,oldstr5413->len); +memcpy(_FUNC_IDEINPUTBOX_STRING_TITLE->chr,oldstr5413->chr,oldstr5413->len); } qbs*oldstr5414=NULL; -if(_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->tmp||_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->fixed||_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->readonly){ -oldstr5414=_FUNC_IDEINPUTBOX_STRING_VALIDINPUT; +if(_FUNC_IDEINPUTBOX_STRING_CAPTION->tmp||_FUNC_IDEINPUTBOX_STRING_CAPTION->fixed||_FUNC_IDEINPUTBOX_STRING_CAPTION->readonly){ +oldstr5414=_FUNC_IDEINPUTBOX_STRING_CAPTION; if (oldstr5414->cmem_descriptor){ -_FUNC_IDEINPUTBOX_STRING_VALIDINPUT=qbs_new_cmem(oldstr5414->len,0); +_FUNC_IDEINPUTBOX_STRING_CAPTION=qbs_new_cmem(oldstr5414->len,0); }else{ -_FUNC_IDEINPUTBOX_STRING_VALIDINPUT=qbs_new(oldstr5414->len,0); +_FUNC_IDEINPUTBOX_STRING_CAPTION=qbs_new(oldstr5414->len,0); } -memcpy(_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->chr,oldstr5414->chr,oldstr5414->len); +memcpy(_FUNC_IDEINPUTBOX_STRING_CAPTION->chr,oldstr5414->chr,oldstr5414->len); +} +qbs*oldstr5415=NULL; +if(_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->tmp||_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->fixed||_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->readonly){ +oldstr5415=_FUNC_IDEINPUTBOX_STRING_INITIALVALUE; +if (oldstr5415->cmem_descriptor){ +_FUNC_IDEINPUTBOX_STRING_INITIALVALUE=qbs_new_cmem(oldstr5415->len,0); +}else{ +_FUNC_IDEINPUTBOX_STRING_INITIALVALUE=qbs_new(oldstr5415->len,0); +} +memcpy(_FUNC_IDEINPUTBOX_STRING_INITIALVALUE->chr,oldstr5415->chr,oldstr5415->len); +} +qbs*oldstr5416=NULL; +if(_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->tmp||_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->fixed||_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->readonly){ +oldstr5416=_FUNC_IDEINPUTBOX_STRING_VALIDINPUT; +if (oldstr5416->cmem_descriptor){ +_FUNC_IDEINPUTBOX_STRING_VALIDINPUT=qbs_new_cmem(oldstr5416->len,0); +}else{ +_FUNC_IDEINPUTBOX_STRING_VALIDINPUT=qbs_new(oldstr5416->len,0); +} +memcpy(_FUNC_IDEINPUTBOX_STRING_VALIDINPUT->chr,oldstr5416->chr,oldstr5416->len); } int32 *_FUNC_IDEINPUTBOX_LONG_FOCUS=NULL; if(_FUNC_IDEINPUTBOX_LONG_FOCUS==NULL){ @@ -72,24 +72,24 @@ if(_FUNC_IDEINPUTBOX_LONG_I==NULL){ _FUNC_IDEINPUTBOX_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_IDEINPUTBOX_LONG_I=0; } -int32 pass5415; +int32 pass5417; int32 *_FUNC_IDEINPUTBOX_LONG_PREVFOCUS=NULL; if(_FUNC_IDEINPUTBOX_LONG_PREVFOCUS==NULL){ _FUNC_IDEINPUTBOX_LONG_PREVFOCUS=(int32*)mem_static_malloc(4); *_FUNC_IDEINPUTBOX_LONG_PREVFOCUS=0; } -byte_element_struct *byte_element_5416=NULL; -if (!byte_element_5416){ -if ((mem_static_pointer+=12)tmp||_SUB_IDENEWSF_STRING_SF->fixed||_SUB_IDENEWSF_STRING_SF->readonly){ -oldstr5432=_SUB_IDENEWSF_STRING_SF; -if (oldstr5432->cmem_descriptor){ -_SUB_IDENEWSF_STRING_SF=qbs_new_cmem(oldstr5432->len,0); +oldstr5434=_SUB_IDENEWSF_STRING_SF; +if (oldstr5434->cmem_descriptor){ +_SUB_IDENEWSF_STRING_SF=qbs_new_cmem(oldstr5434->len,0); }else{ -_SUB_IDENEWSF_STRING_SF=qbs_new(oldstr5432->len,0); +_SUB_IDENEWSF_STRING_SF=qbs_new(oldstr5434->len,0); } -memcpy(_SUB_IDENEWSF_STRING_SF->chr,oldstr5432->chr,oldstr5432->len); +memcpy(_SUB_IDENEWSF_STRING_SF->chr,oldstr5434->chr,oldstr5434->len); } qbs *_SUB_IDENEWSF_STRING_A=NULL; if (!_SUB_IDENEWSF_STRING_A)_SUB_IDENEWSF_STRING_A=qbs_new(0,0); @@ -27,22 +27,22 @@ if(_SUB_IDENEWSF_LONG_X==NULL){ _SUB_IDENEWSF_LONG_X=(int32*)mem_static_malloc(4); *_SUB_IDENEWSF_LONG_X=0; } -int64 fornext_value5434; -int64 fornext_finalvalue5434; -int64 fornext_step5434; -uint8 fornext_step_negative5434; -byte_element_struct *byte_element_5435=NULL; -if (!byte_element_5435){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDENEWFOLDER_STRING_THISPATH->fixed||_FUNC_IDENEWFOLDER_STRING_THISPATH->readonly){ -oldstr5440=_FUNC_IDENEWFOLDER_STRING_THISPATH; -if (oldstr5440->cmem_descriptor){ -_FUNC_IDENEWFOLDER_STRING_THISPATH=qbs_new_cmem(oldstr5440->len,0); +oldstr5442=_FUNC_IDENEWFOLDER_STRING_THISPATH; +if (oldstr5442->cmem_descriptor){ +_FUNC_IDENEWFOLDER_STRING_THISPATH=qbs_new_cmem(oldstr5442->len,0); }else{ -_FUNC_IDENEWFOLDER_STRING_THISPATH=qbs_new(oldstr5440->len,0); +_FUNC_IDENEWFOLDER_STRING_THISPATH=qbs_new(oldstr5442->len,0); } -memcpy(_FUNC_IDENEWFOLDER_STRING_THISPATH->chr,oldstr5440->chr,oldstr5440->len); +memcpy(_FUNC_IDENEWFOLDER_STRING_THISPATH->chr,oldstr5442->chr,oldstr5442->len); } qbs *_FUNC_IDENEWFOLDER_STRING_NEWFOLDER=NULL; if (!_FUNC_IDENEWFOLDER_STRING_NEWFOLDER)_FUNC_IDENEWFOLDER_STRING_NEWFOLDER=qbs_new(0,0); -int32 pass5441; -int32 pass5442; int32 pass5443; -byte_element_struct *byte_element_5444=NULL; -if (!byte_element_5444){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDENEWTXT_STRING_A->fixed||_FUNC_IDENEWTXT_STRING_A->readonly){ -oldstr5445=_FUNC_IDENEWTXT_STRING_A; -if (oldstr5445->cmem_descriptor){ -_FUNC_IDENEWTXT_STRING_A=qbs_new_cmem(oldstr5445->len,0); +oldstr5447=_FUNC_IDENEWTXT_STRING_A; +if (oldstr5447->cmem_descriptor){ +_FUNC_IDENEWTXT_STRING_A=qbs_new_cmem(oldstr5447->len,0); }else{ -_FUNC_IDENEWTXT_STRING_A=qbs_new(oldstr5445->len,0); +_FUNC_IDENEWTXT_STRING_A=qbs_new(oldstr5447->len,0); } -memcpy(_FUNC_IDENEWTXT_STRING_A->chr,oldstr5445->chr,oldstr5445->len); +memcpy(_FUNC_IDENEWTXT_STRING_A->chr,oldstr5447->chr,oldstr5447->len); } diff --git a/internal/source/data207.txt b/internal/source/data207.txt index 51665eea5..efbe4051f 100644 --- a/internal/source/data207.txt +++ b/internal/source/data207.txt @@ -1,14 +1,14 @@ qbs *_FUNC_IDEFILEDIALOG_STRING_IDEFILEDIALOG=NULL; if (!_FUNC_IDEFILEDIALOG_STRING_IDEFILEDIALOG)_FUNC_IDEFILEDIALOG_STRING_IDEFILEDIALOG=qbs_new(0,0); -qbs*oldstr5446=NULL; +qbs*oldstr5448=NULL; if(_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME->tmp||_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME->fixed||_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME->readonly){ -oldstr5446=_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME; -if (oldstr5446->cmem_descriptor){ -_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME=qbs_new_cmem(oldstr5446->len,0); +oldstr5448=_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME; +if (oldstr5448->cmem_descriptor){ +_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME=qbs_new_cmem(oldstr5448->len,0); }else{ -_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME=qbs_new(oldstr5446->len,0); +_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME=qbs_new(oldstr5448->len,0); } -memcpy(_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME->chr,oldstr5446->chr,oldstr5446->len); +memcpy(_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME->chr,oldstr5448->chr,oldstr5448->len); } int32 *_FUNC_IDEFILEDIALOG_LONG_FOCUS=NULL; if(_FUNC_IDEFILEDIALOG_LONG_FOCUS==NULL){ @@ -48,31 +48,31 @@ if(_FUNC_IDEFILEDIALOG_LONG_I==NULL){ _FUNC_IDEFILEDIALOG_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_IDEFILEDIALOG_LONG_I=0; } -int32 pass5447; -int32 pass5448; int32 pass5449; int32 pass5450; +int32 pass5451; +int32 pass5452; int32 *_FUNC_IDEFILEDIALOG_LONG_PREVFOCUS=NULL; if(_FUNC_IDEFILEDIALOG_LONG_PREVFOCUS==NULL){ _FUNC_IDEFILEDIALOG_LONG_PREVFOCUS=(int32*)mem_static_malloc(4); *_FUNC_IDEFILEDIALOG_LONG_PREVFOCUS=0; } -byte_element_struct *byte_element_5451=NULL; -if (!byte_element_5451){ -if ((mem_static_pointer+=12)tmp||_SUB_IDEPAR_STRING_TITLE->fixed||_SUB_IDEPAR_STRING_TITLE->readonly){ -oldstr5474=_SUB_IDEPAR_STRING_TITLE; -if (oldstr5474->cmem_descriptor){ -_SUB_IDEPAR_STRING_TITLE=qbs_new_cmem(oldstr5474->len,0); +oldstr5476=_SUB_IDEPAR_STRING_TITLE; +if (oldstr5476->cmem_descriptor){ +_SUB_IDEPAR_STRING_TITLE=qbs_new_cmem(oldstr5476->len,0); }else{ -_SUB_IDEPAR_STRING_TITLE=qbs_new(oldstr5474->len,0); +_SUB_IDEPAR_STRING_TITLE=qbs_new(oldstr5476->len,0); } -memcpy(_SUB_IDEPAR_STRING_TITLE->chr,oldstr5474->chr,oldstr5474->len); +memcpy(_SUB_IDEPAR_STRING_TITLE->chr,oldstr5476->chr,oldstr5476->len); } -byte_element_struct *byte_element_5475=NULL; -if (!byte_element_5475){ -if ((mem_static_pointer+=12)tmp||_FUNC_EVALUATETOTYP_STRING_A2->fixed||_FUNC_EVALUATETOTYP_STRING_A2->readonly){ -oldstr2699=_FUNC_EVALUATETOTYP_STRING_A2; -if (oldstr2699->cmem_descriptor){ -_FUNC_EVALUATETOTYP_STRING_A2=qbs_new_cmem(oldstr2699->len,0); +oldstr2701=_FUNC_EVALUATETOTYP_STRING_A2; +if (oldstr2701->cmem_descriptor){ +_FUNC_EVALUATETOTYP_STRING_A2=qbs_new_cmem(oldstr2701->len,0); }else{ -_FUNC_EVALUATETOTYP_STRING_A2=qbs_new(oldstr2699->len,0); +_FUNC_EVALUATETOTYP_STRING_A2=qbs_new(oldstr2701->len,0); } -memcpy(_FUNC_EVALUATETOTYP_STRING_A2->chr,oldstr2699->chr,oldstr2699->len); +memcpy(_FUNC_EVALUATETOTYP_STRING_A2->chr,oldstr2701->chr,oldstr2701->len); } qbs *_FUNC_EVALUATETOTYP_STRING_A=NULL; if (!_FUNC_EVALUATETOTYP_STRING_A)_FUNC_EVALUATETOTYP_STRING_A=qbs_new(0,0); @@ -29,22 +29,22 @@ if(_FUNC_EVALUATETOTYP_LONG_I==NULL){ _FUNC_EVALUATETOTYP_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_EVALUATETOTYP_LONG_I=0; } -byte_element_struct *byte_element_2700=NULL; -if (!byte_element_2700){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY->fixed||_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY->readonly){ -oldstr5476=_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY; -if (oldstr5476->cmem_descriptor){ -_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY=qbs_new_cmem(oldstr5476->len,0); +oldstr5478=_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY; +if (oldstr5478->cmem_descriptor){ +_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY=qbs_new_cmem(oldstr5478->len,0); }else{ -_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY=qbs_new(oldstr5476->len,0); +_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY=qbs_new(oldstr5478->len,0); } -memcpy(_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY->chr,oldstr5476->chr,oldstr5476->len); +memcpy(_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY->chr,oldstr5478->chr,oldstr5478->len); } qbs *_FUNC_IDECLEARHISTORY_STRING_T=NULL; if (!_FUNC_IDECLEARHISTORY_STRING_T)_FUNC_IDECLEARHISTORY_STRING_T=qbs_new(0,0); diff --git a/internal/source/data211.txt b/internal/source/data211.txt index 932fd4cf5..bcce2608a 100644 --- a/internal/source/data211.txt +++ b/internal/source/data211.txt @@ -1,21 +1,21 @@ -qbs*oldstr5478=NULL; +qbs*oldstr5480=NULL; if(_SUB_IDESAVE_STRING_F->tmp||_SUB_IDESAVE_STRING_F->fixed||_SUB_IDESAVE_STRING_F->readonly){ -oldstr5478=_SUB_IDESAVE_STRING_F; -if (oldstr5478->cmem_descriptor){ -_SUB_IDESAVE_STRING_F=qbs_new_cmem(oldstr5478->len,0); +oldstr5480=_SUB_IDESAVE_STRING_F; +if (oldstr5480->cmem_descriptor){ +_SUB_IDESAVE_STRING_F=qbs_new_cmem(oldstr5480->len,0); }else{ -_SUB_IDESAVE_STRING_F=qbs_new(oldstr5478->len,0); +_SUB_IDESAVE_STRING_F=qbs_new(oldstr5480->len,0); } -memcpy(_SUB_IDESAVE_STRING_F->chr,oldstr5478->chr,oldstr5478->len); +memcpy(_SUB_IDESAVE_STRING_F->chr,oldstr5480->chr,oldstr5480->len); } int32 *_SUB_IDESAVE_LONG_I=NULL; if(_SUB_IDESAVE_LONG_I==NULL){ _SUB_IDESAVE_LONG_I=(int32*)mem_static_malloc(4); *_SUB_IDESAVE_LONG_I=0; } -int64 fornext_value5480; -int64 fornext_finalvalue5480; -int64 fornext_step5480; -uint8 fornext_step_negative5480; +int64 fornext_value5482; +int64 fornext_finalvalue5482; +int64 fornext_step5482; +uint8 fornext_step_negative5482; qbs *_SUB_IDESAVE_STRING_A=NULL; if (!_SUB_IDESAVE_STRING_A)_SUB_IDESAVE_STRING_A=qbs_new(0,0); diff --git a/internal/source/data213.txt b/internal/source/data213.txt index a75578083..bfd9ca264 100644 --- a/internal/source/data213.txt +++ b/internal/source/data213.txt @@ -1,23 +1,23 @@ -qbs*oldstr5483=NULL; +qbs*oldstr5485=NULL; if(_SUB_IDESETLINE_STRING_TEXT->tmp||_SUB_IDESETLINE_STRING_TEXT->fixed||_SUB_IDESETLINE_STRING_TEXT->readonly){ -oldstr5483=_SUB_IDESETLINE_STRING_TEXT; -if (oldstr5483->cmem_descriptor){ -_SUB_IDESETLINE_STRING_TEXT=qbs_new_cmem(oldstr5483->len,0); +oldstr5485=_SUB_IDESETLINE_STRING_TEXT; +if (oldstr5485->cmem_descriptor){ +_SUB_IDESETLINE_STRING_TEXT=qbs_new_cmem(oldstr5485->len,0); }else{ -_SUB_IDESETLINE_STRING_TEXT=qbs_new(oldstr5483->len,0); +_SUB_IDESETLINE_STRING_TEXT=qbs_new(oldstr5485->len,0); } -memcpy(_SUB_IDESETLINE_STRING_TEXT->chr,oldstr5483->chr,oldstr5483->len); +memcpy(_SUB_IDESETLINE_STRING_TEXT->chr,oldstr5485->chr,oldstr5485->len); } int32 *_SUB_IDESETLINE_LONG_TEXTLEN=NULL; if(_SUB_IDESETLINE_LONG_TEXTLEN==NULL){ _SUB_IDESETLINE_LONG_TEXTLEN=(int32*)mem_static_malloc(4); *_SUB_IDESETLINE_LONG_TEXTLEN=0; } -byte_element_struct *byte_element_5484=NULL; -if (!byte_element_5484){ -if ((mem_static_pointer+=12)chr,0,1); } qbs *_FUNC_IDESUBS_STRING_A2=NULL; if (!_FUNC_IDESUBS_STRING_A2)_FUNC_IDESUBS_STRING_A2=qbs_new(0,0); -byte_element_struct *byte_element_5589=NULL; -if (!byte_element_5589){ -if ((mem_static_pointer+=12)chr,0,1); } -byte_element_struct *byte_element_5666=NULL; -if (!byte_element_5666){ -if ((mem_static_pointer+=12)tmp||_SUB_IDEOBJUPDATE_STRING_KK->fixed||_SUB_IDEOBJUPDATE_STRING_KK->readonly){ -oldstr5687=_SUB_IDEOBJUPDATE_STRING_KK; -if (oldstr5687->cmem_descriptor){ -_SUB_IDEOBJUPDATE_STRING_KK=qbs_new_cmem(oldstr5687->len,0); +oldstr5689=_SUB_IDEOBJUPDATE_STRING_KK; +if (oldstr5689->cmem_descriptor){ +_SUB_IDEOBJUPDATE_STRING_KK=qbs_new_cmem(oldstr5689->len,0); }else{ -_SUB_IDEOBJUPDATE_STRING_KK=qbs_new(oldstr5687->len,0); +_SUB_IDEOBJUPDATE_STRING_KK=qbs_new(oldstr5689->len,0); } -memcpy(_SUB_IDEOBJUPDATE_STRING_KK->chr,oldstr5687->chr,oldstr5687->len); +memcpy(_SUB_IDEOBJUPDATE_STRING_KK->chr,oldstr5689->chr,oldstr5689->len); } -qbs*oldstr5688=NULL; +qbs*oldstr5690=NULL; if(_SUB_IDEOBJUPDATE_STRING_ALTLETTER->tmp||_SUB_IDEOBJUPDATE_STRING_ALTLETTER->fixed||_SUB_IDEOBJUPDATE_STRING_ALTLETTER->readonly){ -oldstr5688=_SUB_IDEOBJUPDATE_STRING_ALTLETTER; -if (oldstr5688->cmem_descriptor){ -_SUB_IDEOBJUPDATE_STRING_ALTLETTER=qbs_new_cmem(oldstr5688->len,0); +oldstr5690=_SUB_IDEOBJUPDATE_STRING_ALTLETTER; +if (oldstr5690->cmem_descriptor){ +_SUB_IDEOBJUPDATE_STRING_ALTLETTER=qbs_new_cmem(oldstr5690->len,0); }else{ -_SUB_IDEOBJUPDATE_STRING_ALTLETTER=qbs_new(oldstr5688->len,0); +_SUB_IDEOBJUPDATE_STRING_ALTLETTER=qbs_new(oldstr5690->len,0); } -memcpy(_SUB_IDEOBJUPDATE_STRING_ALTLETTER->chr,oldstr5688->chr,oldstr5688->len); +memcpy(_SUB_IDEOBJUPDATE_STRING_ALTLETTER->chr,oldstr5690->chr,oldstr5690->len); } qbs *_SUB_IDEOBJUPDATE_STRING1_SEP=NULL; if(_SUB_IDEOBJUPDATE_STRING1_SEP==NULL){ @@ -50,14 +50,6 @@ if(_SUB_IDEOBJUPDATE_LONG_X==NULL){ _SUB_IDEOBJUPDATE_LONG_X=(int32*)mem_static_malloc(4); *_SUB_IDEOBJUPDATE_LONG_X=0; } -byte_element_struct *byte_element_5689=NULL; -if (!byte_element_5689){ -if ((mem_static_pointer+=12)tmp||_FUNC_FINDID_STRING_N2->fixed||_FUNC_FINDID_STRING_N2->readonly){ -oldstr2746=_FUNC_FINDID_STRING_N2; -if (oldstr2746->cmem_descriptor){ -_FUNC_FINDID_STRING_N2=qbs_new_cmem(oldstr2746->len,0); +oldstr2748=_FUNC_FINDID_STRING_N2; +if (oldstr2748->cmem_descriptor){ +_FUNC_FINDID_STRING_N2=qbs_new_cmem(oldstr2748->len,0); }else{ -_FUNC_FINDID_STRING_N2=qbs_new(oldstr2746->len,0); +_FUNC_FINDID_STRING_N2=qbs_new(oldstr2748->len,0); } -memcpy(_FUNC_FINDID_STRING_N2->chr,oldstr2746->chr,oldstr2746->len); +memcpy(_FUNC_FINDID_STRING_N2->chr,oldstr2748->chr,oldstr2748->len); } qbs *_FUNC_FINDID_STRING_N=NULL; if (!_FUNC_FINDID_STRING_N)_FUNC_FINDID_STRING_N=qbs_new(0,0); @@ -29,29 +29,16 @@ _FUNC_FINDID_LONG_I=(int32*)mem_static_malloc(4); } qbs *_FUNC_FINDID_STRING_SC=NULL; if (!_FUNC_FINDID_STRING_SC)_FUNC_FINDID_STRING_SC=qbs_new(0,0); -byte_element_struct *byte_element_2747=NULL; -if (!byte_element_2747){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEZCHANGEPATH_STRING_PATH->fixed||_FUNC_IDEZCHANGEPATH_STRING_PATH->readonly){ -oldstr5746=_FUNC_IDEZCHANGEPATH_STRING_PATH; -if (oldstr5746->cmem_descriptor){ -_FUNC_IDEZCHANGEPATH_STRING_PATH=qbs_new_cmem(oldstr5746->len,0); +oldstr5748=_FUNC_IDEZCHANGEPATH_STRING_PATH; +if (oldstr5748->cmem_descriptor){ +_FUNC_IDEZCHANGEPATH_STRING_PATH=qbs_new_cmem(oldstr5748->len,0); }else{ -_FUNC_IDEZCHANGEPATH_STRING_PATH=qbs_new(oldstr5746->len,0); +_FUNC_IDEZCHANGEPATH_STRING_PATH=qbs_new(oldstr5748->len,0); } -memcpy(_FUNC_IDEZCHANGEPATH_STRING_PATH->chr,oldstr5746->chr,oldstr5746->len); +memcpy(_FUNC_IDEZCHANGEPATH_STRING_PATH->chr,oldstr5748->chr,oldstr5748->len); } -qbs*oldstr5747=NULL; +qbs*oldstr5749=NULL; if(_FUNC_IDEZCHANGEPATH_STRING_NEWPATH->tmp||_FUNC_IDEZCHANGEPATH_STRING_NEWPATH->fixed||_FUNC_IDEZCHANGEPATH_STRING_NEWPATH->readonly){ -oldstr5747=_FUNC_IDEZCHANGEPATH_STRING_NEWPATH; -if (oldstr5747->cmem_descriptor){ -_FUNC_IDEZCHANGEPATH_STRING_NEWPATH=qbs_new_cmem(oldstr5747->len,0); +oldstr5749=_FUNC_IDEZCHANGEPATH_STRING_NEWPATH; +if (oldstr5749->cmem_descriptor){ +_FUNC_IDEZCHANGEPATH_STRING_NEWPATH=qbs_new_cmem(oldstr5749->len,0); }else{ -_FUNC_IDEZCHANGEPATH_STRING_NEWPATH=qbs_new(oldstr5747->len,0); +_FUNC_IDEZCHANGEPATH_STRING_NEWPATH=qbs_new(oldstr5749->len,0); } -memcpy(_FUNC_IDEZCHANGEPATH_STRING_NEWPATH->chr,oldstr5747->chr,oldstr5747->len); +memcpy(_FUNC_IDEZCHANGEPATH_STRING_NEWPATH->chr,oldstr5749->chr,oldstr5749->len); } int32 *_FUNC_IDEZCHANGEPATH_LONG_X=NULL; if(_FUNC_IDEZCHANGEPATH_LONG_X==NULL){ _FUNC_IDEZCHANGEPATH_LONG_X=(int32*)mem_static_malloc(4); *_FUNC_IDEZCHANGEPATH_LONG_X=0; } -int64 fornext_value5749; -int64 fornext_finalvalue5749; -int64 fornext_step5749; -uint8 fornext_step_negative5749; -byte_element_struct *byte_element_5750=NULL; -if (!byte_element_5750){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEZFILELIST_STRING_PATH->fixed||_FUNC_IDEZFILELIST_STRING_PATH->readonly){ -oldstr5755=_FUNC_IDEZFILELIST_STRING_PATH; -if (oldstr5755->cmem_descriptor){ -_FUNC_IDEZFILELIST_STRING_PATH=qbs_new_cmem(oldstr5755->len,0); +oldstr5757=_FUNC_IDEZFILELIST_STRING_PATH; +if (oldstr5757->cmem_descriptor){ +_FUNC_IDEZFILELIST_STRING_PATH=qbs_new_cmem(oldstr5757->len,0); }else{ -_FUNC_IDEZFILELIST_STRING_PATH=qbs_new(oldstr5755->len,0); +_FUNC_IDEZFILELIST_STRING_PATH=qbs_new(oldstr5757->len,0); } -memcpy(_FUNC_IDEZFILELIST_STRING_PATH->chr,oldstr5755->chr,oldstr5755->len); +memcpy(_FUNC_IDEZFILELIST_STRING_PATH->chr,oldstr5757->chr,oldstr5757->len); } -qbs*oldstr5756=NULL; +qbs*oldstr5758=NULL; if(_FUNC_IDEZFILELIST_STRING_MASK->tmp||_FUNC_IDEZFILELIST_STRING_MASK->fixed||_FUNC_IDEZFILELIST_STRING_MASK->readonly){ -oldstr5756=_FUNC_IDEZFILELIST_STRING_MASK; -if (oldstr5756->cmem_descriptor){ -_FUNC_IDEZFILELIST_STRING_MASK=qbs_new_cmem(oldstr5756->len,0); +oldstr5758=_FUNC_IDEZFILELIST_STRING_MASK; +if (oldstr5758->cmem_descriptor){ +_FUNC_IDEZFILELIST_STRING_MASK=qbs_new_cmem(oldstr5758->len,0); }else{ -_FUNC_IDEZFILELIST_STRING_MASK=qbs_new(oldstr5756->len,0); +_FUNC_IDEZFILELIST_STRING_MASK=qbs_new(oldstr5758->len,0); } -memcpy(_FUNC_IDEZFILELIST_STRING_MASK->chr,oldstr5756->chr,oldstr5756->len); +memcpy(_FUNC_IDEZFILELIST_STRING_MASK->chr,oldstr5758->chr,oldstr5758->len); } qbs *_FUNC_IDEZFILELIST_STRING1_SEP=NULL; if(_FUNC_IDEZFILELIST_STRING1_SEP==NULL){ @@ -29,47 +29,47 @@ qbs *_FUNC_IDEZFILELIST_STRING_FILELIST=NULL; if (!_FUNC_IDEZFILELIST_STRING_FILELIST)_FUNC_IDEZFILELIST_STRING_FILELIST=qbs_new(0,0); qbs *_FUNC_IDEZFILELIST_STRING_A=NULL; if (!_FUNC_IDEZFILELIST_STRING_A)_FUNC_IDEZFILELIST_STRING_A=qbs_new(0,0); -byte_element_struct *byte_element_5759=NULL; -if (!byte_element_5759){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEZPATHLIST_STRING_PATH->fixed||_FUNC_IDEZPATHLIST_STRING_PATH->readonly){ -oldstr5773=_FUNC_IDEZPATHLIST_STRING_PATH; -if (oldstr5773->cmem_descriptor){ -_FUNC_IDEZPATHLIST_STRING_PATH=qbs_new_cmem(oldstr5773->len,0); +oldstr5775=_FUNC_IDEZPATHLIST_STRING_PATH; +if (oldstr5775->cmem_descriptor){ +_FUNC_IDEZPATHLIST_STRING_PATH=qbs_new_cmem(oldstr5775->len,0); }else{ -_FUNC_IDEZPATHLIST_STRING_PATH=qbs_new(oldstr5773->len,0); +_FUNC_IDEZPATHLIST_STRING_PATH=qbs_new(oldstr5775->len,0); } -memcpy(_FUNC_IDEZPATHLIST_STRING_PATH->chr,oldstr5773->chr,oldstr5773->len); +memcpy(_FUNC_IDEZPATHLIST_STRING_PATH->chr,oldstr5775->chr,oldstr5775->len); } qbs *_FUNC_IDEZPATHLIST_STRING1_SEP=NULL; if(_FUNC_IDEZPATHLIST_STRING1_SEP==NULL){ @@ -29,19 +29,19 @@ if(_FUNC_IDEZPATHLIST_LONG_X==NULL){ _FUNC_IDEZPATHLIST_LONG_X=(int32*)mem_static_malloc(4); *_FUNC_IDEZPATHLIST_LONG_X=0; } -int64 fornext_value5777; -int64 fornext_finalvalue5777; -int64 fornext_step5777; -uint8 fornext_step_negative5777; -byte_element_struct *byte_element_5778=NULL; -if (!byte_element_5778){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEZTAKEPATH_STRING_F->fixed||_FUNC_IDEZTAKEPATH_STRING_F->readonly){ -oldstr5790=_FUNC_IDEZTAKEPATH_STRING_F; -if (oldstr5790->cmem_descriptor){ -_FUNC_IDEZTAKEPATH_STRING_F=qbs_new_cmem(oldstr5790->len,0); +oldstr5792=_FUNC_IDEZTAKEPATH_STRING_F; +if (oldstr5792->cmem_descriptor){ +_FUNC_IDEZTAKEPATH_STRING_F=qbs_new_cmem(oldstr5792->len,0); }else{ -_FUNC_IDEZTAKEPATH_STRING_F=qbs_new(oldstr5790->len,0); +_FUNC_IDEZTAKEPATH_STRING_F=qbs_new(oldstr5792->len,0); } -memcpy(_FUNC_IDEZTAKEPATH_STRING_F->chr,oldstr5790->chr,oldstr5790->len); +memcpy(_FUNC_IDEZTAKEPATH_STRING_F->chr,oldstr5792->chr,oldstr5792->len); } qbs *_FUNC_IDEZTAKEPATH_STRING_P=NULL; if (!_FUNC_IDEZTAKEPATH_STRING_P)_FUNC_IDEZTAKEPATH_STRING_P=qbs_new(0,0); @@ -17,17 +17,17 @@ if(_FUNC_IDEZTAKEPATH_LONG_I==NULL){ _FUNC_IDEZTAKEPATH_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_IDEZTAKEPATH_LONG_I=0; } -int64 fornext_value5792; -int64 fornext_finalvalue5792; -int64 fornext_step5792; -uint8 fornext_step_negative5792; -byte_element_struct *byte_element_5793=NULL; -if (!byte_element_5793){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEZGETFILEPATH_STRING_ROOT->fixed||_FUNC_IDEZGETFILEPATH_STRING_ROOT->readonly){ -oldstr5795=_FUNC_IDEZGETFILEPATH_STRING_ROOT; -if (oldstr5795->cmem_descriptor){ -_FUNC_IDEZGETFILEPATH_STRING_ROOT=qbs_new_cmem(oldstr5795->len,0); +oldstr5797=_FUNC_IDEZGETFILEPATH_STRING_ROOT; +if (oldstr5797->cmem_descriptor){ +_FUNC_IDEZGETFILEPATH_STRING_ROOT=qbs_new_cmem(oldstr5797->len,0); }else{ -_FUNC_IDEZGETFILEPATH_STRING_ROOT=qbs_new(oldstr5795->len,0); +_FUNC_IDEZGETFILEPATH_STRING_ROOT=qbs_new(oldstr5797->len,0); } -memcpy(_FUNC_IDEZGETFILEPATH_STRING_ROOT->chr,oldstr5795->chr,oldstr5795->len); +memcpy(_FUNC_IDEZGETFILEPATH_STRING_ROOT->chr,oldstr5797->chr,oldstr5797->len); } -qbs*oldstr5796=NULL; +qbs*oldstr5798=NULL; if(_FUNC_IDEZGETFILEPATH_STRING_F->tmp||_FUNC_IDEZGETFILEPATH_STRING_F->fixed||_FUNC_IDEZGETFILEPATH_STRING_F->readonly){ -oldstr5796=_FUNC_IDEZGETFILEPATH_STRING_F; -if (oldstr5796->cmem_descriptor){ -_FUNC_IDEZGETFILEPATH_STRING_F=qbs_new_cmem(oldstr5796->len,0); +oldstr5798=_FUNC_IDEZGETFILEPATH_STRING_F; +if (oldstr5798->cmem_descriptor){ +_FUNC_IDEZGETFILEPATH_STRING_F=qbs_new_cmem(oldstr5798->len,0); }else{ -_FUNC_IDEZGETFILEPATH_STRING_F=qbs_new(oldstr5796->len,0); +_FUNC_IDEZGETFILEPATH_STRING_F=qbs_new(oldstr5798->len,0); } -memcpy(_FUNC_IDEZGETFILEPATH_STRING_F->chr,oldstr5796->chr,oldstr5796->len); +memcpy(_FUNC_IDEZGETFILEPATH_STRING_F->chr,oldstr5798->chr,oldstr5798->len); } qbs *_FUNC_IDEZGETFILEPATH_STRING_P=NULL; if (!_FUNC_IDEZGETFILEPATH_STRING_P)_FUNC_IDEZGETFILEPATH_STRING_P=qbs_new(0,0); -byte_element_struct *byte_element_5797=NULL; -if (!byte_element_5797){ -if ((mem_static_pointer+=12)tmp||_FUNC_FINDARRAY_STRING_SECURE->fixed||_FUNC_FINDARRAY_STRING_SECURE->readonly){ -oldstr2758=_FUNC_FINDARRAY_STRING_SECURE; -if (oldstr2758->cmem_descriptor){ -_FUNC_FINDARRAY_STRING_SECURE=qbs_new_cmem(oldstr2758->len,0); +oldstr2760=_FUNC_FINDARRAY_STRING_SECURE; +if (oldstr2760->cmem_descriptor){ +_FUNC_FINDARRAY_STRING_SECURE=qbs_new_cmem(oldstr2760->len,0); }else{ -_FUNC_FINDARRAY_STRING_SECURE=qbs_new(oldstr2758->len,0); +_FUNC_FINDARRAY_STRING_SECURE=qbs_new(oldstr2760->len,0); } -memcpy(_FUNC_FINDARRAY_STRING_SECURE->chr,oldstr2758->chr,oldstr2758->len); +memcpy(_FUNC_FINDARRAY_STRING_SECURE->chr,oldstr2760->chr,oldstr2760->len); } qbs *_FUNC_FINDARRAY_STRING_N=NULL; if (!_FUNC_FINDARRAY_STRING_N)_FUNC_FINDARRAY_STRING_N=qbs_new(0,0); @@ -22,14 +22,6 @@ _FUNC_FINDARRAY_LONG_I=(int32*)mem_static_malloc(4); } qbs *_FUNC_FINDARRAY_STRING_SC=NULL; if (!_FUNC_FINDARRAY_STRING_SC)_FUNC_FINDARRAY_STRING_SC=qbs_new(0,0); -byte_element_struct *byte_element_2760=NULL; -if (!byte_element_2760){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE->fixed||_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE->readonly){ -oldstr5825=_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE; -if (oldstr5825->cmem_descriptor){ -_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE=qbs_new_cmem(oldstr5825->len,0); +oldstr5827=_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE; +if (oldstr5827->cmem_descriptor){ +_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE=qbs_new_cmem(oldstr5827->len,0); }else{ -_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE=qbs_new(oldstr5825->len,0); +_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE=qbs_new(oldstr5827->len,0); } -memcpy(_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE->chr,oldstr5825->chr,oldstr5825->len); +memcpy(_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE->chr,oldstr5827->chr,oldstr5827->len); } qbs *_FUNC_IDEGETLINENUMBERBOX_STRING_A2=NULL; if (!_FUNC_IDEGETLINENUMBERBOX_STRING_A2)_FUNC_IDEGETLINENUMBERBOX_STRING_A2=qbs_new(0,0); qbs *_FUNC_IDEGETLINENUMBERBOX_STRING_V=NULL; if (!_FUNC_IDEGETLINENUMBERBOX_STRING_V)_FUNC_IDEGETLINENUMBERBOX_STRING_V=qbs_new(0,0); -int32 pass5826; -int32 pass5827; int32 pass5828; +int32 pass5829; +int32 pass5830; int32 *_FUNC_IDEGETLINENUMBERBOX_LONG_V=NULL; if(_FUNC_IDEGETLINENUMBERBOX_LONG_V==NULL){ _FUNC_IDEGETLINENUMBERBOX_LONG_V=(int32*)mem_static_malloc(4); diff --git a/internal/source/data233.txt b/internal/source/data233.txt index 2bdd50a89..f713cf13c 100644 --- a/internal/source/data233.txt +++ b/internal/source/data233.txt @@ -77,11 +77,6 @@ _FUNC_IDECOMPILERSETTINGSBOX_LONG_Y=(int32*)mem_static_malloc(4); } qbs *_FUNC_IDECOMPILERSETTINGSBOX_STRING_A2=NULL; if (!_FUNC_IDECOMPILERSETTINGSBOX_STRING_A2)_FUNC_IDECOMPILERSETTINGSBOX_STRING_A2=qbs_new(0,0); -int32 pass5829; -byte_element_struct *byte_element_5830=NULL; -if (!byte_element_5830){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->fixed||_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->readonly){ -oldstr5846=_FUNC_IDEMESSAGEBOX_STRING_TITLESTR; -if (oldstr5846->cmem_descriptor){ -_FUNC_IDEMESSAGEBOX_STRING_TITLESTR=qbs_new_cmem(oldstr5846->len,0); -}else{ -_FUNC_IDEMESSAGEBOX_STRING_TITLESTR=qbs_new(oldstr5846->len,0); -} -memcpy(_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->chr,oldstr5846->chr,oldstr5846->len); -} -qbs*oldstr5847=NULL; -if(_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->tmp||_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->fixed||_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->readonly){ -oldstr5847=_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR; -if (oldstr5847->cmem_descriptor){ -_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR=qbs_new_cmem(oldstr5847->len,0); -}else{ -_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR=qbs_new(oldstr5847->len,0); -} -memcpy(_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->chr,oldstr5847->chr,oldstr5847->len); -} qbs*oldstr5848=NULL; -if(_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->tmp||_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->fixed||_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->readonly){ -oldstr5848=_FUNC_IDEMESSAGEBOX_STRING_BUTTONS; +if(_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->tmp||_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->fixed||_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->readonly){ +oldstr5848=_FUNC_IDEMESSAGEBOX_STRING_TITLESTR; if (oldstr5848->cmem_descriptor){ -_FUNC_IDEMESSAGEBOX_STRING_BUTTONS=qbs_new_cmem(oldstr5848->len,0); +_FUNC_IDEMESSAGEBOX_STRING_TITLESTR=qbs_new_cmem(oldstr5848->len,0); }else{ -_FUNC_IDEMESSAGEBOX_STRING_BUTTONS=qbs_new(oldstr5848->len,0); +_FUNC_IDEMESSAGEBOX_STRING_TITLESTR=qbs_new(oldstr5848->len,0); } -memcpy(_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->chr,oldstr5848->chr,oldstr5848->len); +memcpy(_FUNC_IDEMESSAGEBOX_STRING_TITLESTR->chr,oldstr5848->chr,oldstr5848->len); +} +qbs*oldstr5849=NULL; +if(_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->tmp||_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->fixed||_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->readonly){ +oldstr5849=_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR; +if (oldstr5849->cmem_descriptor){ +_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR=qbs_new_cmem(oldstr5849->len,0); +}else{ +_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR=qbs_new(oldstr5849->len,0); +} +memcpy(_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR->chr,oldstr5849->chr,oldstr5849->len); +} +qbs*oldstr5850=NULL; +if(_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->tmp||_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->fixed||_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->readonly){ +oldstr5850=_FUNC_IDEMESSAGEBOX_STRING_BUTTONS; +if (oldstr5850->cmem_descriptor){ +_FUNC_IDEMESSAGEBOX_STRING_BUTTONS=qbs_new_cmem(oldstr5850->len,0); +}else{ +_FUNC_IDEMESSAGEBOX_STRING_BUTTONS=qbs_new(oldstr5850->len,0); +} +memcpy(_FUNC_IDEMESSAGEBOX_STRING_BUTTONS->chr,oldstr5850->chr,oldstr5850->len); } int32 *_FUNC_IDEMESSAGEBOX_LONG_FOCUS=NULL; if(_FUNC_IDEMESSAGEBOX_LONG_FOCUS==NULL){ @@ -92,18 +92,18 @@ if(_FUNC_IDEMESSAGEBOX_LONG_TW==NULL){ _FUNC_IDEMESSAGEBOX_LONG_TW=(int32*)mem_static_malloc(4); *_FUNC_IDEMESSAGEBOX_LONG_TW=0; } -byte_element_struct *byte_element_5850=NULL; -if (!byte_element_5850){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEYESNOBOX_STRING_TITLESTR->fixed||_FUNC_IDEYESNOBOX_STRING_TITLESTR->readonly){ -oldstr5871=_FUNC_IDEYESNOBOX_STRING_TITLESTR; -if (oldstr5871->cmem_descriptor){ -_FUNC_IDEYESNOBOX_STRING_TITLESTR=qbs_new_cmem(oldstr5871->len,0); +oldstr5873=_FUNC_IDEYESNOBOX_STRING_TITLESTR; +if (oldstr5873->cmem_descriptor){ +_FUNC_IDEYESNOBOX_STRING_TITLESTR=qbs_new_cmem(oldstr5873->len,0); }else{ -_FUNC_IDEYESNOBOX_STRING_TITLESTR=qbs_new(oldstr5871->len,0); +_FUNC_IDEYESNOBOX_STRING_TITLESTR=qbs_new(oldstr5873->len,0); } -memcpy(_FUNC_IDEYESNOBOX_STRING_TITLESTR->chr,oldstr5871->chr,oldstr5871->len); +memcpy(_FUNC_IDEYESNOBOX_STRING_TITLESTR->chr,oldstr5873->chr,oldstr5873->len); } -qbs*oldstr5872=NULL; +qbs*oldstr5874=NULL; if(_FUNC_IDEYESNOBOX_STRING_MESSAGESTR->tmp||_FUNC_IDEYESNOBOX_STRING_MESSAGESTR->fixed||_FUNC_IDEYESNOBOX_STRING_MESSAGESTR->readonly){ -oldstr5872=_FUNC_IDEYESNOBOX_STRING_MESSAGESTR; -if (oldstr5872->cmem_descriptor){ -_FUNC_IDEYESNOBOX_STRING_MESSAGESTR=qbs_new_cmem(oldstr5872->len,0); +oldstr5874=_FUNC_IDEYESNOBOX_STRING_MESSAGESTR; +if (oldstr5874->cmem_descriptor){ +_FUNC_IDEYESNOBOX_STRING_MESSAGESTR=qbs_new_cmem(oldstr5874->len,0); }else{ -_FUNC_IDEYESNOBOX_STRING_MESSAGESTR=qbs_new(oldstr5872->len,0); +_FUNC_IDEYESNOBOX_STRING_MESSAGESTR=qbs_new(oldstr5874->len,0); } -memcpy(_FUNC_IDEYESNOBOX_STRING_MESSAGESTR->chr,oldstr5872->chr,oldstr5872->len); +memcpy(_FUNC_IDEYESNOBOX_STRING_MESSAGESTR->chr,oldstr5874->chr,oldstr5874->len); } int32 *_FUNC_IDEYESNOBOX_LONG_RESULT=NULL; if(_FUNC_IDEYESNOBOX_LONG_RESULT==NULL){ diff --git a/internal/source/data236.txt b/internal/source/data236.txt index 008f0f06f..b01dbc4a1 100644 --- a/internal/source/data236.txt +++ b/internal/source/data236.txt @@ -1,75 +1,71 @@ qbs *_FUNC_IDEACTIVITYBOX_STRING_IDEACTIVITYBOX=NULL; if (!_FUNC_IDEACTIVITYBOX_STRING_IDEACTIVITYBOX)_FUNC_IDEACTIVITYBOX_STRING_IDEACTIVITYBOX=qbs_new(0,0); -qbs*oldstr5873=NULL; -if(_FUNC_IDEACTIVITYBOX_STRING_ACTION->tmp||_FUNC_IDEACTIVITYBOX_STRING_ACTION->fixed||_FUNC_IDEACTIVITYBOX_STRING_ACTION->readonly){ -oldstr5873=_FUNC_IDEACTIVITYBOX_STRING_ACTION; -if (oldstr5873->cmem_descriptor){ -_FUNC_IDEACTIVITYBOX_STRING_ACTION=qbs_new_cmem(oldstr5873->len,0); -}else{ -_FUNC_IDEACTIVITYBOX_STRING_ACTION=qbs_new(oldstr5873->len,0); -} -memcpy(_FUNC_IDEACTIVITYBOX_STRING_ACTION->chr,oldstr5873->chr,oldstr5873->len); -} -qbs*oldstr5874=NULL; -if(_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->tmp||_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->fixed||_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->readonly){ -oldstr5874=_FUNC_IDEACTIVITYBOX_STRING_TITLESTR; -if (oldstr5874->cmem_descriptor){ -_FUNC_IDEACTIVITYBOX_STRING_TITLESTR=qbs_new_cmem(oldstr5874->len,0); -}else{ -_FUNC_IDEACTIVITYBOX_STRING_TITLESTR=qbs_new(oldstr5874->len,0); -} -memcpy(_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->chr,oldstr5874->chr,oldstr5874->len); -} qbs*oldstr5875=NULL; -if(_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR->tmp||_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR->fixed||_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR->readonly){ -oldstr5875=_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR; +if(_FUNC_IDEACTIVITYBOX_STRING_ACTION->tmp||_FUNC_IDEACTIVITYBOX_STRING_ACTION->fixed||_FUNC_IDEACTIVITYBOX_STRING_ACTION->readonly){ +oldstr5875=_FUNC_IDEACTIVITYBOX_STRING_ACTION; if (oldstr5875->cmem_descriptor){ -_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR=qbs_new_cmem(oldstr5875->len,0); +_FUNC_IDEACTIVITYBOX_STRING_ACTION=qbs_new_cmem(oldstr5875->len,0); }else{ -_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR=qbs_new(oldstr5875->len,0); +_FUNC_IDEACTIVITYBOX_STRING_ACTION=qbs_new(oldstr5875->len,0); } -memcpy(_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR->chr,oldstr5875->chr,oldstr5875->len); +memcpy(_FUNC_IDEACTIVITYBOX_STRING_ACTION->chr,oldstr5875->chr,oldstr5875->len); } qbs*oldstr5876=NULL; -if(_FUNC_IDEACTIVITYBOX_STRING_BUTTONS->tmp||_FUNC_IDEACTIVITYBOX_STRING_BUTTONS->fixed||_FUNC_IDEACTIVITYBOX_STRING_BUTTONS->readonly){ -oldstr5876=_FUNC_IDEACTIVITYBOX_STRING_BUTTONS; +if(_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->tmp||_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->fixed||_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->readonly){ +oldstr5876=_FUNC_IDEACTIVITYBOX_STRING_TITLESTR; if (oldstr5876->cmem_descriptor){ -_FUNC_IDEACTIVITYBOX_STRING_BUTTONS=qbs_new_cmem(oldstr5876->len,0); +_FUNC_IDEACTIVITYBOX_STRING_TITLESTR=qbs_new_cmem(oldstr5876->len,0); }else{ -_FUNC_IDEACTIVITYBOX_STRING_BUTTONS=qbs_new(oldstr5876->len,0); +_FUNC_IDEACTIVITYBOX_STRING_TITLESTR=qbs_new(oldstr5876->len,0); } -memcpy(_FUNC_IDEACTIVITYBOX_STRING_BUTTONS->chr,oldstr5876->chr,oldstr5876->len); +memcpy(_FUNC_IDEACTIVITYBOX_STRING_TITLESTR->chr,oldstr5876->chr,oldstr5876->len); } -static qbs *sc_5877=qbs_new(0,0); -byte_element_struct *byte_element_5879=NULL; -if (!byte_element_5879){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR->fixed||_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR->readonly){ +oldstr5877=_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR; +if (oldstr5877->cmem_descriptor){ +_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR=qbs_new_cmem(oldstr5877->len,0); +}else{ +_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR=qbs_new(oldstr5877->len,0); } -byte_element_struct *byte_element_5880=NULL; -if (!byte_element_5880){ -if ((mem_static_pointer+=12)chr,oldstr5877->chr,oldstr5877->len); } -int64 fornext_value5882; -int64 fornext_finalvalue5882; -int64 fornext_step5882; -uint8 fornext_step_negative5882; -byte_element_struct *byte_element_5883=NULL; -if (!byte_element_5883){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEACTIVITYBOX_STRING_BUTTONS->fixed||_FUNC_IDEACTIVITYBOX_STRING_BUTTONS->readonly){ +oldstr5878=_FUNC_IDEACTIVITYBOX_STRING_BUTTONS; +if (oldstr5878->cmem_descriptor){ +_FUNC_IDEACTIVITYBOX_STRING_BUTTONS=qbs_new_cmem(oldstr5878->len,0); +}else{ +_FUNC_IDEACTIVITYBOX_STRING_BUTTONS=qbs_new(oldstr5878->len,0); } -byte_element_struct *byte_element_5884=NULL; -if (!byte_element_5884){ -if ((mem_static_pointer+=12)chr,oldstr5878->chr,oldstr5878->len); } +static qbs *sc_5879=qbs_new(0,0); +byte_element_struct *byte_element_5881=NULL; +if (!byte_element_5881){ +if ((mem_static_pointer+=12)tmp||_FUNC_FIXOPERATIONORDER_STRING_SAVEA->fixed||_FUNC_FIXOPERATIONORDER_STRING_SAVEA->readonly){ -oldstr2772=_FUNC_FIXOPERATIONORDER_STRING_SAVEA; -if (oldstr2772->cmem_descriptor){ -_FUNC_FIXOPERATIONORDER_STRING_SAVEA=qbs_new_cmem(oldstr2772->len,0); +oldstr2774=_FUNC_FIXOPERATIONORDER_STRING_SAVEA; +if (oldstr2774->cmem_descriptor){ +_FUNC_FIXOPERATIONORDER_STRING_SAVEA=qbs_new_cmem(oldstr2774->len,0); }else{ -_FUNC_FIXOPERATIONORDER_STRING_SAVEA=qbs_new(oldstr2772->len,0); +_FUNC_FIXOPERATIONORDER_STRING_SAVEA=qbs_new(oldstr2774->len,0); } -memcpy(_FUNC_FIXOPERATIONORDER_STRING_SAVEA->chr,oldstr2772->chr,oldstr2772->len); +memcpy(_FUNC_FIXOPERATIONORDER_STRING_SAVEA->chr,oldstr2774->chr,oldstr2774->len); } qbs *_FUNC_FIXOPERATIONORDER_STRING_A=NULL; if (!_FUNC_FIXOPERATIONORDER_STRING_A)_FUNC_FIXOPERATIONORDER_STRING_A=qbs_new(0,0); @@ -24,15 +24,15 @@ if(_FUNC_FIXOPERATIONORDER_LONG_I==NULL){ _FUNC_FIXOPERATIONORDER_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_FIXOPERATIONORDER_LONG_I=0; } -int64 fornext_value2775; -int64 fornext_finalvalue2775; -int64 fornext_step2775; -uint8 fornext_step_negative2775; +int64 fornext_value2777; +int64 fornext_finalvalue2777; +int64 fornext_step2777; +uint8 fornext_step_negative2777; qbs *_FUNC_FIXOPERATIONORDER_STRING_TEMP1=NULL; if (!_FUNC_FIXOPERATIONORDER_STRING_TEMP1)_FUNC_FIXOPERATIONORDER_STRING_TEMP1=qbs_new(0,0); qbs *_FUNC_FIXOPERATIONORDER_STRING_TEMP2=NULL; if (!_FUNC_FIXOPERATIONORDER_STRING_TEMP2)_FUNC_FIXOPERATIONORDER_STRING_TEMP2=qbs_new(0,0); -int32 pass2776; +int32 pass2778; int32 *_FUNC_FIXOPERATIONORDER_LONG_B=NULL; if(_FUNC_FIXOPERATIONORDER_LONG_B==NULL){ _FUNC_FIXOPERATIONORDER_LONG_B=(int32*)mem_static_malloc(4); @@ -59,62 +59,62 @@ if(_FUNC_FIXOPERATIONORDER_LONG_I3==NULL){ _FUNC_FIXOPERATIONORDER_LONG_I3=(int32*)mem_static_malloc(4); *_FUNC_FIXOPERATIONORDER_LONG_I3=0; } -byte_element_struct *byte_element_2777=NULL; -if (!byte_element_2777){ -if ((mem_static_pointer+=12)tmp||_FUNC_COUNTITEMS_STRING_SEARCHSTRING->fixed||_FUNC_COUNTITEMS_STRING_SEARCHSTRING->readonly){ -oldstr6095=_FUNC_COUNTITEMS_STRING_SEARCHSTRING; -if (oldstr6095->cmem_descriptor){ -_FUNC_COUNTITEMS_STRING_SEARCHSTRING=qbs_new_cmem(oldstr6095->len,0); +oldstr6097=_FUNC_COUNTITEMS_STRING_SEARCHSTRING; +if (oldstr6097->cmem_descriptor){ +_FUNC_COUNTITEMS_STRING_SEARCHSTRING=qbs_new_cmem(oldstr6097->len,0); }else{ -_FUNC_COUNTITEMS_STRING_SEARCHSTRING=qbs_new(oldstr6095->len,0); +_FUNC_COUNTITEMS_STRING_SEARCHSTRING=qbs_new(oldstr6097->len,0); } -memcpy(_FUNC_COUNTITEMS_STRING_SEARCHSTRING->chr,oldstr6095->chr,oldstr6095->len); +memcpy(_FUNC_COUNTITEMS_STRING_SEARCHSTRING->chr,oldstr6097->chr,oldstr6097->len); } -qbs*oldstr6096=NULL; +qbs*oldstr6098=NULL; if(_FUNC_COUNTITEMS_STRING_ITEM->tmp||_FUNC_COUNTITEMS_STRING_ITEM->fixed||_FUNC_COUNTITEMS_STRING_ITEM->readonly){ -oldstr6096=_FUNC_COUNTITEMS_STRING_ITEM; -if (oldstr6096->cmem_descriptor){ -_FUNC_COUNTITEMS_STRING_ITEM=qbs_new_cmem(oldstr6096->len,0); +oldstr6098=_FUNC_COUNTITEMS_STRING_ITEM; +if (oldstr6098->cmem_descriptor){ +_FUNC_COUNTITEMS_STRING_ITEM=qbs_new_cmem(oldstr6098->len,0); }else{ -_FUNC_COUNTITEMS_STRING_ITEM=qbs_new(oldstr6096->len,0); +_FUNC_COUNTITEMS_STRING_ITEM=qbs_new(oldstr6098->len,0); } -memcpy(_FUNC_COUNTITEMS_STRING_ITEM->chr,oldstr6096->chr,oldstr6096->len); +memcpy(_FUNC_COUNTITEMS_STRING_ITEM->chr,oldstr6098->chr,oldstr6098->len); } int32 *_FUNC_COUNTITEMS_LONG_FOUND=NULL; if(_FUNC_COUNTITEMS_LONG_FOUND==NULL){ diff --git a/internal/source/data244.txt b/internal/source/data244.txt index 742a0935f..ea06593f4 100644 --- a/internal/source/data244.txt +++ b/internal/source/data244.txt @@ -3,9 +3,9 @@ if(_SUB_GETINPUT_LONG_K==NULL){ _SUB_GETINPUT_LONG_K=(int32*)mem_static_malloc(4); *_SUB_GETINPUT_LONG_K=0; } -byte_element_struct *byte_element_6099=NULL; -if (!byte_element_6099){ -if ((mem_static_pointer+=12)tmp||_SUB_IDEIMPORTBOOKMARKS_STRING_F2->fixed||_SUB_IDEIMPORTBOOKMARKS_STRING_F2->readonly){ -oldstr6124=_SUB_IDEIMPORTBOOKMARKS_STRING_F2; -if (oldstr6124->cmem_descriptor){ -_SUB_IDEIMPORTBOOKMARKS_STRING_F2=qbs_new_cmem(oldstr6124->len,0); +oldstr6126=_SUB_IDEIMPORTBOOKMARKS_STRING_F2; +if (oldstr6126->cmem_descriptor){ +_SUB_IDEIMPORTBOOKMARKS_STRING_F2=qbs_new_cmem(oldstr6126->len,0); }else{ -_SUB_IDEIMPORTBOOKMARKS_STRING_F2=qbs_new(oldstr6124->len,0); +_SUB_IDEIMPORTBOOKMARKS_STRING_F2=qbs_new(oldstr6126->len,0); } -memcpy(_SUB_IDEIMPORTBOOKMARKS_STRING_F2->chr,oldstr6124->chr,oldstr6124->len); +memcpy(_SUB_IDEIMPORTBOOKMARKS_STRING_F2->chr,oldstr6126->chr,oldstr6126->len); } qbs *_SUB_IDEIMPORTBOOKMARKS_STRING_F=NULL; if (!_SUB_IDEIMPORTBOOKMARKS_STRING_F)_SUB_IDEIMPORTBOOKMARKS_STRING_F=qbs_new(0,0); @@ -27,18 +27,18 @@ if(_SUB_IDEIMPORTBOOKMARKS_LONG_L==NULL){ _SUB_IDEIMPORTBOOKMARKS_LONG_L=(int32*)mem_static_malloc(4); *_SUB_IDEIMPORTBOOKMARKS_LONG_L=0; } -byte_element_struct *byte_element_6125=NULL; -if (!byte_element_6125){ -if ((mem_static_pointer+=12)tmp||_SUB_IDESAVEBOOKMARKS_STRING_F2->fixed||_SUB_IDESAVEBOOKMARKS_STRING_F2->readonly){ -oldstr6133=_SUB_IDESAVEBOOKMARKS_STRING_F2; -if (oldstr6133->cmem_descriptor){ -_SUB_IDESAVEBOOKMARKS_STRING_F2=qbs_new_cmem(oldstr6133->len,0); +oldstr6135=_SUB_IDESAVEBOOKMARKS_STRING_F2; +if (oldstr6135->cmem_descriptor){ +_SUB_IDESAVEBOOKMARKS_STRING_F2=qbs_new_cmem(oldstr6135->len,0); }else{ -_SUB_IDESAVEBOOKMARKS_STRING_F2=qbs_new(oldstr6133->len,0); +_SUB_IDESAVEBOOKMARKS_STRING_F2=qbs_new(oldstr6135->len,0); } -memcpy(_SUB_IDESAVEBOOKMARKS_STRING_F2->chr,oldstr6133->chr,oldstr6133->len); +memcpy(_SUB_IDESAVEBOOKMARKS_STRING_F2->chr,oldstr6135->chr,oldstr6135->len); } qbs *_SUB_IDESAVEBOOKMARKS_STRING_F=NULL; if (!_SUB_IDESAVEBOOKMARKS_STRING_F)_SUB_IDESAVEBOOKMARKS_STRING_F=qbs_new(0,0); @@ -27,22 +27,22 @@ if(_SUB_IDESAVEBOOKMARKS_LONG_L==NULL){ _SUB_IDESAVEBOOKMARKS_LONG_L=(int32*)mem_static_malloc(4); *_SUB_IDESAVEBOOKMARKS_LONG_L=0; } -byte_element_struct *byte_element_6134=NULL; -if (!byte_element_6134){ -if ((mem_static_pointer+=12)tmp||_FUNC_GETELEMENTSPECIAL_STRING_SAVEA->fixed||_FUNC_GETELEMENTSPECIAL_STRING_SAVEA->readonly){ -oldstr2903=_FUNC_GETELEMENTSPECIAL_STRING_SAVEA; -if (oldstr2903->cmem_descriptor){ -_FUNC_GETELEMENTSPECIAL_STRING_SAVEA=qbs_new_cmem(oldstr2903->len,0); +oldstr2905=_FUNC_GETELEMENTSPECIAL_STRING_SAVEA; +if (oldstr2905->cmem_descriptor){ +_FUNC_GETELEMENTSPECIAL_STRING_SAVEA=qbs_new_cmem(oldstr2905->len,0); }else{ -_FUNC_GETELEMENTSPECIAL_STRING_SAVEA=qbs_new(oldstr2903->len,0); +_FUNC_GETELEMENTSPECIAL_STRING_SAVEA=qbs_new(oldstr2905->len,0); } -memcpy(_FUNC_GETELEMENTSPECIAL_STRING_SAVEA->chr,oldstr2903->chr,oldstr2903->len); +memcpy(_FUNC_GETELEMENTSPECIAL_STRING_SAVEA->chr,oldstr2905->chr,oldstr2905->len); } qbs *_FUNC_GETELEMENTSPECIAL_STRING_A=NULL; if (!_FUNC_GETELEMENTSPECIAL_STRING_A)_FUNC_GETELEMENTSPECIAL_STRING_A=qbs_new(0,0); @@ -37,7 +37,7 @@ if(_FUNC_GETELEMENTSPECIAL_LONG_I3==NULL){ _FUNC_GETELEMENTSPECIAL_LONG_I3=(int32*)mem_static_malloc(4); *_FUNC_GETELEMENTSPECIAL_LONG_I3=0; } -byte_element_struct *byte_element_2904=NULL; -if (!byte_element_2904){ -if ((mem_static_pointer+=12)tmp||_SUB_IDEADDRECENT_STRING_F2->fixed||_SUB_IDEADDRECENT_STRING_F2->readonly){ -oldstr6205=_SUB_IDEADDRECENT_STRING_F2; -if (oldstr6205->cmem_descriptor){ -_SUB_IDEADDRECENT_STRING_F2=qbs_new_cmem(oldstr6205->len,0); +oldstr6207=_SUB_IDEADDRECENT_STRING_F2; +if (oldstr6207->cmem_descriptor){ +_SUB_IDEADDRECENT_STRING_F2=qbs_new_cmem(oldstr6207->len,0); }else{ -_SUB_IDEADDRECENT_STRING_F2=qbs_new(oldstr6205->len,0); +_SUB_IDEADDRECENT_STRING_F2=qbs_new(oldstr6207->len,0); } -memcpy(_SUB_IDEADDRECENT_STRING_F2->chr,oldstr6205->chr,oldstr6205->len); +memcpy(_SUB_IDEADDRECENT_STRING_F2->chr,oldstr6207->chr,oldstr6207->len); } qbs *_SUB_IDEADDRECENT_STRING_F=NULL; if (!_SUB_IDEADDRECENT_STRING_F)_SUB_IDEADDRECENT_STRING_F=qbs_new(0,0); @@ -22,15 +22,15 @@ if(_SUB_IDEADDRECENT_LONG_X==NULL){ _SUB_IDEADDRECENT_LONG_X=(int32*)mem_static_malloc(4); *_SUB_IDEADDRECENT_LONG_X=0; } -byte_element_struct *byte_element_6206=NULL; -if (!byte_element_6206){ -if ((mem_static_pointer+=12)tmp||_FUNC_REMOVEDOUBLESLASHES_STRING_F->fixed||_FUNC_REMOVEDOUBLESLASHES_STRING_F->readonly){ -oldstr6209=_FUNC_REMOVEDOUBLESLASHES_STRING_F; -if (oldstr6209->cmem_descriptor){ -_FUNC_REMOVEDOUBLESLASHES_STRING_F=qbs_new_cmem(oldstr6209->len,0); +oldstr6211=_FUNC_REMOVEDOUBLESLASHES_STRING_F; +if (oldstr6211->cmem_descriptor){ +_FUNC_REMOVEDOUBLESLASHES_STRING_F=qbs_new_cmem(oldstr6211->len,0); }else{ -_FUNC_REMOVEDOUBLESLASHES_STRING_F=qbs_new(oldstr6209->len,0); +_FUNC_REMOVEDOUBLESLASHES_STRING_F=qbs_new(oldstr6211->len,0); } -memcpy(_FUNC_REMOVEDOUBLESLASHES_STRING_F->chr,oldstr6209->chr,oldstr6209->len); +memcpy(_FUNC_REMOVEDOUBLESLASHES_STRING_F->chr,oldstr6211->chr,oldstr6211->len); } int32 *_FUNC_REMOVEDOUBLESLASHES_LONG_X=NULL; if(_FUNC_REMOVEDOUBLESLASHES_LONG_X==NULL){ diff --git a/internal/source/data256.txt b/internal/source/data256.txt index 2b6577520..b208b39d6 100644 --- a/internal/source/data256.txt +++ b/internal/source/data256.txt @@ -1,12 +1,12 @@ -qbs*oldstr6212=NULL; +qbs*oldstr6214=NULL; if(_SUB_IDEADDSEARCHED_STRING_S2->tmp||_SUB_IDEADDSEARCHED_STRING_S2->fixed||_SUB_IDEADDSEARCHED_STRING_S2->readonly){ -oldstr6212=_SUB_IDEADDSEARCHED_STRING_S2; -if (oldstr6212->cmem_descriptor){ -_SUB_IDEADDSEARCHED_STRING_S2=qbs_new_cmem(oldstr6212->len,0); +oldstr6214=_SUB_IDEADDSEARCHED_STRING_S2; +if (oldstr6214->cmem_descriptor){ +_SUB_IDEADDSEARCHED_STRING_S2=qbs_new_cmem(oldstr6214->len,0); }else{ -_SUB_IDEADDSEARCHED_STRING_S2=qbs_new(oldstr6212->len,0); +_SUB_IDEADDSEARCHED_STRING_S2=qbs_new(oldstr6214->len,0); } -memcpy(_SUB_IDEADDSEARCHED_STRING_S2->chr,oldstr6212->chr,oldstr6212->len); +memcpy(_SUB_IDEADDSEARCHED_STRING_S2->chr,oldstr6214->chr,oldstr6214->len); } qbs *_SUB_IDEADDSEARCHED_STRING_S=NULL; if (!_SUB_IDEADDSEARCHED_STRING_S)_SUB_IDEADDSEARCHED_STRING_S=qbs_new(0,0); @@ -22,15 +22,15 @@ if(_SUB_IDEADDSEARCHED_LONG_X==NULL){ _SUB_IDEADDSEARCHED_LONG_X=(int32*)mem_static_malloc(4); *_SUB_IDEADDSEARCHED_LONG_X=0; } -byte_element_struct *byte_element_6213=NULL; -if (!byte_element_6213){ -if ((mem_static_pointer+=12)tmp||_FUNC_IDEF1BOX_STRING_LNKS->fixed||_FUNC_IDEF1BOX_STRING_LNKS->readonly){ -oldstr6276=_FUNC_IDEF1BOX_STRING_LNKS; -if (oldstr6276->cmem_descriptor){ -_FUNC_IDEF1BOX_STRING_LNKS=qbs_new_cmem(oldstr6276->len,0); +oldstr6278=_FUNC_IDEF1BOX_STRING_LNKS; +if (oldstr6278->cmem_descriptor){ +_FUNC_IDEF1BOX_STRING_LNKS=qbs_new_cmem(oldstr6278->len,0); }else{ -_FUNC_IDEF1BOX_STRING_LNKS=qbs_new(oldstr6276->len,0); +_FUNC_IDEF1BOX_STRING_LNKS=qbs_new(oldstr6278->len,0); } -memcpy(_FUNC_IDEF1BOX_STRING_LNKS->chr,oldstr6276->chr,oldstr6276->len); +memcpy(_FUNC_IDEF1BOX_STRING_LNKS->chr,oldstr6278->chr,oldstr6278->len); } int32 *_FUNC_IDEF1BOX_LONG_FOCUS=NULL; if(_FUNC_IDEF1BOX_LONG_FOCUS==NULL){ @@ -42,12 +42,12 @@ if(_FUNC_IDEF1BOX_LONG_I==NULL){ _FUNC_IDEF1BOX_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_IDEF1BOX_LONG_I=0; } -int32 pass6277; -int32 pass6278; -int64 fornext_value6280; -int64 fornext_finalvalue6280; -int64 fornext_step6280; -uint8 fornext_step_negative6280; +int32 pass6279; +int32 pass6280; +int64 fornext_value6282; +int64 fornext_finalvalue6282; +int64 fornext_step6282; +uint8 fornext_step_negative6282; int32 *_FUNC_IDEF1BOX_LONG_F=NULL; if(_FUNC_IDEF1BOX_LONG_F==NULL){ _FUNC_IDEF1BOX_LONG_F=(int32*)mem_static_malloc(4); @@ -63,10 +63,10 @@ if(_FUNC_IDEF1BOX_LONG_CY==NULL){ _FUNC_IDEF1BOX_LONG_CY=(int32*)mem_static_malloc(4); *_FUNC_IDEF1BOX_LONG_CY=0; } -int64 fornext_value6283; -int64 fornext_finalvalue6283; -int64 fornext_step6283; -uint8 fornext_step_negative6283; +int64 fornext_value6285; +int64 fornext_finalvalue6285; +int64 fornext_step6285; +uint8 fornext_step_negative6285; int32 *_FUNC_IDEF1BOX_LONG_LASTFOCUS=NULL; if(_FUNC_IDEF1BOX_LONG_LASTFOCUS==NULL){ _FUNC_IDEF1BOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4); @@ -99,9 +99,9 @@ _FUNC_IDEF1BOX_LONG_OLDALT=(int32*)mem_static_malloc(4); } qbs *_FUNC_IDEF1BOX_STRING_ALTLETTER=NULL; if (!_FUNC_IDEF1BOX_STRING_ALTLETTER)_FUNC_IDEF1BOX_STRING_ALTLETTER=qbs_new(0,0); -byte_element_struct *byte_element_6285=NULL; -if (!byte_element_6285){ -if ((mem_static_pointer+=12)tmp||_SUB_UPDATEMENUHELPLINE_STRING_A->fixed||_SUB_UPDATEMENUHELPLINE_STRING_A->readonly){ -oldstr6311=_SUB_UPDATEMENUHELPLINE_STRING_A; -if (oldstr6311->cmem_descriptor){ -_SUB_UPDATEMENUHELPLINE_STRING_A=qbs_new_cmem(oldstr6311->len,0); +oldstr6313=_SUB_UPDATEMENUHELPLINE_STRING_A; +if (oldstr6313->cmem_descriptor){ +_SUB_UPDATEMENUHELPLINE_STRING_A=qbs_new_cmem(oldstr6313->len,0); }else{ -_SUB_UPDATEMENUHELPLINE_STRING_A=qbs_new(oldstr6311->len,0); +_SUB_UPDATEMENUHELPLINE_STRING_A=qbs_new(oldstr6313->len,0); } -memcpy(_SUB_UPDATEMENUHELPLINE_STRING_A->chr,oldstr6311->chr,oldstr6311->len); +memcpy(_SUB_UPDATEMENUHELPLINE_STRING_A->chr,oldstr6313->chr,oldstr6313->len); } -byte_element_struct *byte_element_6312=NULL; -if (!byte_element_6312){ -if ((mem_static_pointer+=12)tmp||_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->fixed||_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->readonly){ -oldstr6314=_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK; -if (oldstr6314->cmem_descriptor){ -_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK=qbs_new_cmem(oldstr6314->len,0); -}else{ -_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK=qbs_new(oldstr6314->len,0); -} -memcpy(_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->chr,oldstr6314->chr,oldstr6314->len); -} -qbs*oldstr6315=NULL; -if(_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->tmp||_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->fixed||_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->readonly){ -oldstr6315=_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK; -if (oldstr6315->cmem_descriptor){ -_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK=qbs_new_cmem(oldstr6315->len,0); -}else{ -_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK=qbs_new(oldstr6315->len,0); -} -memcpy(_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->chr,oldstr6315->chr,oldstr6315->len); -} qbs*oldstr6316=NULL; -if(_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->tmp||_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->fixed||_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->readonly){ -oldstr6316=_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK; +if(_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->tmp||_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->fixed||_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->readonly){ +oldstr6316=_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK; if (oldstr6316->cmem_descriptor){ -_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK=qbs_new_cmem(oldstr6316->len,0); +_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK=qbs_new_cmem(oldstr6316->len,0); }else{ -_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK=qbs_new(oldstr6316->len,0); +_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK=qbs_new(oldstr6316->len,0); } -memcpy(_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->chr,oldstr6316->chr,oldstr6316->len); +memcpy(_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK->chr,oldstr6316->chr,oldstr6316->len); +} +qbs*oldstr6317=NULL; +if(_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->tmp||_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->fixed||_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->readonly){ +oldstr6317=_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK; +if (oldstr6317->cmem_descriptor){ +_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK=qbs_new_cmem(oldstr6317->len,0); +}else{ +_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK=qbs_new(oldstr6317->len,0); +} +memcpy(_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK->chr,oldstr6317->chr,oldstr6317->len); +} +qbs*oldstr6318=NULL; +if(_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->tmp||_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->fixed||_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->readonly){ +oldstr6318=_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK; +if (oldstr6318->cmem_descriptor){ +_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK=qbs_new_cmem(oldstr6318->len,0); +}else{ +_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK=qbs_new(oldstr6318->len,0); +} +memcpy(_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK->chr,oldstr6318->chr,oldstr6318->len); } int32 *_FUNC_BINARYFORMATCHECK_LONG_FH=NULL; if(_FUNC_BINARYFORMATCHECK_LONG_FH==NULL){ @@ -45,18 +45,18 @@ if(_FUNC_BINARYFORMATCHECK_INTEGER_FORMAT==NULL){ _FUNC_BINARYFORMATCHECK_INTEGER_FORMAT=(int16*)mem_static_malloc(2); *_FUNC_BINARYFORMATCHECK_INTEGER_FORMAT=0; } -byte_element_struct *byte_element_6317=NULL; -if (!byte_element_6317){ -if ((mem_static_pointer+=12)tmp||_FUNC_ISOPERATOR_STRING_A2->fixed||_FUNC_ISOPERATOR_STRING_A2->readonly){ -oldstr2905=_FUNC_ISOPERATOR_STRING_A2; -if (oldstr2905->cmem_descriptor){ -_FUNC_ISOPERATOR_STRING_A2=qbs_new_cmem(oldstr2905->len,0); +oldstr2907=_FUNC_ISOPERATOR_STRING_A2; +if (oldstr2907->cmem_descriptor){ +_FUNC_ISOPERATOR_STRING_A2=qbs_new_cmem(oldstr2907->len,0); }else{ -_FUNC_ISOPERATOR_STRING_A2=qbs_new(oldstr2905->len,0); +_FUNC_ISOPERATOR_STRING_A2=qbs_new(oldstr2907->len,0); } -memcpy(_FUNC_ISOPERATOR_STRING_A2->chr,oldstr2905->chr,oldstr2905->len); +memcpy(_FUNC_ISOPERATOR_STRING_A2->chr,oldstr2907->chr,oldstr2907->len); } qbs *_FUNC_ISOPERATOR_STRING_A=NULL; if (!_FUNC_ISOPERATOR_STRING_A)_FUNC_ISOPERATOR_STRING_A=qbs_new(0,0); diff --git a/internal/source/data270.txt b/internal/source/data270.txt index 94cc41dbc..a31a2896c 100644 --- a/internal/source/data270.txt +++ b/internal/source/data270.txt @@ -1,14 +1,14 @@ qbs *_FUNC_REMOVESYMBOL2_STRING_REMOVESYMBOL2=NULL; if (!_FUNC_REMOVESYMBOL2_STRING_REMOVESYMBOL2)_FUNC_REMOVESYMBOL2_STRING_REMOVESYMBOL2=qbs_new(0,0); -qbs*oldstr6334=NULL; +qbs*oldstr6336=NULL; if(_FUNC_REMOVESYMBOL2_STRING_VARNAME->tmp||_FUNC_REMOVESYMBOL2_STRING_VARNAME->fixed||_FUNC_REMOVESYMBOL2_STRING_VARNAME->readonly){ -oldstr6334=_FUNC_REMOVESYMBOL2_STRING_VARNAME; -if (oldstr6334->cmem_descriptor){ -_FUNC_REMOVESYMBOL2_STRING_VARNAME=qbs_new_cmem(oldstr6334->len,0); +oldstr6336=_FUNC_REMOVESYMBOL2_STRING_VARNAME; +if (oldstr6336->cmem_descriptor){ +_FUNC_REMOVESYMBOL2_STRING_VARNAME=qbs_new_cmem(oldstr6336->len,0); }else{ -_FUNC_REMOVESYMBOL2_STRING_VARNAME=qbs_new(oldstr6334->len,0); +_FUNC_REMOVESYMBOL2_STRING_VARNAME=qbs_new(oldstr6336->len,0); } -memcpy(_FUNC_REMOVESYMBOL2_STRING_VARNAME->chr,oldstr6334->chr,oldstr6334->len); +memcpy(_FUNC_REMOVESYMBOL2_STRING_VARNAME->chr,oldstr6336->chr,oldstr6336->len); } int32 *_FUNC_REMOVESYMBOL2_LONG_I=NULL; if(_FUNC_REMOVESYMBOL2_LONG_I==NULL){ diff --git a/internal/source/data271.txt b/internal/source/data271.txt index a33de9003..e8569ffc2 100644 --- a/internal/source/data271.txt +++ b/internal/source/data271.txt @@ -1,12 +1,12 @@ -qbs*oldstr6335=NULL; +qbs*oldstr6337=NULL; if(_SUB_CLEANSUBNAME_STRING_N->tmp||_SUB_CLEANSUBNAME_STRING_N->fixed||_SUB_CLEANSUBNAME_STRING_N->readonly){ -oldstr6335=_SUB_CLEANSUBNAME_STRING_N; -if (oldstr6335->cmem_descriptor){ -_SUB_CLEANSUBNAME_STRING_N=qbs_new_cmem(oldstr6335->len,0); +oldstr6337=_SUB_CLEANSUBNAME_STRING_N; +if (oldstr6337->cmem_descriptor){ +_SUB_CLEANSUBNAME_STRING_N=qbs_new_cmem(oldstr6337->len,0); }else{ -_SUB_CLEANSUBNAME_STRING_N=qbs_new(oldstr6335->len,0); +_SUB_CLEANSUBNAME_STRING_N=qbs_new(oldstr6337->len,0); } -memcpy(_SUB_CLEANSUBNAME_STRING_N->chr,oldstr6335->chr,oldstr6335->len); +memcpy(_SUB_CLEANSUBNAME_STRING_N->chr,oldstr6337->chr,oldstr6337->len); } int32 *_SUB_CLEANSUBNAME_LONG_X=NULL; if(_SUB_CLEANSUBNAME_LONG_X==NULL){ diff --git a/internal/source/data272.txt b/internal/source/data272.txt index 700cbc3b6..e0c090996 100644 --- a/internal/source/data272.txt +++ b/internal/source/data272.txt @@ -1,4 +1,4 @@ -int64 fornext_value6337; -int64 fornext_finalvalue6337; -int64 fornext_step6337; -uint8 fornext_step_negative6337; +int64 fornext_value6339; +int64 fornext_finalvalue6339; +int64 fornext_step6339; +uint8 fornext_step_negative6339; diff --git a/internal/source/data273.txt b/internal/source/data273.txt index f4a665f7e..d9012a601 100644 --- a/internal/source/data273.txt +++ b/internal/source/data273.txt @@ -1,10 +1,10 @@ -qbs*oldstr6338=NULL; +qbs*oldstr6340=NULL; if(_SUB_SETSTATUSMESSAGE_STRING_TEXT->tmp||_SUB_SETSTATUSMESSAGE_STRING_TEXT->fixed||_SUB_SETSTATUSMESSAGE_STRING_TEXT->readonly){ -oldstr6338=_SUB_SETSTATUSMESSAGE_STRING_TEXT; -if (oldstr6338->cmem_descriptor){ -_SUB_SETSTATUSMESSAGE_STRING_TEXT=qbs_new_cmem(oldstr6338->len,0); +oldstr6340=_SUB_SETSTATUSMESSAGE_STRING_TEXT; +if (oldstr6340->cmem_descriptor){ +_SUB_SETSTATUSMESSAGE_STRING_TEXT=qbs_new_cmem(oldstr6340->len,0); }else{ -_SUB_SETSTATUSMESSAGE_STRING_TEXT=qbs_new(oldstr6338->len,0); +_SUB_SETSTATUSMESSAGE_STRING_TEXT=qbs_new(oldstr6340->len,0); } -memcpy(_SUB_SETSTATUSMESSAGE_STRING_TEXT->chr,oldstr6338->chr,oldstr6338->len); +memcpy(_SUB_SETSTATUSMESSAGE_STRING_TEXT->chr,oldstr6340->chr,oldstr6340->len); } diff --git a/internal/source/data274.txt b/internal/source/data274.txt index c2480f11b..2b2a86572 100644 --- a/internal/source/data274.txt +++ b/internal/source/data274.txt @@ -7,9 +7,9 @@ if(_FUNC_GETWORDATCURSOR_LONG_X==NULL){ _FUNC_GETWORDATCURSOR_LONG_X=(int32*)mem_static_malloc(4); *_FUNC_GETWORDATCURSOR_LONG_X=0; } -byte_element_struct *byte_element_6339=NULL; -if (!byte_element_6339){ -if ((mem_static_pointer+=12)tmp||_SUB_INSERTATCURSOR_STRING_TEMPK->fixed||_SUB_INSERTATCURSOR_STRING_TEMPK->readonly){ -oldstr6359=_SUB_INSERTATCURSOR_STRING_TEMPK; -if (oldstr6359->cmem_descriptor){ -_SUB_INSERTATCURSOR_STRING_TEMPK=qbs_new_cmem(oldstr6359->len,0); +oldstr6361=_SUB_INSERTATCURSOR_STRING_TEMPK; +if (oldstr6361->cmem_descriptor){ +_SUB_INSERTATCURSOR_STRING_TEMPK=qbs_new_cmem(oldstr6361->len,0); }else{ -_SUB_INSERTATCURSOR_STRING_TEMPK=qbs_new(oldstr6359->len,0); +_SUB_INSERTATCURSOR_STRING_TEMPK=qbs_new(oldstr6361->len,0); } -memcpy(_SUB_INSERTATCURSOR_STRING_TEMPK->chr,oldstr6359->chr,oldstr6359->len); +memcpy(_SUB_INSERTATCURSOR_STRING_TEMPK->chr,oldstr6361->chr,oldstr6361->len); } qbs *_SUB_INSERTATCURSOR_STRING_A=NULL; if (!_SUB_INSERTATCURSOR_STRING_A)_SUB_INSERTATCURSOR_STRING_A=qbs_new(0,0); -byte_element_struct *byte_element_6360=NULL; -if (!byte_element_6360){ -if ((mem_static_pointer+=12)tmp||_FUNC_FINDHELPTOPIC_STRING_TOPIC->fixed||_FUNC_FINDHELPTOPIC_STRING_TOPIC->readonly){ -oldstr6364=_FUNC_FINDHELPTOPIC_STRING_TOPIC; -if (oldstr6364->cmem_descriptor){ -_FUNC_FINDHELPTOPIC_STRING_TOPIC=qbs_new_cmem(oldstr6364->len,0); +oldstr6366=_FUNC_FINDHELPTOPIC_STRING_TOPIC; +if (oldstr6366->cmem_descriptor){ +_FUNC_FINDHELPTOPIC_STRING_TOPIC=qbs_new_cmem(oldstr6366->len,0); }else{ -_FUNC_FINDHELPTOPIC_STRING_TOPIC=qbs_new(oldstr6364->len,0); +_FUNC_FINDHELPTOPIC_STRING_TOPIC=qbs_new(oldstr6366->len,0); } -memcpy(_FUNC_FINDHELPTOPIC_STRING_TOPIC->chr,oldstr6364->chr,oldstr6364->len); +memcpy(_FUNC_FINDHELPTOPIC_STRING_TOPIC->chr,oldstr6366->chr,oldstr6366->len); } qbs *_FUNC_FINDHELPTOPIC_STRING_LNKS=NULL; if (!_FUNC_FINDHELPTOPIC_STRING_LNKS)_FUNC_FINDHELPTOPIC_STRING_LNKS=qbs_new(0,0); @@ -44,7 +44,7 @@ qbs *_FUNC_FINDHELPTOPIC_STRING_L1=NULL; if (!_FUNC_FINDHELPTOPIC_STRING_L1)_FUNC_FINDHELPTOPIC_STRING_L1=qbs_new(0,0); qbs *_FUNC_FINDHELPTOPIC_STRING_L2=NULL; if (!_FUNC_FINDHELPTOPIC_STRING_L2)_FUNC_FINDHELPTOPIC_STRING_L2=qbs_new(0,0); -byte_element_struct *byte_element_6367=NULL; -if (!byte_element_6367){ -if ((mem_static_pointer+=12)tmp||_FUNC_ISNUMBER_STRING___A->fixed||_FUNC_ISNUMBER_STRING___A->readonly){ -oldstr6368=_FUNC_ISNUMBER_STRING___A; -if (oldstr6368->cmem_descriptor){ -_FUNC_ISNUMBER_STRING___A=qbs_new_cmem(oldstr6368->len,0); +oldstr6370=_FUNC_ISNUMBER_STRING___A; +if (oldstr6370->cmem_descriptor){ +_FUNC_ISNUMBER_STRING___A=qbs_new_cmem(oldstr6370->len,0); }else{ -_FUNC_ISNUMBER_STRING___A=qbs_new(oldstr6368->len,0); +_FUNC_ISNUMBER_STRING___A=qbs_new(oldstr6370->len,0); } -memcpy(_FUNC_ISNUMBER_STRING___A->chr,oldstr6368->chr,oldstr6368->len); +memcpy(_FUNC_ISNUMBER_STRING___A->chr,oldstr6370->chr,oldstr6370->len); } qbs *_FUNC_ISNUMBER_STRING_A=NULL; if (!_FUNC_ISNUMBER_STRING_A)_FUNC_ISNUMBER_STRING_A=qbs_new(0,0); -byte_element_struct *byte_element_6369=NULL; -if (!byte_element_6369){ -if ((mem_static_pointer+=12)tmp||_FUNC_ISUINTEGER_STRING_I->fixed||_FUNC_ISUINTEGER_STRING_I->readonly){ -oldstr2906=_FUNC_ISUINTEGER_STRING_I; -if (oldstr2906->cmem_descriptor){ -_FUNC_ISUINTEGER_STRING_I=qbs_new_cmem(oldstr2906->len,0); +oldstr2908=_FUNC_ISUINTEGER_STRING_I; +if (oldstr2908->cmem_descriptor){ +_FUNC_ISUINTEGER_STRING_I=qbs_new_cmem(oldstr2908->len,0); }else{ -_FUNC_ISUINTEGER_STRING_I=qbs_new(oldstr2906->len,0); +_FUNC_ISUINTEGER_STRING_I=qbs_new(oldstr2908->len,0); } -memcpy(_FUNC_ISUINTEGER_STRING_I->chr,oldstr2906->chr,oldstr2906->len); +memcpy(_FUNC_ISUINTEGER_STRING_I->chr,oldstr2908->chr,oldstr2908->len); } -byte_element_struct *byte_element_2907=NULL; -if (!byte_element_2907){ -if ((mem_static_pointer+=12)tmp||_FUNC_BACK2BACKNAME_STRING_A->fixed||_FUNC_BACK2BACKNAME_STRING_A->readonly){ -oldstr6375=_FUNC_BACK2BACKNAME_STRING_A; -if (oldstr6375->cmem_descriptor){ -_FUNC_BACK2BACKNAME_STRING_A=qbs_new_cmem(oldstr6375->len,0); +oldstr6377=_FUNC_BACK2BACKNAME_STRING_A; +if (oldstr6377->cmem_descriptor){ +_FUNC_BACK2BACKNAME_STRING_A=qbs_new_cmem(oldstr6377->len,0); }else{ -_FUNC_BACK2BACKNAME_STRING_A=qbs_new(oldstr6375->len,0); +_FUNC_BACK2BACKNAME_STRING_A=qbs_new(oldstr6377->len,0); } -memcpy(_FUNC_BACK2BACKNAME_STRING_A->chr,oldstr6375->chr,oldstr6375->len); +memcpy(_FUNC_BACK2BACKNAME_STRING_A->chr,oldstr6377->chr,oldstr6377->len); } diff --git a/internal/source/data281.txt b/internal/source/data281.txt index 6f1f417d5..37d635bdc 100644 --- a/internal/source/data281.txt +++ b/internal/source/data281.txt @@ -1,14 +1,14 @@ qbs *_FUNC_WIKI_STRING_WIKI=NULL; if (!_FUNC_WIKI_STRING_WIKI)_FUNC_WIKI_STRING_WIKI=qbs_new(0,0); -qbs*oldstr6376=NULL; +qbs*oldstr6378=NULL; if(_FUNC_WIKI_STRING_PAGENAME->tmp||_FUNC_WIKI_STRING_PAGENAME->fixed||_FUNC_WIKI_STRING_PAGENAME->readonly){ -oldstr6376=_FUNC_WIKI_STRING_PAGENAME; -if (oldstr6376->cmem_descriptor){ -_FUNC_WIKI_STRING_PAGENAME=qbs_new_cmem(oldstr6376->len,0); +oldstr6378=_FUNC_WIKI_STRING_PAGENAME; +if (oldstr6378->cmem_descriptor){ +_FUNC_WIKI_STRING_PAGENAME=qbs_new_cmem(oldstr6378->len,0); }else{ -_FUNC_WIKI_STRING_PAGENAME=qbs_new(oldstr6376->len,0); +_FUNC_WIKI_STRING_PAGENAME=qbs_new(oldstr6378->len,0); } -memcpy(_FUNC_WIKI_STRING_PAGENAME->chr,oldstr6376->chr,oldstr6376->len); +memcpy(_FUNC_WIKI_STRING_PAGENAME->chr,oldstr6378->chr,oldstr6378->len); } qbs *_FUNC_WIKI_STRING_PAGENAME2=NULL; if (!_FUNC_WIKI_STRING_PAGENAME2)_FUNC_WIKI_STRING_PAGENAME2=qbs_new(0,0); @@ -17,13 +17,13 @@ if(_FUNC_WIKI_LONG_I==NULL){ _FUNC_WIKI_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_WIKI_LONG_I=0; } -int64 fornext_value6378; -int64 fornext_finalvalue6378; -int64 fornext_step6378; -uint8 fornext_step_negative6378; -byte_element_struct *byte_element_6379=NULL; -if (!byte_element_6379){ -if ((mem_static_pointer+=12)tmp||_SUB_HELP_ADDTXT_STRING_T->fixed||_SUB_HELP_ADDTXT_STRING_T->readonly){ -oldstr6391=_SUB_HELP_ADDTXT_STRING_T; -if (oldstr6391->cmem_descriptor){ -_SUB_HELP_ADDTXT_STRING_T=qbs_new_cmem(oldstr6391->len,0); +oldstr6393=_SUB_HELP_ADDTXT_STRING_T; +if (oldstr6393->cmem_descriptor){ +_SUB_HELP_ADDTXT_STRING_T=qbs_new_cmem(oldstr6393->len,0); }else{ -_SUB_HELP_ADDTXT_STRING_T=qbs_new(oldstr6391->len,0); +_SUB_HELP_ADDTXT_STRING_T=qbs_new(oldstr6393->len,0); } -memcpy(_SUB_HELP_ADDTXT_STRING_T->chr,oldstr6391->chr,oldstr6391->len); +memcpy(_SUB_HELP_ADDTXT_STRING_T->chr,oldstr6393->chr,oldstr6393->len); } int32 *_SUB_HELP_ADDTXT_LONG_I=NULL; if(_SUB_HELP_ADDTXT_LONG_I==NULL){ _SUB_HELP_ADDTXT_LONG_I=(int32*)mem_static_malloc(4); *_SUB_HELP_ADDTXT_LONG_I=0; } -int64 fornext_value6393; -int64 fornext_finalvalue6393; -int64 fornext_step6393; -uint8 fornext_step_negative6393; -byte_element_struct *byte_element_6394=NULL; -if (!byte_element_6394){ -if ((mem_static_pointer+=12)tmp||_SUB_WIKIPARSE_STRING_A->fixed||_SUB_WIKIPARSE_STRING_A->readonly){ -oldstr6407=_SUB_WIKIPARSE_STRING_A; -if (oldstr6407->cmem_descriptor){ -_SUB_WIKIPARSE_STRING_A=qbs_new_cmem(oldstr6407->len,0); +oldstr6409=_SUB_WIKIPARSE_STRING_A; +if (oldstr6409->cmem_descriptor){ +_SUB_WIKIPARSE_STRING_A=qbs_new_cmem(oldstr6409->len,0); }else{ -_SUB_WIKIPARSE_STRING_A=qbs_new(oldstr6407->len,0); +_SUB_WIKIPARSE_STRING_A=qbs_new(oldstr6409->len,0); } -memcpy(_SUB_WIKIPARSE_STRING_A->chr,oldstr6407->chr,oldstr6407->len); +memcpy(_SUB_WIKIPARSE_STRING_A->chr,oldstr6409->chr,oldstr6409->len); } int32 *_SUB_WIKIPARSE_LONG_LINK=NULL; if(_SUB_WIKIPARSE_LONG_LINK==NULL){ @@ -67,21 +67,19 @@ _SUB_WIKIPARSE_LONG_I=(int32*)mem_static_malloc(4); } qbs *_SUB_WIKIPARSE_STRING_T=NULL; if (!_SUB_WIKIPARSE_STRING_T)_SUB_WIKIPARSE_STRING_T=qbs_new(0,0); -byte_element_struct *byte_element_6408=NULL; -if (!byte_element_6408){ -if ((mem_static_pointer+=12)tmp||_FUNC_WIKISAFENAME_STRING_PAGE->fixed||_FUNC_WIKISAFENAME_STRING_PAGE->readonly){ -oldstr6637=_FUNC_WIKISAFENAME_STRING_PAGE; -if (oldstr6637->cmem_descriptor){ -_FUNC_WIKISAFENAME_STRING_PAGE=qbs_new_cmem(oldstr6637->len,0); +oldstr6639=_FUNC_WIKISAFENAME_STRING_PAGE; +if (oldstr6639->cmem_descriptor){ +_FUNC_WIKISAFENAME_STRING_PAGE=qbs_new_cmem(oldstr6639->len,0); }else{ -_FUNC_WIKISAFENAME_STRING_PAGE=qbs_new(oldstr6637->len,0); +_FUNC_WIKISAFENAME_STRING_PAGE=qbs_new(oldstr6639->len,0); } -memcpy(_FUNC_WIKISAFENAME_STRING_PAGE->chr,oldstr6637->chr,oldstr6637->len); +memcpy(_FUNC_WIKISAFENAME_STRING_PAGE->chr,oldstr6639->chr,oldstr6639->len); } qbs *_FUNC_WIKISAFENAME_STRING_EXT=NULL; if (!_FUNC_WIKISAFENAME_STRING_EXT)_FUNC_WIKISAFENAME_STRING_EXT=qbs_new(0,0); -byte_element_struct *byte_element_6638=NULL; -if (!byte_element_6638){ -if ((mem_static_pointer+=12)tmp||_FUNC_ISVALIDVARIABLE_STRING_A->fixed||_FUNC_ISVALIDVARIABLE_STRING_A->readonly){ -oldstr2912=_FUNC_ISVALIDVARIABLE_STRING_A; -if (oldstr2912->cmem_descriptor){ -_FUNC_ISVALIDVARIABLE_STRING_A=qbs_new_cmem(oldstr2912->len,0); +oldstr2914=_FUNC_ISVALIDVARIABLE_STRING_A; +if (oldstr2914->cmem_descriptor){ +_FUNC_ISVALIDVARIABLE_STRING_A=qbs_new_cmem(oldstr2914->len,0); }else{ -_FUNC_ISVALIDVARIABLE_STRING_A=qbs_new(oldstr2912->len,0); +_FUNC_ISVALIDVARIABLE_STRING_A=qbs_new(oldstr2914->len,0); } -memcpy(_FUNC_ISVALIDVARIABLE_STRING_A->chr,oldstr2912->chr,oldstr2912->len); +memcpy(_FUNC_ISVALIDVARIABLE_STRING_A->chr,oldstr2914->chr,oldstr2914->len); } int32 *_FUNC_ISVALIDVARIABLE_LONG_I=NULL; if(_FUNC_ISVALIDVARIABLE_LONG_I==NULL){ _FUNC_ISVALIDVARIABLE_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_ISVALIDVARIABLE_LONG_I=0; } -int64 fornext_value2914; -int64 fornext_finalvalue2914; -int64 fornext_step2914; -uint8 fornext_step_negative2914; -byte_element_struct *byte_element_2915=NULL; -if (!byte_element_2915){ -if ((mem_static_pointer+=12)tmp||_FUNC_WIKIDLPAGE_STRING_URL->fixed||_FUNC_WIKIDLPAGE_STRING_URL->readonly){ -oldstr6643=_FUNC_WIKIDLPAGE_STRING_URL; -if (oldstr6643->cmem_descriptor){ -_FUNC_WIKIDLPAGE_STRING_URL=qbs_new_cmem(oldstr6643->len,0); +oldstr6645=_FUNC_WIKIDLPAGE_STRING_URL; +if (oldstr6645->cmem_descriptor){ +_FUNC_WIKIDLPAGE_STRING_URL=qbs_new_cmem(oldstr6645->len,0); }else{ -_FUNC_WIKIDLPAGE_STRING_URL=qbs_new(oldstr6643->len,0); +_FUNC_WIKIDLPAGE_STRING_URL=qbs_new(oldstr6645->len,0); } -memcpy(_FUNC_WIKIDLPAGE_STRING_URL->chr,oldstr6643->chr,oldstr6643->len); +memcpy(_FUNC_WIKIDLPAGE_STRING_URL->chr,oldstr6645->chr,oldstr6645->len); } qbs *_FUNC_WIKIDLPAGE_STRING_WIK=NULL; if (!_FUNC_WIKIDLPAGE_STRING_WIK)_FUNC_WIKIDLPAGE_STRING_WIK=qbs_new(0,0); @@ -31,9 +31,9 @@ _FUNC_WIKIDLPAGE_DOUBLE_ST=(double*)mem_static_malloc(8); } qbs *_FUNC_WIKIDLPAGE_STRING_REC=NULL; if (!_FUNC_WIKIDLPAGE_STRING_REC)_FUNC_WIKIDLPAGE_STRING_REC=qbs_new(0,0); -byte_element_struct *byte_element_6645=NULL; -if (!byte_element_6645){ -if ((mem_static_pointer+=12)tmp||_FUNC_WIKILOOKAHEAD_STRING_A->fixed||_FUNC_WIKILOOKAHEAD_STRING_A->readonly){ -oldstr6646=_FUNC_WIKILOOKAHEAD_STRING_A; -if (oldstr6646->cmem_descriptor){ -_FUNC_WIKILOOKAHEAD_STRING_A=qbs_new_cmem(oldstr6646->len,0); +oldstr6648=_FUNC_WIKILOOKAHEAD_STRING_A; +if (oldstr6648->cmem_descriptor){ +_FUNC_WIKILOOKAHEAD_STRING_A=qbs_new_cmem(oldstr6648->len,0); }else{ -_FUNC_WIKILOOKAHEAD_STRING_A=qbs_new(oldstr6646->len,0); +_FUNC_WIKILOOKAHEAD_STRING_A=qbs_new(oldstr6648->len,0); } -memcpy(_FUNC_WIKILOOKAHEAD_STRING_A->chr,oldstr6646->chr,oldstr6646->len); +memcpy(_FUNC_WIKILOOKAHEAD_STRING_A->chr,oldstr6648->chr,oldstr6648->len); } -qbs*oldstr6647=NULL; +qbs*oldstr6649=NULL; if(_FUNC_WIKILOOKAHEAD_STRING_TOKEN->tmp||_FUNC_WIKILOOKAHEAD_STRING_TOKEN->fixed||_FUNC_WIKILOOKAHEAD_STRING_TOKEN->readonly){ -oldstr6647=_FUNC_WIKILOOKAHEAD_STRING_TOKEN; -if (oldstr6647->cmem_descriptor){ -_FUNC_WIKILOOKAHEAD_STRING_TOKEN=qbs_new_cmem(oldstr6647->len,0); +oldstr6649=_FUNC_WIKILOOKAHEAD_STRING_TOKEN; +if (oldstr6649->cmem_descriptor){ +_FUNC_WIKILOOKAHEAD_STRING_TOKEN=qbs_new_cmem(oldstr6649->len,0); }else{ -_FUNC_WIKILOOKAHEAD_STRING_TOKEN=qbs_new(oldstr6647->len,0); +_FUNC_WIKILOOKAHEAD_STRING_TOKEN=qbs_new(oldstr6649->len,0); } -memcpy(_FUNC_WIKILOOKAHEAD_STRING_TOKEN->chr,oldstr6647->chr,oldstr6647->len); +memcpy(_FUNC_WIKILOOKAHEAD_STRING_TOKEN->chr,oldstr6649->chr,oldstr6649->len); } -byte_element_struct *byte_element_6648=NULL; -if (!byte_element_6648){ -if ((mem_static_pointer+=12)tmp||_FUNC_WIKIBUILDCINDENT_STRING_A->fixed||_FUNC_WIKIBUILDCINDENT_STRING_A->readonly){ -oldstr6649=_FUNC_WIKIBUILDCINDENT_STRING_A; -if (oldstr6649->cmem_descriptor){ -_FUNC_WIKIBUILDCINDENT_STRING_A=qbs_new_cmem(oldstr6649->len,0); +oldstr6651=_FUNC_WIKIBUILDCINDENT_STRING_A; +if (oldstr6651->cmem_descriptor){ +_FUNC_WIKIBUILDCINDENT_STRING_A=qbs_new_cmem(oldstr6651->len,0); }else{ -_FUNC_WIKIBUILDCINDENT_STRING_A=qbs_new(oldstr6649->len,0); +_FUNC_WIKIBUILDCINDENT_STRING_A=qbs_new(oldstr6651->len,0); } -memcpy(_FUNC_WIKIBUILDCINDENT_STRING_A->chr,oldstr6649->chr,oldstr6649->len); +memcpy(_FUNC_WIKIBUILDCINDENT_STRING_A->chr,oldstr6651->chr,oldstr6651->len); } qbs *_FUNC_WIKIBUILDCINDENT_STRING_ORG=NULL; if (!_FUNC_WIKIBUILDCINDENT_STRING_ORG)_FUNC_WIKIBUILDCINDENT_STRING_ORG=qbs_new(0,0); @@ -19,131 +19,131 @@ if(_FUNC_WIKIBUILDCINDENT_LONG_I==NULL){ _FUNC_WIKIBUILDCINDENT_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_WIKIBUILDCINDENT_LONG_I=0; } -int64 fornext_value6651; -int64 fornext_finalvalue6651; -int64 fornext_step6651; -uint8 fornext_step_negative6651; -byte_element_struct *byte_element_6652=NULL; -if (!byte_element_6652){ -if ((mem_static_pointer+=12)tmp||_SUB_PRINTWRAPSTATUS_STRING___TEXT->fixed||_SUB_PRINTWRAPSTATUS_STRING___TEXT->readonly){ -oldstr6696=_SUB_PRINTWRAPSTATUS_STRING___TEXT; -if (oldstr6696->cmem_descriptor){ -_SUB_PRINTWRAPSTATUS_STRING___TEXT=qbs_new_cmem(oldstr6696->len,0); +oldstr6698=_SUB_PRINTWRAPSTATUS_STRING___TEXT; +if (oldstr6698->cmem_descriptor){ +_SUB_PRINTWRAPSTATUS_STRING___TEXT=qbs_new_cmem(oldstr6698->len,0); }else{ -_SUB_PRINTWRAPSTATUS_STRING___TEXT=qbs_new(oldstr6696->len,0); +_SUB_PRINTWRAPSTATUS_STRING___TEXT=qbs_new(oldstr6698->len,0); } -memcpy(_SUB_PRINTWRAPSTATUS_STRING___TEXT->chr,oldstr6696->chr,oldstr6696->len); +memcpy(_SUB_PRINTWRAPSTATUS_STRING___TEXT->chr,oldstr6698->chr,oldstr6698->len); } qbs *_SUB_PRINTWRAPSTATUS_STRING_TEXT=NULL; if (!_SUB_PRINTWRAPSTATUS_STRING_TEXT)_SUB_PRINTWRAPSTATUS_STRING_TEXT=qbs_new(0,0); @@ -37,21 +37,21 @@ if(_SUB_PRINTWRAPSTATUS_INTEGER_CHANGECOLORAFTER==NULL){ _SUB_PRINTWRAPSTATUS_INTEGER_CHANGECOLORAFTER=(int16*)mem_static_malloc(2); *_SUB_PRINTWRAPSTATUS_INTEGER_CHANGECOLORAFTER=0; } -byte_element_struct *byte_element_6698=NULL; -if (!byte_element_6698){ -if ((mem_static_pointer+=12)tmp||_FUNC_GETBYTES_STRING___VALUE->fixed||_FUNC_GETBYTES_STRING___VALUE->readonly){ -oldstr6704=_FUNC_GETBYTES_STRING___VALUE; -if (oldstr6704->cmem_descriptor){ -_FUNC_GETBYTES_STRING___VALUE=qbs_new_cmem(oldstr6704->len,0); +oldstr6706=_FUNC_GETBYTES_STRING___VALUE; +if (oldstr6706->cmem_descriptor){ +_FUNC_GETBYTES_STRING___VALUE=qbs_new_cmem(oldstr6706->len,0); }else{ -_FUNC_GETBYTES_STRING___VALUE=qbs_new(oldstr6704->len,0); +_FUNC_GETBYTES_STRING___VALUE=qbs_new(oldstr6706->len,0); } -memcpy(_FUNC_GETBYTES_STRING___VALUE->chr,oldstr6704->chr,oldstr6704->len); +memcpy(_FUNC_GETBYTES_STRING___VALUE->chr,oldstr6706->chr,oldstr6706->len); } qbs *_FUNC_GETBYTES_STRING_VALUE=NULL; if (!_FUNC_GETBYTES_STRING_VALUE)_FUNC_GETBYTES_STRING_VALUE=qbs_new(0,0); diff --git a/internal/source/data296.txt b/internal/source/data296.txt index c80df91b1..74d90a7ce 100644 --- a/internal/source/data296.txt +++ b/internal/source/data296.txt @@ -1,14 +1,14 @@ qbs *_FUNC_OPENFILE_STRING_OPENFILE=NULL; if (!_FUNC_OPENFILE_STRING_OPENFILE)_FUNC_OPENFILE_STRING_OPENFILE=qbs_new(0,0); -qbs*oldstr6707=NULL; +qbs*oldstr6709=NULL; if(_FUNC_OPENFILE_STRING_IDEOPENFILE->tmp||_FUNC_OPENFILE_STRING_IDEOPENFILE->fixed||_FUNC_OPENFILE_STRING_IDEOPENFILE->readonly){ -oldstr6707=_FUNC_OPENFILE_STRING_IDEOPENFILE; -if (oldstr6707->cmem_descriptor){ -_FUNC_OPENFILE_STRING_IDEOPENFILE=qbs_new_cmem(oldstr6707->len,0); +oldstr6709=_FUNC_OPENFILE_STRING_IDEOPENFILE; +if (oldstr6709->cmem_descriptor){ +_FUNC_OPENFILE_STRING_IDEOPENFILE=qbs_new_cmem(oldstr6709->len,0); }else{ -_FUNC_OPENFILE_STRING_IDEOPENFILE=qbs_new(oldstr6707->len,0); +_FUNC_OPENFILE_STRING_IDEOPENFILE=qbs_new(oldstr6709->len,0); } -memcpy(_FUNC_OPENFILE_STRING_IDEOPENFILE->chr,oldstr6707->chr,oldstr6707->len); +memcpy(_FUNC_OPENFILE_STRING_IDEOPENFILE->chr,oldstr6709->chr,oldstr6709->len); } qbs *_FUNC_OPENFILE_STRING_F=NULL; if (!_FUNC_OPENFILE_STRING_F)_FUNC_OPENFILE_STRING_F=qbs_new(0,0); @@ -19,18 +19,18 @@ if(_FUNC_OPENFILE_LONG_ALLFILES==NULL){ _FUNC_OPENFILE_LONG_ALLFILES=(int32*)mem_static_malloc(4); *_FUNC_OPENFILE_LONG_ALLFILES=0; } -byte_element_struct *byte_element_6708=NULL; -if (!byte_element_6708){ -if ((mem_static_pointer+=12)tmp||_SUB_EXPORTCODEAS_STRING_DOCFORMAT->fixed||_SUB_EXPORTCODEAS_STRING_DOCFORMAT->readonly){ -oldstr6712=_SUB_EXPORTCODEAS_STRING_DOCFORMAT; -if (oldstr6712->cmem_descriptor){ -_SUB_EXPORTCODEAS_STRING_DOCFORMAT=qbs_new_cmem(oldstr6712->len,0); +oldstr6714=_SUB_EXPORTCODEAS_STRING_DOCFORMAT; +if (oldstr6714->cmem_descriptor){ +_SUB_EXPORTCODEAS_STRING_DOCFORMAT=qbs_new_cmem(oldstr6714->len,0); }else{ -_SUB_EXPORTCODEAS_STRING_DOCFORMAT=qbs_new(oldstr6712->len,0); +_SUB_EXPORTCODEAS_STRING_DOCFORMAT=qbs_new(oldstr6714->len,0); } -memcpy(_SUB_EXPORTCODEAS_STRING_DOCFORMAT->chr,oldstr6712->chr,oldstr6712->len); +memcpy(_SUB_EXPORTCODEAS_STRING_DOCFORMAT->chr,oldstr6714->chr,oldstr6714->len); } qbs *_SUB_EXPORTCODEAS_STRING_PNAM=NULL; if (!_SUB_EXPORTCODEAS_STRING_PNAM)_SUB_EXPORTCODEAS_STRING_PNAM=qbs_new(0,0); -static qbs *sc_6713=qbs_new(0,0); +static qbs *sc_6715=qbs_new(0,0); qbs *_SUB_EXPORTCODEAS_STRING_EXT=NULL; if (!_SUB_EXPORTCODEAS_STRING_EXT)_SUB_EXPORTCODEAS_STRING_EXT=qbs_new(0,0); qbs *_SUB_EXPORTCODEAS_STRING_CEOL=NULL; @@ -22,37 +22,37 @@ if(_SUB_EXPORTCODEAS_LONG_I==NULL){ _SUB_EXPORTCODEAS_LONG_I=(int32*)mem_static_malloc(4); *_SUB_EXPORTCODEAS_LONG_I=0; } -int64 fornext_value6715; -int64 fornext_finalvalue6715; -int64 fornext_step6715; -uint8 fornext_step_negative6715; +int64 fornext_value6717; +int64 fornext_finalvalue6717; +int64 fornext_step6717; +uint8 fornext_step_negative6717; qbs *_SUB_EXPORTCODEAS_STRING_PERC=NULL; if (!_SUB_EXPORTCODEAS_STRING_PERC)_SUB_EXPORTCODEAS_STRING_PERC=qbs_new(0,0); -int32 pass6716; -byte_element_struct *byte_element_6717=NULL; -if (!byte_element_6717){ -if ((mem_static_pointer+=12)tmp||_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT->fixed||_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT->readonly){ -oldstr6777=_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT; -if (oldstr6777->cmem_descriptor){ -_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT=qbs_new_cmem(oldstr6777->len,0); +oldstr6779=_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT; +if (oldstr6779->cmem_descriptor){ +_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT=qbs_new_cmem(oldstr6779->len,0); }else{ -_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT=qbs_new(oldstr6777->len,0); +_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT=qbs_new(oldstr6779->len,0); } -memcpy(_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT->chr,oldstr6777->chr,oldstr6777->len); +memcpy(_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT->chr,oldstr6779->chr,oldstr6779->len); } qbs *_FUNC_ANSITEXTTOUTF8TEXT_STRING_UTF=NULL; if (!_FUNC_ANSITEXTTOUTF8TEXT_STRING_UTF)_FUNC_ANSITEXTTOUTF8TEXT_STRING_UTF=qbs_new(0,0); @@ -17,13 +17,13 @@ if(_FUNC_ANSITEXTTOUTF8TEXT_LONG_CHI==NULL){ _FUNC_ANSITEXTTOUTF8TEXT_LONG_CHI=(int32*)mem_static_malloc(4); *_FUNC_ANSITEXTTOUTF8TEXT_LONG_CHI=0; } -int64 fornext_value6779; -int64 fornext_finalvalue6779; -int64 fornext_step6779; -uint8 fornext_step_negative6779; -byte_element_struct *byte_element_6780=NULL; -if (!byte_element_6780){ -if ((mem_static_pointer+=12)tmp||_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR->fixed||_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR->readonly){ -oldstr2189=_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR; -if (oldstr2189->cmem_descriptor){ -_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR=qbs_new_cmem(oldstr2189->len,0); +oldstr2191=_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR; +if (oldstr2191->cmem_descriptor){ +_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR=qbs_new_cmem(oldstr2191->len,0); }else{ -_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR=qbs_new(oldstr2189->len,0); +_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR=qbs_new(oldstr2191->len,0); } -memcpy(_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR->chr,oldstr2189->chr,oldstr2189->len); +memcpy(_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR->chr,oldstr2191->chr,oldstr2191->len); } diff --git a/internal/source/data30.txt b/internal/source/data30.txt index 368d74bc4..398412186 100644 --- a/internal/source/data30.txt +++ b/internal/source/data30.txt @@ -1,14 +1,14 @@ qbs *_FUNC_LINEFORMAT_STRING_LINEFORMAT=NULL; if (!_FUNC_LINEFORMAT_STRING_LINEFORMAT)_FUNC_LINEFORMAT_STRING_LINEFORMAT=qbs_new(0,0); -qbs*oldstr2918=NULL; +qbs*oldstr2920=NULL; if(_FUNC_LINEFORMAT_STRING_A->tmp||_FUNC_LINEFORMAT_STRING_A->fixed||_FUNC_LINEFORMAT_STRING_A->readonly){ -oldstr2918=_FUNC_LINEFORMAT_STRING_A; -if (oldstr2918->cmem_descriptor){ -_FUNC_LINEFORMAT_STRING_A=qbs_new_cmem(oldstr2918->len,0); +oldstr2920=_FUNC_LINEFORMAT_STRING_A; +if (oldstr2920->cmem_descriptor){ +_FUNC_LINEFORMAT_STRING_A=qbs_new_cmem(oldstr2920->len,0); }else{ -_FUNC_LINEFORMAT_STRING_A=qbs_new(oldstr2918->len,0); +_FUNC_LINEFORMAT_STRING_A=qbs_new(oldstr2920->len,0); } -memcpy(_FUNC_LINEFORMAT_STRING_A->chr,oldstr2918->chr,oldstr2918->len); +memcpy(_FUNC_LINEFORMAT_STRING_A->chr,oldstr2920->chr,oldstr2920->len); } qbs *_FUNC_LINEFORMAT_STRING_A2=NULL; if (!_FUNC_LINEFORMAT_STRING_A2)_FUNC_LINEFORMAT_STRING_A2=qbs_new(0,0); @@ -19,9 +19,9 @@ if(_FUNC_LINEFORMAT_LONG_N==NULL){ _FUNC_LINEFORMAT_LONG_N=(int32*)mem_static_malloc(4); *_FUNC_LINEFORMAT_LONG_N=0; } -byte_element_struct *byte_element_2919=NULL; -if (!byte_element_2919){ -if ((mem_static_pointer+=12)tmp||_SUB_MAKEIDREFER_STRING_REF->fixed||_SUB_MAKEIDREFER_STRING_REF->readonly){ -oldstr3017=_SUB_MAKEIDREFER_STRING_REF; -if (oldstr3017->cmem_descriptor){ -_SUB_MAKEIDREFER_STRING_REF=qbs_new_cmem(oldstr3017->len,0); +oldstr3019=_SUB_MAKEIDREFER_STRING_REF; +if (oldstr3019->cmem_descriptor){ +_SUB_MAKEIDREFER_STRING_REF=qbs_new_cmem(oldstr3019->len,0); }else{ -_SUB_MAKEIDREFER_STRING_REF=qbs_new(oldstr3017->len,0); +_SUB_MAKEIDREFER_STRING_REF=qbs_new(oldstr3019->len,0); } -memcpy(_SUB_MAKEIDREFER_STRING_REF->chr,oldstr3017->chr,oldstr3017->len); +memcpy(_SUB_MAKEIDREFER_STRING_REF->chr,oldstr3019->chr,oldstr3019->len); } diff --git a/internal/source/data32.txt b/internal/source/data32.txt index 84720107e..f4ce9e423 100644 --- a/internal/source/data32.txt +++ b/internal/source/data32.txt @@ -3,23 +3,23 @@ if(_FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE==NULL){ _FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE=(int32*)mem_static_malloc(4); *_FUNC_OPERATORUSAGE_LONG_OPERATORUSAGE=0; } -qbs*oldstr3018=NULL; +qbs*oldstr3020=NULL; if(_FUNC_OPERATORUSAGE_STRING_OPERATOR->tmp||_FUNC_OPERATORUSAGE_STRING_OPERATOR->fixed||_FUNC_OPERATORUSAGE_STRING_OPERATOR->readonly){ -oldstr3018=_FUNC_OPERATORUSAGE_STRING_OPERATOR; -if (oldstr3018->cmem_descriptor){ -_FUNC_OPERATORUSAGE_STRING_OPERATOR=qbs_new_cmem(oldstr3018->len,0); +oldstr3020=_FUNC_OPERATORUSAGE_STRING_OPERATOR; +if (oldstr3020->cmem_descriptor){ +_FUNC_OPERATORUSAGE_STRING_OPERATOR=qbs_new_cmem(oldstr3020->len,0); }else{ -_FUNC_OPERATORUSAGE_STRING_OPERATOR=qbs_new(oldstr3018->len,0); +_FUNC_OPERATORUSAGE_STRING_OPERATOR=qbs_new(oldstr3020->len,0); } -memcpy(_FUNC_OPERATORUSAGE_STRING_OPERATOR->chr,oldstr3018->chr,oldstr3018->len); +memcpy(_FUNC_OPERATORUSAGE_STRING_OPERATOR->chr,oldstr3020->chr,oldstr3020->len); } -qbs*oldstr3019=NULL; +qbs*oldstr3021=NULL; if(_FUNC_OPERATORUSAGE_STRING_INFO->tmp||_FUNC_OPERATORUSAGE_STRING_INFO->fixed||_FUNC_OPERATORUSAGE_STRING_INFO->readonly){ -oldstr3019=_FUNC_OPERATORUSAGE_STRING_INFO; -if (oldstr3019->cmem_descriptor){ -_FUNC_OPERATORUSAGE_STRING_INFO=qbs_new_cmem(oldstr3019->len,0); +oldstr3021=_FUNC_OPERATORUSAGE_STRING_INFO; +if (oldstr3021->cmem_descriptor){ +_FUNC_OPERATORUSAGE_STRING_INFO=qbs_new_cmem(oldstr3021->len,0); }else{ -_FUNC_OPERATORUSAGE_STRING_INFO=qbs_new(oldstr3019->len,0); +_FUNC_OPERATORUSAGE_STRING_INFO=qbs_new(oldstr3021->len,0); } -memcpy(_FUNC_OPERATORUSAGE_STRING_INFO->chr,oldstr3019->chr,oldstr3019->len); +memcpy(_FUNC_OPERATORUSAGE_STRING_INFO->chr,oldstr3021->chr,oldstr3021->len); } diff --git a/internal/source/data33.txt b/internal/source/data33.txt index 07f53ff85..65aa23a1a 100644 --- a/internal/source/data33.txt +++ b/internal/source/data33.txt @@ -1,14 +1,14 @@ qbs *_FUNC_REFER_STRING_REFER=NULL; if (!_FUNC_REFER_STRING_REFER)_FUNC_REFER_STRING_REFER=qbs_new(0,0); -qbs*oldstr3022=NULL; +qbs*oldstr3024=NULL; if(_FUNC_REFER_STRING_A2->tmp||_FUNC_REFER_STRING_A2->fixed||_FUNC_REFER_STRING_A2->readonly){ -oldstr3022=_FUNC_REFER_STRING_A2; -if (oldstr3022->cmem_descriptor){ -_FUNC_REFER_STRING_A2=qbs_new_cmem(oldstr3022->len,0); +oldstr3024=_FUNC_REFER_STRING_A2; +if (oldstr3024->cmem_descriptor){ +_FUNC_REFER_STRING_A2=qbs_new_cmem(oldstr3024->len,0); }else{ -_FUNC_REFER_STRING_A2=qbs_new(oldstr3022->len,0); +_FUNC_REFER_STRING_A2=qbs_new(oldstr3024->len,0); } -memcpy(_FUNC_REFER_STRING_A2->chr,oldstr3022->chr,oldstr3022->len); +memcpy(_FUNC_REFER_STRING_A2->chr,oldstr3024->chr,oldstr3024->len); } int32 *_FUNC_REFER_LONG_TYPBAK=NULL; if(_FUNC_REFER_LONG_TYPBAK==NULL){ @@ -27,9 +27,9 @@ if(_FUNC_REFER_LONG_IDNUMBER==NULL){ _FUNC_REFER_LONG_IDNUMBER=(int32*)mem_static_malloc(4); *_FUNC_REFER_LONG_IDNUMBER=0; } -byte_element_struct *byte_element_3023=NULL; -if (!byte_element_3023){ -if ((mem_static_pointer+=12)tmp||_FUNC_SYMBOLTYPE_STRING_S->fixed||_FUNC_SYMBOLTYPE_STRING_S->readonly){ -oldstr3035=_FUNC_SYMBOLTYPE_STRING_S; -if (oldstr3035->cmem_descriptor){ -_FUNC_SYMBOLTYPE_STRING_S=qbs_new_cmem(oldstr3035->len,0); +oldstr3037=_FUNC_SYMBOLTYPE_STRING_S; +if (oldstr3037->cmem_descriptor){ +_FUNC_SYMBOLTYPE_STRING_S=qbs_new_cmem(oldstr3037->len,0); }else{ -_FUNC_SYMBOLTYPE_STRING_S=qbs_new(oldstr3035->len,0); +_FUNC_SYMBOLTYPE_STRING_S=qbs_new(oldstr3037->len,0); } -memcpy(_FUNC_SYMBOLTYPE_STRING_S->chr,oldstr3035->chr,oldstr3035->len); +memcpy(_FUNC_SYMBOLTYPE_STRING_S->chr,oldstr3037->chr,oldstr3037->len); } -byte_element_struct *byte_element_3036=NULL; -if (!byte_element_3036){ -if ((mem_static_pointer+=12)tmp||_FUNC_REMOVESYMBOL_STRING_VARNAME->fixed||_FUNC_REMOVESYMBOL_STRING_VARNAME->readonly){ -oldstr3038=_FUNC_REMOVESYMBOL_STRING_VARNAME; -if (oldstr3038->cmem_descriptor){ -_FUNC_REMOVESYMBOL_STRING_VARNAME=qbs_new_cmem(oldstr3038->len,0); +oldstr3040=_FUNC_REMOVESYMBOL_STRING_VARNAME; +if (oldstr3040->cmem_descriptor){ +_FUNC_REMOVESYMBOL_STRING_VARNAME=qbs_new_cmem(oldstr3040->len,0); }else{ -_FUNC_REMOVESYMBOL_STRING_VARNAME=qbs_new(oldstr3038->len,0); +_FUNC_REMOVESYMBOL_STRING_VARNAME=qbs_new(oldstr3040->len,0); } -memcpy(_FUNC_REMOVESYMBOL_STRING_VARNAME->chr,oldstr3038->chr,oldstr3038->len); +memcpy(_FUNC_REMOVESYMBOL_STRING_VARNAME->chr,oldstr3040->chr,oldstr3040->len); } int32 *_FUNC_REMOVESYMBOL_LONG_I=NULL; if(_FUNC_REMOVESYMBOL_LONG_I==NULL){ @@ -17,7 +17,7 @@ _FUNC_REMOVESYMBOL_LONG_I=(int32*)mem_static_malloc(4); } qbs *_FUNC_REMOVESYMBOL_STRING_SYMBOL=NULL; if (!_FUNC_REMOVESYMBOL_STRING_SYMBOL)_FUNC_REMOVESYMBOL_STRING_SYMBOL=qbs_new(0,0); -byte_element_struct *byte_element_3039=NULL; -if (!byte_element_3039){ -if ((mem_static_pointer+=12)tmp||_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN->fixed||_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN->readonly){ -oldstr2203=_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN; -if (oldstr2203->cmem_descriptor){ -_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN=qbs_new_cmem(oldstr2203->len,0); +oldstr2205=_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN; +if (oldstr2205->cmem_descriptor){ +_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN=qbs_new_cmem(oldstr2205->len,0); }else{ -_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN=qbs_new(oldstr2203->len,0); +_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN=qbs_new(oldstr2205->len,0); } -memcpy(_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN->chr,oldstr2203->chr,oldstr2203->len); +memcpy(_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN->chr,oldstr2205->chr,oldstr2205->len); } int32 *_FUNC_PARSEBOOLEANSETTING_LONG_EQUALS=NULL; if(_FUNC_PARSEBOOLEANSETTING_LONG_EQUALS==NULL){ diff --git a/internal/source/data40.txt b/internal/source/data40.txt index f6018fdc7..200e37ddf 100644 --- a/internal/source/data40.txt +++ b/internal/source/data40.txt @@ -3,35 +3,31 @@ if(_FUNC_SEPERATEARGS_LONG_SEPERATEARGS==NULL){ _FUNC_SEPERATEARGS_LONG_SEPERATEARGS=(int32*)mem_static_malloc(4); *_FUNC_SEPERATEARGS_LONG_SEPERATEARGS=0; } -qbs*oldstr3040=NULL; +qbs*oldstr3042=NULL; if(_FUNC_SEPERATEARGS_STRING_A->tmp||_FUNC_SEPERATEARGS_STRING_A->fixed||_FUNC_SEPERATEARGS_STRING_A->readonly){ -oldstr3040=_FUNC_SEPERATEARGS_STRING_A; -if (oldstr3040->cmem_descriptor){ -_FUNC_SEPERATEARGS_STRING_A=qbs_new_cmem(oldstr3040->len,0); +oldstr3042=_FUNC_SEPERATEARGS_STRING_A; +if (oldstr3042->cmem_descriptor){ +_FUNC_SEPERATEARGS_STRING_A=qbs_new_cmem(oldstr3042->len,0); }else{ -_FUNC_SEPERATEARGS_STRING_A=qbs_new(oldstr3040->len,0); +_FUNC_SEPERATEARGS_STRING_A=qbs_new(oldstr3042->len,0); } -memcpy(_FUNC_SEPERATEARGS_STRING_A->chr,oldstr3040->chr,oldstr3040->len); +memcpy(_FUNC_SEPERATEARGS_STRING_A->chr,oldstr3042->chr,oldstr3042->len); } -qbs*oldstr3041=NULL; +qbs*oldstr3043=NULL; if(_FUNC_SEPERATEARGS_STRING_CA->tmp||_FUNC_SEPERATEARGS_STRING_CA->fixed||_FUNC_SEPERATEARGS_STRING_CA->readonly){ -oldstr3041=_FUNC_SEPERATEARGS_STRING_CA; -if (oldstr3041->cmem_descriptor){ -_FUNC_SEPERATEARGS_STRING_CA=qbs_new_cmem(oldstr3041->len,0); +oldstr3043=_FUNC_SEPERATEARGS_STRING_CA; +if (oldstr3043->cmem_descriptor){ +_FUNC_SEPERATEARGS_STRING_CA=qbs_new_cmem(oldstr3043->len,0); }else{ -_FUNC_SEPERATEARGS_STRING_CA=qbs_new(oldstr3041->len,0); +_FUNC_SEPERATEARGS_STRING_CA=qbs_new(oldstr3043->len,0); } -memcpy(_FUNC_SEPERATEARGS_STRING_CA->chr,oldstr3041->chr,oldstr3041->len); +memcpy(_FUNC_SEPERATEARGS_STRING_CA->chr,oldstr3043->chr,oldstr3043->len); } int32 *_FUNC_SEPERATEARGS_LONG_I=NULL; if(_FUNC_SEPERATEARGS_LONG_I==NULL){ _FUNC_SEPERATEARGS_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_SEPERATEARGS_LONG_I=0; } -int64 fornext_value3043; -int64 fornext_finalvalue3043; -int64 fornext_step3043; -uint8 fornext_step_negative3043; int64 fornext_value3045; int64 fornext_finalvalue3045; int64 fornext_step3045; @@ -40,6 +36,10 @@ int64 fornext_value3047; int64 fornext_finalvalue3047; int64 fornext_step3047; uint8 fornext_step_negative3047; +int64 fornext_value3049; +int64 fornext_finalvalue3049; +int64 fornext_step3049; +uint8 fornext_step_negative3049; void *_FUNC_SEPERATEARGS_UDT_ID2=NULL; if(_FUNC_SEPERATEARGS_UDT_ID2==NULL){ _FUNC_SEPERATEARGS_UDT_ID2=(void*)mem_static_malloc(2869); @@ -48,10 +48,10 @@ memset(_FUNC_SEPERATEARGS_UDT_ID2,0,2869); } qbs *_FUNC_SEPERATEARGS_STRING_S=NULL; if (!_FUNC_SEPERATEARGS_STRING_S)_FUNC_SEPERATEARGS_STRING_S=qbs_new(0,0); -int64 fornext_value3049; -int64 fornext_finalvalue3049; -int64 fornext_step3049; -uint8 fornext_step_negative3049; +int64 fornext_value3051; +int64 fornext_finalvalue3051; +int64 fornext_step3051; +uint8 fornext_step_negative3051; int32 *_FUNC_SEPERATEARGS_LONG_PASSFLAG=NULL; if(_FUNC_SEPERATEARGS_LONG_PASSFLAG==NULL){ _FUNC_SEPERATEARGS_LONG_PASSFLAG=(int32*)mem_static_malloc(4); @@ -82,13 +82,13 @@ if(_FUNC_SEPERATEARGS_LONG_DITCHLEVEL==NULL){ _FUNC_SEPERATEARGS_LONG_DITCHLEVEL=(int32*)mem_static_malloc(4); *_FUNC_SEPERATEARGS_LONG_DITCHLEVEL=0; } -int64 fornext_value3051; -int64 fornext_finalvalue3051; -int64 fornext_step3051; -uint8 fornext_step_negative3051; -byte_element_struct *byte_element_3052=NULL; -if (!byte_element_3052){ -if ((mem_static_pointer+=12)tmp||_SUB_SETREFER_STRING_A2->fixed||_SUB_SETREFER_STRING_A2->readonly){ -oldstr3135=_SUB_SETREFER_STRING_A2; -if (oldstr3135->cmem_descriptor){ -_SUB_SETREFER_STRING_A2=qbs_new_cmem(oldstr3135->len,0); +oldstr3137=_SUB_SETREFER_STRING_A2; +if (oldstr3137->cmem_descriptor){ +_SUB_SETREFER_STRING_A2=qbs_new_cmem(oldstr3137->len,0); }else{ -_SUB_SETREFER_STRING_A2=qbs_new(oldstr3135->len,0); +_SUB_SETREFER_STRING_A2=qbs_new(oldstr3137->len,0); } -memcpy(_SUB_SETREFER_STRING_A2->chr,oldstr3135->chr,oldstr3135->len); +memcpy(_SUB_SETREFER_STRING_A2->chr,oldstr3137->chr,oldstr3137->len); } -qbs*oldstr3136=NULL; +qbs*oldstr3138=NULL; if(_SUB_SETREFER_STRING_E2->tmp||_SUB_SETREFER_STRING_E2->fixed||_SUB_SETREFER_STRING_E2->readonly){ -oldstr3136=_SUB_SETREFER_STRING_E2; -if (oldstr3136->cmem_descriptor){ -_SUB_SETREFER_STRING_E2=qbs_new_cmem(oldstr3136->len,0); +oldstr3138=_SUB_SETREFER_STRING_E2; +if (oldstr3138->cmem_descriptor){ +_SUB_SETREFER_STRING_E2=qbs_new_cmem(oldstr3138->len,0); }else{ -_SUB_SETREFER_STRING_E2=qbs_new(oldstr3136->len,0); +_SUB_SETREFER_STRING_E2=qbs_new(oldstr3138->len,0); } -memcpy(_SUB_SETREFER_STRING_E2->chr,oldstr3136->chr,oldstr3136->len); +memcpy(_SUB_SETREFER_STRING_E2->chr,oldstr3138->chr,oldstr3138->len); } qbs *_SUB_SETREFER_STRING_A=NULL; if (!_SUB_SETREFER_STRING_A)_SUB_SETREFER_STRING_A=qbs_new(0,0); @@ -39,24 +39,24 @@ if(_SUB_SETREFER_LONG_IDNUMBER==NULL){ _SUB_SETREFER_LONG_IDNUMBER=(int32*)mem_static_malloc(4); *_SUB_SETREFER_LONG_IDNUMBER=0; } -byte_element_struct *byte_element_3137=NULL; -if (!byte_element_3137){ -if ((mem_static_pointer+=12)tmp||_FUNC_TYP2CTYP_STRING_TSTR->fixed||_FUNC_TYP2CTYP_STRING_TSTR->readonly){ -oldstr3177=_FUNC_TYP2CTYP_STRING_TSTR; -if (oldstr3177->cmem_descriptor){ -_FUNC_TYP2CTYP_STRING_TSTR=qbs_new_cmem(oldstr3177->len,0); +oldstr3179=_FUNC_TYP2CTYP_STRING_TSTR; +if (oldstr3179->cmem_descriptor){ +_FUNC_TYP2CTYP_STRING_TSTR=qbs_new_cmem(oldstr3179->len,0); }else{ -_FUNC_TYP2CTYP_STRING_TSTR=qbs_new(oldstr3177->len,0); +_FUNC_TYP2CTYP_STRING_TSTR=qbs_new(oldstr3179->len,0); } -memcpy(_FUNC_TYP2CTYP_STRING_TSTR->chr,oldstr3177->chr,oldstr3177->len); +memcpy(_FUNC_TYP2CTYP_STRING_TSTR->chr,oldstr3179->chr,oldstr3179->len); } qbs *_FUNC_TYP2CTYP_STRING_CTYP=NULL; if (!_FUNC_TYP2CTYP_STRING_CTYP)_FUNC_TYP2CTYP_STRING_CTYP=qbs_new(0,0); @@ -24,20 +24,20 @@ if(_FUNC_TYP2CTYP_LONG_UNSGN==NULL){ _FUNC_TYP2CTYP_LONG_UNSGN=(int32*)mem_static_malloc(4); *_FUNC_TYP2CTYP_LONG_UNSGN=0; } -byte_element_struct *byte_element_3178=NULL; -if (!byte_element_3178){ -if ((mem_static_pointer+=12)tmp||_FUNC_TYPE2SYMBOL_STRING_TYP->fixed||_FUNC_TYPE2SYMBOL_STRING_TYP->readonly){ -oldstr3182=_FUNC_TYPE2SYMBOL_STRING_TYP; -if (oldstr3182->cmem_descriptor){ -_FUNC_TYPE2SYMBOL_STRING_TYP=qbs_new_cmem(oldstr3182->len,0); +oldstr3184=_FUNC_TYPE2SYMBOL_STRING_TYP; +if (oldstr3184->cmem_descriptor){ +_FUNC_TYPE2SYMBOL_STRING_TYP=qbs_new_cmem(oldstr3184->len,0); }else{ -_FUNC_TYPE2SYMBOL_STRING_TYP=qbs_new(oldstr3182->len,0); +_FUNC_TYPE2SYMBOL_STRING_TYP=qbs_new(oldstr3184->len,0); } -memcpy(_FUNC_TYPE2SYMBOL_STRING_TYP->chr,oldstr3182->chr,oldstr3182->len); +memcpy(_FUNC_TYPE2SYMBOL_STRING_TYP->chr,oldstr3184->chr,oldstr3184->len); } qbs *_FUNC_TYPE2SYMBOL_STRING_T=NULL; if (!_FUNC_TYPE2SYMBOL_STRING_T)_FUNC_TYPE2SYMBOL_STRING_T=qbs_new(0,0); @@ -17,13 +17,13 @@ if(_FUNC_TYPE2SYMBOL_LONG_I==NULL){ _FUNC_TYPE2SYMBOL_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_TYPE2SYMBOL_LONG_I=0; } -int64 fornext_value3184; -int64 fornext_finalvalue3184; -int64 fornext_step3184; -uint8 fornext_step_negative3184; -byte_element_struct *byte_element_3185=NULL; -if (!byte_element_3185){ -if ((mem_static_pointer+=12)tmp||_FUNC_TYPNAME2TYP_STRING_T2->fixed||_FUNC_TYPNAME2TYP_STRING_T2->readonly){ -oldstr3199=_FUNC_TYPNAME2TYP_STRING_T2; -if (oldstr3199->cmem_descriptor){ -_FUNC_TYPNAME2TYP_STRING_T2=qbs_new_cmem(oldstr3199->len,0); +oldstr3201=_FUNC_TYPNAME2TYP_STRING_T2; +if (oldstr3201->cmem_descriptor){ +_FUNC_TYPNAME2TYP_STRING_T2=qbs_new_cmem(oldstr3201->len,0); }else{ -_FUNC_TYPNAME2TYP_STRING_T2=qbs_new(oldstr3199->len,0); +_FUNC_TYPNAME2TYP_STRING_T2=qbs_new(oldstr3201->len,0); } -memcpy(_FUNC_TYPNAME2TYP_STRING_T2->chr,oldstr3199->chr,oldstr3199->len); +memcpy(_FUNC_TYPNAME2TYP_STRING_T2->chr,oldstr3201->chr,oldstr3201->len); } qbs *_FUNC_TYPNAME2TYP_STRING_T=NULL; if (!_FUNC_TYPNAME2TYP_STRING_T)_FUNC_TYPNAME2TYP_STRING_T=qbs_new(0,0); @@ -19,9 +19,9 @@ qbs *_FUNC_TYPNAME2TYP_STRING_TS=NULL; if (!_FUNC_TYPNAME2TYP_STRING_TS)_FUNC_TYPNAME2TYP_STRING_TS=qbs_new(0,0); qbs *_FUNC_TYPNAME2TYP_STRING_N=NULL; if (!_FUNC_TYPNAME2TYP_STRING_N)_FUNC_TYPNAME2TYP_STRING_N=qbs_new(0,0); -byte_element_struct *byte_element_3200=NULL; -if (!byte_element_3200){ -if ((mem_static_pointer+=12)tmp||_FUNC_PARSELONGSETTING_STRING_TOKEN->fixed||_FUNC_PARSELONGSETTING_STRING_TOKEN->readonly){ -oldstr2205=_FUNC_PARSELONGSETTING_STRING_TOKEN; -if (oldstr2205->cmem_descriptor){ -_FUNC_PARSELONGSETTING_STRING_TOKEN=qbs_new_cmem(oldstr2205->len,0); +oldstr2207=_FUNC_PARSELONGSETTING_STRING_TOKEN; +if (oldstr2207->cmem_descriptor){ +_FUNC_PARSELONGSETTING_STRING_TOKEN=qbs_new_cmem(oldstr2207->len,0); }else{ -_FUNC_PARSELONGSETTING_STRING_TOKEN=qbs_new(oldstr2205->len,0); +_FUNC_PARSELONGSETTING_STRING_TOKEN=qbs_new(oldstr2207->len,0); } -memcpy(_FUNC_PARSELONGSETTING_STRING_TOKEN->chr,oldstr2205->chr,oldstr2205->len); +memcpy(_FUNC_PARSELONGSETTING_STRING_TOKEN->chr,oldstr2207->chr,oldstr2207->len); } int32 *_FUNC_PARSELONGSETTING_LONG_EQUALS=NULL; if(_FUNC_PARSELONGSETTING_LONG_EQUALS==NULL){ diff --git a/internal/source/data50.txt b/internal/source/data50.txt index 032ed20e6..d41b214ba 100644 --- a/internal/source/data50.txt +++ b/internal/source/data50.txt @@ -3,24 +3,24 @@ if(_FUNC_VALIDLABEL_LONG_VALIDLABEL==NULL){ _FUNC_VALIDLABEL_LONG_VALIDLABEL=(int32*)mem_static_malloc(4); *_FUNC_VALIDLABEL_LONG_VALIDLABEL=0; } -qbs*oldstr3214=NULL; +qbs*oldstr3216=NULL; if(_FUNC_VALIDLABEL_STRING_LABEL2->tmp||_FUNC_VALIDLABEL_STRING_LABEL2->fixed||_FUNC_VALIDLABEL_STRING_LABEL2->readonly){ -oldstr3214=_FUNC_VALIDLABEL_STRING_LABEL2; -if (oldstr3214->cmem_descriptor){ -_FUNC_VALIDLABEL_STRING_LABEL2=qbs_new_cmem(oldstr3214->len,0); +oldstr3216=_FUNC_VALIDLABEL_STRING_LABEL2; +if (oldstr3216->cmem_descriptor){ +_FUNC_VALIDLABEL_STRING_LABEL2=qbs_new_cmem(oldstr3216->len,0); }else{ -_FUNC_VALIDLABEL_STRING_LABEL2=qbs_new(oldstr3214->len,0); +_FUNC_VALIDLABEL_STRING_LABEL2=qbs_new(oldstr3216->len,0); } -memcpy(_FUNC_VALIDLABEL_STRING_LABEL2->chr,oldstr3214->chr,oldstr3214->len); +memcpy(_FUNC_VALIDLABEL_STRING_LABEL2->chr,oldstr3216->chr,oldstr3216->len); } int32 *_FUNC_VALIDLABEL_LONG_CREATE=NULL; if(_FUNC_VALIDLABEL_LONG_CREATE==NULL){ _FUNC_VALIDLABEL_LONG_CREATE=(int32*)mem_static_malloc(4); *_FUNC_VALIDLABEL_LONG_CREATE=0; } -byte_element_struct *byte_element_3215=NULL; -if (!byte_element_3215){ -if ((mem_static_pointer+=12)tmp||_SUB_XFILEPRINT_STRING_A->fixed||_SUB_XFILEPRINT_STRING_A->readonly){ -oldstr3240=_SUB_XFILEPRINT_STRING_A; -if (oldstr3240->cmem_descriptor){ -_SUB_XFILEPRINT_STRING_A=qbs_new_cmem(oldstr3240->len,0); +oldstr3242=_SUB_XFILEPRINT_STRING_A; +if (oldstr3242->cmem_descriptor){ +_SUB_XFILEPRINT_STRING_A=qbs_new_cmem(oldstr3242->len,0); }else{ -_SUB_XFILEPRINT_STRING_A=qbs_new(oldstr3240->len,0); +_SUB_XFILEPRINT_STRING_A=qbs_new(oldstr3242->len,0); } -memcpy(_SUB_XFILEPRINT_STRING_A->chr,oldstr3240->chr,oldstr3240->len); +memcpy(_SUB_XFILEPRINT_STRING_A->chr,oldstr3242->chr,oldstr3242->len); } -qbs*oldstr3241=NULL; +qbs*oldstr3243=NULL; if(_SUB_XFILEPRINT_STRING_CA->tmp||_SUB_XFILEPRINT_STRING_CA->fixed||_SUB_XFILEPRINT_STRING_CA->readonly){ -oldstr3241=_SUB_XFILEPRINT_STRING_CA; -if (oldstr3241->cmem_descriptor){ -_SUB_XFILEPRINT_STRING_CA=qbs_new_cmem(oldstr3241->len,0); +oldstr3243=_SUB_XFILEPRINT_STRING_CA; +if (oldstr3243->cmem_descriptor){ +_SUB_XFILEPRINT_STRING_CA=qbs_new_cmem(oldstr3243->len,0); }else{ -_SUB_XFILEPRINT_STRING_CA=qbs_new(oldstr3241->len,0); +_SUB_XFILEPRINT_STRING_CA=qbs_new(oldstr3243->len,0); } -memcpy(_SUB_XFILEPRINT_STRING_CA->chr,oldstr3241->chr,oldstr3241->len); +memcpy(_SUB_XFILEPRINT_STRING_CA->chr,oldstr3243->chr,oldstr3243->len); } qbs *_SUB_XFILEPRINT_STRING_U=NULL; if (!_SUB_XFILEPRINT_STRING_U)_SUB_XFILEPRINT_STRING_U=qbs_new(0,0); -int32 pass3242; -int16 pass3243; +int32 pass3244; +int16 pass3245; qbs *_SUB_XFILEPRINT_STRING_A3=NULL; if (!_SUB_XFILEPRINT_STRING_A3)_SUB_XFILEPRINT_STRING_A3=qbs_new(0,0); int32 *_SUB_XFILEPRINT_LONG_B=NULL; @@ -34,55 +34,53 @@ if(_SUB_XFILEPRINT_LONG_I==NULL){ _SUB_XFILEPRINT_LONG_I=(int32*)mem_static_malloc(4); *_SUB_XFILEPRINT_LONG_I=0; } -int64 fornext_value3245; -int64 fornext_finalvalue3245; -int64 fornext_step3245; -uint8 fornext_step_negative3245; +int64 fornext_value3247; +int64 fornext_finalvalue3247; +int64 fornext_step3247; +uint8 fornext_step_negative3247; qbs *_SUB_XFILEPRINT_STRING_A2=NULL; if (!_SUB_XFILEPRINT_STRING_A2)_SUB_XFILEPRINT_STRING_A2=qbs_new(0,0); qbs *_SUB_XFILEPRINT_STRING_E=NULL; if (!_SUB_XFILEPRINT_STRING_E)_SUB_XFILEPRINT_STRING_E=qbs_new(0,0); qbs *_SUB_XFILEPRINT_STRING_L=NULL; if (!_SUB_XFILEPRINT_STRING_L)_SUB_XFILEPRINT_STRING_L=qbs_new(0,0); -int32 pass3246; -int16 pass3247; -int16 pass3248; +int32 pass3248; +int16 pass3249; +int16 pass3250; qbs *_SUB_XFILEPRINT_STRING_PUFORMAT=NULL; if (!_SUB_XFILEPRINT_STRING_PUFORMAT)_SUB_XFILEPRINT_STRING_PUFORMAT=qbs_new(0,0); -int64 fornext_value3250; -int64 fornext_finalvalue3250; -int64 fornext_step3250; -uint8 fornext_step_negative3250; +int64 fornext_value3252; +int64 fornext_finalvalue3252; +int64 fornext_step3252; +uint8 fornext_step_negative3252; int32 *_SUB_XFILEPRINT_LONG_TYP=NULL; if(_SUB_XFILEPRINT_LONG_TYP==NULL){ _SUB_XFILEPRINT_LONG_TYP=(int32*)mem_static_malloc(4); *_SUB_XFILEPRINT_LONG_TYP=0; } -int32 pass3251; -byte_element_struct *byte_element_3252=NULL; -if (!byte_element_3252){ -if ((mem_static_pointer+=12)tmp||_SUB_XFILEWRITE_STRING_CA->fixed||_SUB_XFILEWRITE_STRING_CA->readonly){ -oldstr3297=_SUB_XFILEWRITE_STRING_CA; -if (oldstr3297->cmem_descriptor){ -_SUB_XFILEWRITE_STRING_CA=qbs_new_cmem(oldstr3297->len,0); +oldstr3299=_SUB_XFILEWRITE_STRING_CA; +if (oldstr3299->cmem_descriptor){ +_SUB_XFILEWRITE_STRING_CA=qbs_new_cmem(oldstr3299->len,0); }else{ -_SUB_XFILEWRITE_STRING_CA=qbs_new(oldstr3297->len,0); +_SUB_XFILEWRITE_STRING_CA=qbs_new(oldstr3299->len,0); } -memcpy(_SUB_XFILEWRITE_STRING_CA->chr,oldstr3297->chr,oldstr3297->len); +memcpy(_SUB_XFILEWRITE_STRING_CA->chr,oldstr3299->chr,oldstr3299->len); } qbs *_SUB_XFILEWRITE_STRING_L=NULL; if (!_SUB_XFILEWRITE_STRING_L)_SUB_XFILEWRITE_STRING_L=qbs_new(0,0); qbs *_SUB_XFILEWRITE_STRING_U=NULL; if (!_SUB_XFILEWRITE_STRING_U)_SUB_XFILEWRITE_STRING_U=qbs_new(0,0); -int32 pass3298; -int16 pass3299; +int32 pass3300; +int16 pass3301; qbs *_SUB_XFILEWRITE_STRING_A3=NULL; if (!_SUB_XFILEWRITE_STRING_A3)_SUB_XFILEWRITE_STRING_A3=qbs_new(0,0); int32 *_SUB_XFILEWRITE_LONG_B=NULL; @@ -26,27 +26,27 @@ if(_SUB_XFILEWRITE_LONG_I==NULL){ _SUB_XFILEWRITE_LONG_I=(int32*)mem_static_malloc(4); *_SUB_XFILEWRITE_LONG_I=0; } -int64 fornext_value3301; -int64 fornext_finalvalue3301; -int64 fornext_step3301; -uint8 fornext_step_negative3301; +int64 fornext_value3303; +int64 fornext_finalvalue3303; +int64 fornext_step3303; +uint8 fornext_step_negative3303; qbs *_SUB_XFILEWRITE_STRING_A2=NULL; if (!_SUB_XFILEWRITE_STRING_A2)_SUB_XFILEWRITE_STRING_A2=qbs_new(0,0); qbs *_SUB_XFILEWRITE_STRING_E=NULL; if (!_SUB_XFILEWRITE_STRING_E)_SUB_XFILEWRITE_STRING_E=qbs_new(0,0); -int32 pass3302; -int16 pass3303; -int16 pass3304; +int32 pass3304; int16 pass3305; +int16 pass3306; +int16 pass3307; int32 *_SUB_XFILEWRITE_LONG_LAST=NULL; if(_SUB_XFILEWRITE_LONG_LAST==NULL){ _SUB_XFILEWRITE_LONG_LAST=(int32*)mem_static_malloc(4); *_SUB_XFILEWRITE_LONG_LAST=0; } -int64 fornext_value3307; -int64 fornext_finalvalue3307; -int64 fornext_step3307; -uint8 fornext_step_negative3307; +int64 fornext_value3309; +int64 fornext_finalvalue3309; +int64 fornext_step3309; +uint8 fornext_step_negative3309; int32 *_SUB_XFILEWRITE_LONG_NEWLINE=NULL; if(_SUB_XFILEWRITE_LONG_NEWLINE==NULL){ _SUB_XFILEWRITE_LONG_NEWLINE=(int32*)mem_static_malloc(4); @@ -64,13 +64,13 @@ if(_SUB_XFILEWRITE_LONG_TYP==NULL){ _SUB_XFILEWRITE_LONG_TYP=(int32*)mem_static_malloc(4); *_SUB_XFILEWRITE_LONG_TYP=0; } -int32 pass3308; -int16 pass3309; -int16 pass3310; +int32 pass3310; int16 pass3311; int16 pass3312; int16 pass3313; -byte_element_struct *byte_element_3314=NULL; -if (!byte_element_3314){ -if ((mem_static_pointer+=12)tmp||_SUB_XGOSUB_STRING_CA->fixed||_SUB_XGOSUB_STRING_CA->readonly){ -oldstr3315=_SUB_XGOSUB_STRING_CA; -if (oldstr3315->cmem_descriptor){ -_SUB_XGOSUB_STRING_CA=qbs_new_cmem(oldstr3315->len,0); +oldstr3317=_SUB_XGOSUB_STRING_CA; +if (oldstr3317->cmem_descriptor){ +_SUB_XGOSUB_STRING_CA=qbs_new_cmem(oldstr3317->len,0); }else{ -_SUB_XGOSUB_STRING_CA=qbs_new(oldstr3315->len,0); +_SUB_XGOSUB_STRING_CA=qbs_new(oldstr3317->len,0); } -memcpy(_SUB_XGOSUB_STRING_CA->chr,oldstr3315->chr,oldstr3315->len); +memcpy(_SUB_XGOSUB_STRING_CA->chr,oldstr3317->chr,oldstr3317->len); } qbs *_SUB_XGOSUB_STRING_A2=NULL; if (!_SUB_XGOSUB_STRING_A2)_SUB_XGOSUB_STRING_A2=qbs_new(0,0); -int32 pass3316; +int32 pass3318; int32 *_SUB_XGOSUB_LONG_V=NULL; if(_SUB_XGOSUB_LONG_V==NULL){ _SUB_XGOSUB_LONG_V=(int32*)mem_static_malloc(4); *_SUB_XGOSUB_LONG_V=0; } -int32 pass3317; +int32 pass3319; int32 *_SUB_XGOSUB_LONG_IGNORE=NULL; if(_SUB_XGOSUB_LONG_IGNORE==NULL){ _SUB_XGOSUB_LONG_IGNORE=(int32*)mem_static_malloc(4); @@ -37,17 +37,17 @@ if(_SUB_XGOSUB_LONG_S==NULL){ _SUB_XGOSUB_LONG_S=(int32*)mem_static_malloc(4); *_SUB_XGOSUB_LONG_S=0; } -int32 pass3318; +int32 pass3320; qbs *_SUB_XGOSUB_STRING_L=NULL; if (!_SUB_XGOSUB_STRING_L)_SUB_XGOSUB_STRING_L=qbs_new(0,0); -byte_element_struct *byte_element_3319=NULL; -if (!byte_element_3319){ -if ((mem_static_pointer+=12)tmp||_SUB_XONGOTOGOSUB_STRING_A->fixed||_SUB_XONGOTOGOSUB_STRING_A->readonly){ -oldstr3327=_SUB_XONGOTOGOSUB_STRING_A; -if (oldstr3327->cmem_descriptor){ -_SUB_XONGOTOGOSUB_STRING_A=qbs_new_cmem(oldstr3327->len,0); +oldstr3329=_SUB_XONGOTOGOSUB_STRING_A; +if (oldstr3329->cmem_descriptor){ +_SUB_XONGOTOGOSUB_STRING_A=qbs_new_cmem(oldstr3329->len,0); }else{ -_SUB_XONGOTOGOSUB_STRING_A=qbs_new(oldstr3327->len,0); +_SUB_XONGOTOGOSUB_STRING_A=qbs_new(oldstr3329->len,0); } -memcpy(_SUB_XONGOTOGOSUB_STRING_A->chr,oldstr3327->chr,oldstr3327->len); +memcpy(_SUB_XONGOTOGOSUB_STRING_A->chr,oldstr3329->chr,oldstr3329->len); } -qbs*oldstr3328=NULL; +qbs*oldstr3330=NULL; if(_SUB_XONGOTOGOSUB_STRING_CA->tmp||_SUB_XONGOTOGOSUB_STRING_CA->fixed||_SUB_XONGOTOGOSUB_STRING_CA->readonly){ -oldstr3328=_SUB_XONGOTOGOSUB_STRING_CA; -if (oldstr3328->cmem_descriptor){ -_SUB_XONGOTOGOSUB_STRING_CA=qbs_new_cmem(oldstr3328->len,0); +oldstr3330=_SUB_XONGOTOGOSUB_STRING_CA; +if (oldstr3330->cmem_descriptor){ +_SUB_XONGOTOGOSUB_STRING_CA=qbs_new_cmem(oldstr3330->len,0); }else{ -_SUB_XONGOTOGOSUB_STRING_CA=qbs_new(oldstr3328->len,0); +_SUB_XONGOTOGOSUB_STRING_CA=qbs_new(oldstr3330->len,0); } -memcpy(_SUB_XONGOTOGOSUB_STRING_CA->chr,oldstr3328->chr,oldstr3328->len); +memcpy(_SUB_XONGOTOGOSUB_STRING_CA->chr,oldstr3330->chr,oldstr3330->len); } qbs *_SUB_XONGOTOGOSUB_STRING_L=NULL; if (!_SUB_XONGOTOGOSUB_STRING_L)_SUB_XONGOTOGOSUB_STRING_L=qbs_new(0,0); @@ -30,16 +30,16 @@ if(_SUB_XONGOTOGOSUB_LONG_I==NULL){ _SUB_XONGOTOGOSUB_LONG_I=(int32*)mem_static_malloc(4); *_SUB_XONGOTOGOSUB_LONG_I=0; } -int64 fornext_value3330; -int64 fornext_finalvalue3330; -int64 fornext_step3330; -uint8 fornext_step_negative3330; +int64 fornext_value3332; +int64 fornext_finalvalue3332; +int64 fornext_step3332; +uint8 fornext_step_negative3332; qbs *_SUB_XONGOTOGOSUB_STRING_E2=NULL; if (!_SUB_XONGOTOGOSUB_STRING_E2)_SUB_XONGOTOGOSUB_STRING_E2=qbs_new(0,0); qbs *_SUB_XONGOTOGOSUB_STRING_E=NULL; if (!_SUB_XONGOTOGOSUB_STRING_E)_SUB_XONGOTOGOSUB_STRING_E=qbs_new(0,0); -int32 pass3331; -int32 pass3332; +int32 pass3333; +int32 pass3334; int32 *_SUB_XONGOTOGOSUB_LONG_G=NULL; if(_SUB_XONGOTOGOSUB_LONG_G==NULL){ _SUB_XONGOTOGOSUB_LONG_G=(int32*)mem_static_malloc(4); @@ -50,12 +50,12 @@ if(_SUB_XONGOTOGOSUB_LONG_TYP==NULL){ _SUB_XONGOTOGOSUB_LONG_TYP=(int32*)mem_static_malloc(4); *_SUB_XONGOTOGOSUB_LONG_TYP=0; } -int32 pass3333; +int32 pass3335; qbs *_SUB_XONGOTOGOSUB_STRING_U=NULL; if (!_SUB_XONGOTOGOSUB_STRING_U)_SUB_XONGOTOGOSUB_STRING_U=qbs_new(0,0); -int32 pass3334; -int16 pass3335; -int16 pass3336; +int32 pass3336; +int16 pass3337; +int16 pass3338; int32 *_SUB_XONGOTOGOSUB_LONG_LN=NULL; if(_SUB_XONGOTOGOSUB_LONG_LN==NULL){ _SUB_XONGOTOGOSUB_LONG_LN=(int32*)mem_static_malloc(4); @@ -66,16 +66,16 @@ if(_SUB_XONGOTOGOSUB_LONG_LABELWASLAST==NULL){ _SUB_XONGOTOGOSUB_LONG_LABELWASLAST=(int32*)mem_static_malloc(4); *_SUB_XONGOTOGOSUB_LONG_LABELWASLAST=0; } -int64 fornext_value3338; -int64 fornext_finalvalue3338; -int64 fornext_step3338; -uint8 fornext_step_negative3338; +int64 fornext_value3340; +int64 fornext_finalvalue3340; +int64 fornext_step3340; +uint8 fornext_step_negative3340; int32 *_SUB_XONGOTOGOSUB_LONG_V=NULL; if(_SUB_XONGOTOGOSUB_LONG_V==NULL){ _SUB_XONGOTOGOSUB_LONG_V=(int32*)mem_static_malloc(4); *_SUB_XONGOTOGOSUB_LONG_V=0; } -int32 pass3339; +int32 pass3341; int32 *_SUB_XONGOTOGOSUB_LONG_IGNORE=NULL; if(_SUB_XONGOTOGOSUB_LONG_IGNORE==NULL){ _SUB_XONGOTOGOSUB_LONG_IGNORE=(int32*)mem_static_malloc(4); @@ -96,11 +96,9 @@ if(_SUB_XONGOTOGOSUB_LONG_S==NULL){ _SUB_XONGOTOGOSUB_LONG_S=(int32*)mem_static_malloc(4); *_SUB_XONGOTOGOSUB_LONG_S=0; } -int32 pass3340; +int32 pass3342; qbs *_SUB_XONGOTOGOSUB_STRING_LB=NULL; if (!_SUB_XONGOTOGOSUB_STRING_LB)_SUB_XONGOTOGOSUB_STRING_LB=qbs_new(0,0); -int16 pass3341; -int16 pass3342; int16 pass3343; int16 pass3344; int16 pass3345; @@ -112,7 +110,9 @@ int16 pass3350; int16 pass3351; int16 pass3352; int16 pass3353; -byte_element_struct *byte_element_3354=NULL; -if (!byte_element_3354){ -if ((mem_static_pointer+=12)tmp||_SUB_XPRINT_STRING_A->fixed||_SUB_XPRINT_STRING_A->readonly){ -oldstr3355=_SUB_XPRINT_STRING_A; -if (oldstr3355->cmem_descriptor){ -_SUB_XPRINT_STRING_A=qbs_new_cmem(oldstr3355->len,0); +oldstr3357=_SUB_XPRINT_STRING_A; +if (oldstr3357->cmem_descriptor){ +_SUB_XPRINT_STRING_A=qbs_new_cmem(oldstr3357->len,0); }else{ -_SUB_XPRINT_STRING_A=qbs_new(oldstr3355->len,0); +_SUB_XPRINT_STRING_A=qbs_new(oldstr3357->len,0); } -memcpy(_SUB_XPRINT_STRING_A->chr,oldstr3355->chr,oldstr3355->len); +memcpy(_SUB_XPRINT_STRING_A->chr,oldstr3357->chr,oldstr3357->len); } -qbs*oldstr3356=NULL; +qbs*oldstr3358=NULL; if(_SUB_XPRINT_STRING_CA->tmp||_SUB_XPRINT_STRING_CA->fixed||_SUB_XPRINT_STRING_CA->readonly){ -oldstr3356=_SUB_XPRINT_STRING_CA; -if (oldstr3356->cmem_descriptor){ -_SUB_XPRINT_STRING_CA=qbs_new_cmem(oldstr3356->len,0); +oldstr3358=_SUB_XPRINT_STRING_CA; +if (oldstr3358->cmem_descriptor){ +_SUB_XPRINT_STRING_CA=qbs_new_cmem(oldstr3358->len,0); }else{ -_SUB_XPRINT_STRING_CA=qbs_new(oldstr3356->len,0); +_SUB_XPRINT_STRING_CA=qbs_new(oldstr3358->len,0); } -memcpy(_SUB_XPRINT_STRING_CA->chr,oldstr3356->chr,oldstr3356->len); +memcpy(_SUB_XPRINT_STRING_CA->chr,oldstr3358->chr,oldstr3358->len); } qbs *_SUB_XPRINT_STRING_U=NULL; if (!_SUB_XPRINT_STRING_U)_SUB_XPRINT_STRING_U=qbs_new(0,0); -int32 pass3357; +int32 pass3359; qbs *_SUB_XPRINT_STRING_L=NULL; if (!_SUB_XPRINT_STRING_L)_SUB_XPRINT_STRING_L=qbs_new(0,0); int32 *_SUB_XPRINT_LONG_LP=NULL; @@ -30,8 +30,8 @@ _SUB_XPRINT_LONG_LP=(int32*)mem_static_malloc(4); } qbs *_SUB_XPRINT_STRING_LP=NULL; if (!_SUB_XPRINT_STRING_LP)_SUB_XPRINT_STRING_LP=qbs_new(0,0); -int16 pass3358; -int32 pass3359; +int16 pass3360; +int32 pass3361; int32 *_SUB_XPRINT_LONG_I=NULL; if(_SUB_XPRINT_LONG_I==NULL){ _SUB_XPRINT_LONG_I=(int32*)mem_static_malloc(4); @@ -46,10 +46,10 @@ _SUB_XPRINT_LONG_B=(int32*)mem_static_malloc(4); } qbs *_SUB_XPRINT_STRING_PUFORMAT=NULL; if (!_SUB_XPRINT_STRING_PUFORMAT)_SUB_XPRINT_STRING_PUFORMAT=qbs_new(0,0); -int64 fornext_value3361; -int64 fornext_finalvalue3361; -int64 fornext_step3361; -uint8 fornext_step_negative3361; +int64 fornext_value3363; +int64 fornext_finalvalue3363; +int64 fornext_step3363; +uint8 fornext_step_negative3363; qbs *_SUB_XPRINT_STRING_A2=NULL; if (!_SUB_XPRINT_STRING_A2)_SUB_XPRINT_STRING_A2=qbs_new(0,0); int32 *_SUB_XPRINT_LONG_TYP=NULL; @@ -57,37 +57,35 @@ if(_SUB_XPRINT_LONG_TYP==NULL){ _SUB_XPRINT_LONG_TYP=(int32*)mem_static_malloc(4); *_SUB_XPRINT_LONG_TYP=0; } -int32 pass3362; -byte_element_struct *byte_element_3363=NULL; -if (!byte_element_3363){ -if ((mem_static_pointer+=12)tmp||_SUB_XREAD_STRING_CA->fixed||_SUB_XREAD_STRING_CA->readonly){ -oldstr3419=_SUB_XREAD_STRING_CA; -if (oldstr3419->cmem_descriptor){ -_SUB_XREAD_STRING_CA=qbs_new_cmem(oldstr3419->len,0); +oldstr3421=_SUB_XREAD_STRING_CA; +if (oldstr3421->cmem_descriptor){ +_SUB_XREAD_STRING_CA=qbs_new_cmem(oldstr3421->len,0); }else{ -_SUB_XREAD_STRING_CA=qbs_new(oldstr3419->len,0); +_SUB_XREAD_STRING_CA=qbs_new(oldstr3421->len,0); } -memcpy(_SUB_XREAD_STRING_CA->chr,oldstr3419->chr,oldstr3419->len); +memcpy(_SUB_XREAD_STRING_CA->chr,oldstr3421->chr,oldstr3421->len); } qbs *_SUB_XREAD_STRING_L=NULL; if (!_SUB_XREAD_STRING_L)_SUB_XREAD_STRING_L=qbs_new(0,0); @@ -22,10 +22,10 @@ if(_SUB_XREAD_LONG_B==NULL){ _SUB_XREAD_LONG_B=(int32*)mem_static_malloc(4); *_SUB_XREAD_LONG_B=0; } -int64 fornext_value3421; -int64 fornext_finalvalue3421; -int64 fornext_step3421; -uint8 fornext_step_negative3421; +int64 fornext_value3423; +int64 fornext_finalvalue3423; +int64 fornext_step3423; +uint8 fornext_step_negative3423; qbs *_SUB_XREAD_STRING_A2=NULL; if (!_SUB_XREAD_STRING_A2)_SUB_XREAD_STRING_A2=qbs_new(0,0); qbs *_SUB_XREAD_STRING_E=NULL; @@ -35,14 +35,14 @@ if(_SUB_XREAD_LONG_T==NULL){ _SUB_XREAD_LONG_T=(int32*)mem_static_malloc(4); *_SUB_XREAD_LONG_T=0; } -int32 pass3422; -int16 pass3423; int32 pass3424; -int32 pass3425; +int16 pass3425; int32 pass3426; int32 pass3427; -int16 pass3428; -byte_element_struct *byte_element_3429=NULL; -if (!byte_element_3429){ -if ((mem_static_pointer+=12)tmp||_SUB_XWRITE_STRING_CA->fixed||_SUB_XWRITE_STRING_CA->readonly){ -oldstr3430=_SUB_XWRITE_STRING_CA; -if (oldstr3430->cmem_descriptor){ -_SUB_XWRITE_STRING_CA=qbs_new_cmem(oldstr3430->len,0); +oldstr3432=_SUB_XWRITE_STRING_CA; +if (oldstr3432->cmem_descriptor){ +_SUB_XWRITE_STRING_CA=qbs_new_cmem(oldstr3432->len,0); }else{ -_SUB_XWRITE_STRING_CA=qbs_new(oldstr3430->len,0); +_SUB_XWRITE_STRING_CA=qbs_new(oldstr3432->len,0); } -memcpy(_SUB_XWRITE_STRING_CA->chr,oldstr3430->chr,oldstr3430->len); +memcpy(_SUB_XWRITE_STRING_CA->chr,oldstr3432->chr,oldstr3432->len); } qbs *_SUB_XWRITE_STRING_L=NULL; if (!_SUB_XWRITE_STRING_L)_SUB_XWRITE_STRING_L=qbs_new(0,0); qbs *_SUB_XWRITE_STRING_U=NULL; if (!_SUB_XWRITE_STRING_U)_SUB_XWRITE_STRING_U=qbs_new(0,0); -int32 pass3431; -int16 pass3432; +int32 pass3433; +int16 pass3434; int32 *_SUB_XWRITE_LONG_B=NULL; if(_SUB_XWRITE_LONG_B==NULL){ _SUB_XWRITE_LONG_B=(int32*)mem_static_malloc(4); @@ -31,10 +31,10 @@ if(_SUB_XWRITE_LONG_I==NULL){ _SUB_XWRITE_LONG_I=(int32*)mem_static_malloc(4); *_SUB_XWRITE_LONG_I=0; } -int64 fornext_value3434; -int64 fornext_finalvalue3434; -int64 fornext_step3434; -uint8 fornext_step_negative3434; +int64 fornext_value3436; +int64 fornext_finalvalue3436; +int64 fornext_step3436; +uint8 fornext_step_negative3436; qbs *_SUB_XWRITE_STRING_A2=NULL; if (!_SUB_XWRITE_STRING_A2)_SUB_XWRITE_STRING_A2=qbs_new(0,0); int32 *_SUB_XWRITE_LONG_NEWLINE=NULL; @@ -54,12 +54,12 @@ if(_SUB_XWRITE_LONG_TYP==NULL){ _SUB_XWRITE_LONG_TYP=(int32*)mem_static_malloc(4); *_SUB_XWRITE_LONG_TYP=0; } -int32 pass3435; -int16 pass3436; -int16 pass3437; +int32 pass3437; int16 pass3438; int16 pass3439; -byte_element_struct *byte_element_3440=NULL; -if (!byte_element_3440){ -if ((mem_static_pointer+=12)tmp||_FUNC_EVALUATECONST_STRING_A2->fixed||_FUNC_EVALUATECONST_STRING_A2->readonly){ -oldstr3441=_FUNC_EVALUATECONST_STRING_A2; -if (oldstr3441->cmem_descriptor){ -_FUNC_EVALUATECONST_STRING_A2=qbs_new_cmem(oldstr3441->len,0); +oldstr3443=_FUNC_EVALUATECONST_STRING_A2; +if (oldstr3443->cmem_descriptor){ +_FUNC_EVALUATECONST_STRING_A2=qbs_new_cmem(oldstr3443->len,0); }else{ -_FUNC_EVALUATECONST_STRING_A2=qbs_new(oldstr3441->len,0); +_FUNC_EVALUATECONST_STRING_A2=qbs_new(oldstr3443->len,0); } -memcpy(_FUNC_EVALUATECONST_STRING_A2->chr,oldstr3441->chr,oldstr3441->len); +memcpy(_FUNC_EVALUATECONST_STRING_A2->chr,oldstr3443->chr,oldstr3443->len); } qbs *_FUNC_EVALUATECONST_STRING_A=NULL; if (!_FUNC_EVALUATECONST_STRING_A)_FUNC_EVALUATECONST_STRING_A=qbs_new(0,0); @@ -58,10 +58,10 @@ if(_FUNC_EVALUATECONST_LONG_I==NULL){ _FUNC_EVALUATECONST_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_EVALUATECONST_LONG_I=0; } -int64 fornext_value3444; -int64 fornext_finalvalue3444; -int64 fornext_step3444; -uint8 fornext_step_negative3444; +int64 fornext_value3446; +int64 fornext_finalvalue3446; +int64 fornext_step3446; +uint8 fornext_step_negative3446; int32 *_FUNC_EVALUATECONST_LONG_L=NULL; if(_FUNC_EVALUATECONST_LONG_L==NULL){ _FUNC_EVALUATECONST_LONG_L=(int32*)mem_static_malloc(4); @@ -72,55 +72,47 @@ if(_FUNC_EVALUATECONST_LONG_B==NULL){ _FUNC_EVALUATECONST_LONG_B=(int32*)mem_static_malloc(4); *_FUNC_EVALUATECONST_LONG_B=0; } -int64 fornext_value3446; -int64 fornext_finalvalue3446; -int64 fornext_step3446; -uint8 fornext_step_negative3446; -qbs *_FUNC_EVALUATECONST_STRING_E=NULL; -if (!_FUNC_EVALUATECONST_STRING_E)_FUNC_EVALUATECONST_STRING_E=qbs_new(0,0); int64 fornext_value3448; int64 fornext_finalvalue3448; int64 fornext_step3448; uint8 fornext_step_negative3448; -byte_element_struct *byte_element_3449=NULL; -if (!byte_element_3449){ -if ((mem_static_pointer+=12)tmp||_FUNC_PARSESTRINGSETTING_STRING_TOKEN->fixed||_FUNC_PARSESTRINGSETTING_STRING_TOKEN->readonly){ -oldstr2206=_FUNC_PARSESTRINGSETTING_STRING_TOKEN; -if (oldstr2206->cmem_descriptor){ -_FUNC_PARSESTRINGSETTING_STRING_TOKEN=qbs_new_cmem(oldstr2206->len,0); +oldstr2208=_FUNC_PARSESTRINGSETTING_STRING_TOKEN; +if (oldstr2208->cmem_descriptor){ +_FUNC_PARSESTRINGSETTING_STRING_TOKEN=qbs_new_cmem(oldstr2208->len,0); }else{ -_FUNC_PARSESTRINGSETTING_STRING_TOKEN=qbs_new(oldstr2206->len,0); +_FUNC_PARSESTRINGSETTING_STRING_TOKEN=qbs_new(oldstr2208->len,0); } -memcpy(_FUNC_PARSESTRINGSETTING_STRING_TOKEN->chr,oldstr2206->chr,oldstr2206->len); +memcpy(_FUNC_PARSESTRINGSETTING_STRING_TOKEN->chr,oldstr2208->chr,oldstr2208->len); } -qbs*oldstr2207=NULL; +qbs*oldstr2209=NULL; if(_FUNC_PARSESTRINGSETTING_STRING_SETTING->tmp||_FUNC_PARSESTRINGSETTING_STRING_SETTING->fixed||_FUNC_PARSESTRINGSETTING_STRING_SETTING->readonly){ -oldstr2207=_FUNC_PARSESTRINGSETTING_STRING_SETTING; -if (oldstr2207->cmem_descriptor){ -_FUNC_PARSESTRINGSETTING_STRING_SETTING=qbs_new_cmem(oldstr2207->len,0); +oldstr2209=_FUNC_PARSESTRINGSETTING_STRING_SETTING; +if (oldstr2209->cmem_descriptor){ +_FUNC_PARSESTRINGSETTING_STRING_SETTING=qbs_new_cmem(oldstr2209->len,0); }else{ -_FUNC_PARSESTRINGSETTING_STRING_SETTING=qbs_new(oldstr2207->len,0); +_FUNC_PARSESTRINGSETTING_STRING_SETTING=qbs_new(oldstr2209->len,0); } -memcpy(_FUNC_PARSESTRINGSETTING_STRING_SETTING->chr,oldstr2207->chr,oldstr2207->len); +memcpy(_FUNC_PARSESTRINGSETTING_STRING_SETTING->chr,oldstr2209->chr,oldstr2209->len); } int32 *_FUNC_PARSESTRINGSETTING_LONG_EQUALS=NULL; if(_FUNC_PARSESTRINGSETTING_LONG_EQUALS==NULL){ diff --git a/internal/source/data63.txt b/internal/source/data63.txt index 59b6aae78..7edbeb50a 100644 --- a/internal/source/data63.txt +++ b/internal/source/data63.txt @@ -1,14 +1,14 @@ qbs *_FUNC_SYMBOL2FULLTYPENAME_STRING_SYMBOL2FULLTYPENAME=NULL; if (!_FUNC_SYMBOL2FULLTYPENAME_STRING_SYMBOL2FULLTYPENAME)_FUNC_SYMBOL2FULLTYPENAME_STRING_SYMBOL2FULLTYPENAME=qbs_new(0,0); -qbs*oldstr3469=NULL; +qbs*oldstr3471=NULL; if(_FUNC_SYMBOL2FULLTYPENAME_STRING_S2->tmp||_FUNC_SYMBOL2FULLTYPENAME_STRING_S2->fixed||_FUNC_SYMBOL2FULLTYPENAME_STRING_S2->readonly){ -oldstr3469=_FUNC_SYMBOL2FULLTYPENAME_STRING_S2; -if (oldstr3469->cmem_descriptor){ -_FUNC_SYMBOL2FULLTYPENAME_STRING_S2=qbs_new_cmem(oldstr3469->len,0); +oldstr3471=_FUNC_SYMBOL2FULLTYPENAME_STRING_S2; +if (oldstr3471->cmem_descriptor){ +_FUNC_SYMBOL2FULLTYPENAME_STRING_S2=qbs_new_cmem(oldstr3471->len,0); }else{ -_FUNC_SYMBOL2FULLTYPENAME_STRING_S2=qbs_new(oldstr3469->len,0); +_FUNC_SYMBOL2FULLTYPENAME_STRING_S2=qbs_new(oldstr3471->len,0); } -memcpy(_FUNC_SYMBOL2FULLTYPENAME_STRING_S2->chr,oldstr3469->chr,oldstr3469->len); +memcpy(_FUNC_SYMBOL2FULLTYPENAME_STRING_S2->chr,oldstr3471->chr,oldstr3471->len); } qbs *_FUNC_SYMBOL2FULLTYPENAME_STRING_S=NULL; if (!_FUNC_SYMBOL2FULLTYPENAME_STRING_S)_FUNC_SYMBOL2FULLTYPENAME_STRING_S=qbs_new(0,0); @@ -19,42 +19,42 @@ _FUNC_SYMBOL2FULLTYPENAME_LONG_U=(int32*)mem_static_malloc(4); } qbs *_FUNC_SYMBOL2FULLTYPENAME_STRING_TYP=NULL; if (!_FUNC_SYMBOL2FULLTYPENAME_STRING_TYP)_FUNC_SYMBOL2FULLTYPENAME_STRING_TYP=qbs_new(0,0); -byte_element_struct *byte_element_3470=NULL; -if (!byte_element_3470){ -if ((mem_static_pointer+=12)tmp||_SUB_LINEINPUT3LOAD_STRING_F->fixed||_SUB_LINEINPUT3LOAD_STRING_F->readonly){ -oldstr3478=_SUB_LINEINPUT3LOAD_STRING_F; -if (oldstr3478->cmem_descriptor){ -_SUB_LINEINPUT3LOAD_STRING_F=qbs_new_cmem(oldstr3478->len,0); +oldstr3480=_SUB_LINEINPUT3LOAD_STRING_F; +if (oldstr3480->cmem_descriptor){ +_SUB_LINEINPUT3LOAD_STRING_F=qbs_new_cmem(oldstr3480->len,0); }else{ -_SUB_LINEINPUT3LOAD_STRING_F=qbs_new(oldstr3478->len,0); +_SUB_LINEINPUT3LOAD_STRING_F=qbs_new(oldstr3480->len,0); } -memcpy(_SUB_LINEINPUT3LOAD_STRING_F->chr,oldstr3478->chr,oldstr3478->len); +memcpy(_SUB_LINEINPUT3LOAD_STRING_F->chr,oldstr3480->chr,oldstr3480->len); } int32 *_SUB_LINEINPUT3LOAD_LONG_L=NULL; if(_SUB_LINEINPUT3LOAD_LONG_L==NULL){ _SUB_LINEINPUT3LOAD_LONG_L=(int32*)mem_static_malloc(4); *_SUB_LINEINPUT3LOAD_LONG_L=0; } -byte_element_struct *byte_element_3479=NULL; -if (!byte_element_3479){ -if ((mem_static_pointer+=12)tmp||_FUNC_ELEUCASE_STRING_A->fixed||_FUNC_ELEUCASE_STRING_A->readonly){ -oldstr3482=_FUNC_ELEUCASE_STRING_A; -if (oldstr3482->cmem_descriptor){ -_FUNC_ELEUCASE_STRING_A=qbs_new_cmem(oldstr3482->len,0); +oldstr3484=_FUNC_ELEUCASE_STRING_A; +if (oldstr3484->cmem_descriptor){ +_FUNC_ELEUCASE_STRING_A=qbs_new_cmem(oldstr3484->len,0); }else{ -_FUNC_ELEUCASE_STRING_A=qbs_new(oldstr3482->len,0); +_FUNC_ELEUCASE_STRING_A=qbs_new(oldstr3484->len,0); } -memcpy(_FUNC_ELEUCASE_STRING_A->chr,oldstr3482->chr,oldstr3482->len); +memcpy(_FUNC_ELEUCASE_STRING_A->chr,oldstr3484->chr,oldstr3484->len); } -byte_element_struct *byte_element_3483=NULL; -if (!byte_element_3483){ -if ((mem_static_pointer+=12)tmp||_FUNC_EVALUATE_EXPRESSION_STRING_E->fixed||_FUNC_EVALUATE_EXPRESSION_STRING_E->readonly){ -oldstr3489=_FUNC_EVALUATE_EXPRESSION_STRING_E; -if (oldstr3489->cmem_descriptor){ -_FUNC_EVALUATE_EXPRESSION_STRING_E=qbs_new_cmem(oldstr3489->len,0); +oldstr3491=_FUNC_EVALUATE_EXPRESSION_STRING_E; +if (oldstr3491->cmem_descriptor){ +_FUNC_EVALUATE_EXPRESSION_STRING_E=qbs_new_cmem(oldstr3491->len,0); }else{ -_FUNC_EVALUATE_EXPRESSION_STRING_E=qbs_new(oldstr3489->len,0); +_FUNC_EVALUATE_EXPRESSION_STRING_E=qbs_new(oldstr3491->len,0); } -memcpy(_FUNC_EVALUATE_EXPRESSION_STRING_E->chr,oldstr3489->chr,oldstr3489->len); +memcpy(_FUNC_EVALUATE_EXPRESSION_STRING_E->chr,oldstr3491->chr,oldstr3491->len); } qbs *_FUNC_EVALUATE_EXPRESSION_STRING_T=NULL; if (!_FUNC_EVALUATE_EXPRESSION_STRING_T)_FUNC_EVALUATE_EXPRESSION_STRING_T=qbs_new(0,0); @@ -31,8 +31,8 @@ _FUNC_EVALUATE_EXPRESSION_LONG_S=(int32*)mem_static_malloc(4); } qbs *_FUNC_EVALUATE_EXPRESSION_STRING_EVAL=NULL; if (!_FUNC_EVALUATE_EXPRESSION_STRING_EVAL)_FUNC_EVALUATE_EXPRESSION_STRING_EVAL=qbs_new(0,0); -static qbs *sc_3493=qbs_new(0,0); -byte_element_struct *byte_element_3494=NULL; -if (!byte_element_3494){ -if ((mem_static_pointer+=12)tmp||_SUB_PARSEEXPRESSION_STRING_EXP->fixed||_SUB_PARSEEXPRESSION_STRING_EXP->readonly){ -oldstr3495=_SUB_PARSEEXPRESSION_STRING_EXP; -if (oldstr3495->cmem_descriptor){ -_SUB_PARSEEXPRESSION_STRING_EXP=qbs_new_cmem(oldstr3495->len,0); +oldstr3497=_SUB_PARSEEXPRESSION_STRING_EXP; +if (oldstr3497->cmem_descriptor){ +_SUB_PARSEEXPRESSION_STRING_EXP=qbs_new_cmem(oldstr3497->len,0); }else{ -_SUB_PARSEEXPRESSION_STRING_EXP=qbs_new(oldstr3495->len,0); +_SUB_PARSEEXPRESSION_STRING_EXP=qbs_new(oldstr3497->len,0); } -memcpy(_SUB_PARSEEXPRESSION_STRING_EXP->chr,oldstr3495->chr,oldstr3495->len); +memcpy(_SUB_PARSEEXPRESSION_STRING_EXP->chr,oldstr3497->chr,oldstr3497->len); } ptrszint *_SUB_PARSEEXPRESSION_ARRAY_STRING_NUM=NULL; if (!_SUB_PARSEEXPRESSION_ARRAY_STRING_NUM){ @@ -25,23 +25,23 @@ if(_SUB_PARSEEXPRESSION_LONG_J==NULL){ _SUB_PARSEEXPRESSION_LONG_J=(int32*)mem_static_malloc(4); *_SUB_PARSEEXPRESSION_LONG_J=0; } -int64 fornext_value3497; -int64 fornext_finalvalue3497; -int64 fornext_step3497; -uint8 fornext_step_negative3497; +int64 fornext_value3499; +int64 fornext_finalvalue3499; +int64 fornext_step3499; +uint8 fornext_step_negative3499; int32 *_SUB_PARSEEXPRESSION_LONG_LOWEST=NULL; if(_SUB_PARSEEXPRESSION_LONG_LOWEST==NULL){ _SUB_PARSEEXPRESSION_LONG_LOWEST=(int32*)mem_static_malloc(4); *_SUB_PARSEEXPRESSION_LONG_LOWEST=0; } -byte_element_struct *byte_element_3498=NULL; -if (!byte_element_3498){ -if ((mem_static_pointer+=12)tmp||_FUNC_DWD_STRING_EXP->fixed||_FUNC_DWD_STRING_EXP->readonly){ -oldstr3526=_FUNC_DWD_STRING_EXP; -if (oldstr3526->cmem_descriptor){ -_FUNC_DWD_STRING_EXP=qbs_new_cmem(oldstr3526->len,0); +oldstr3528=_FUNC_DWD_STRING_EXP; +if (oldstr3528->cmem_descriptor){ +_FUNC_DWD_STRING_EXP=qbs_new_cmem(oldstr3528->len,0); }else{ -_FUNC_DWD_STRING_EXP=qbs_new(oldstr3526->len,0); +_FUNC_DWD_STRING_EXP=qbs_new(oldstr3528->len,0); } -memcpy(_FUNC_DWD_STRING_EXP->chr,oldstr3526->chr,oldstr3526->len); +memcpy(_FUNC_DWD_STRING_EXP->chr,oldstr3528->chr,oldstr3528->len); } qbs *_FUNC_DWD_STRING_T=NULL; if (!_FUNC_DWD_STRING_T)_FUNC_DWD_STRING_T=qbs_new(0,0); diff --git a/internal/source/data73.txt b/internal/source/data73.txt index ce8303ed9..a3cda8021 100644 --- a/internal/source/data73.txt +++ b/internal/source/data73.txt @@ -1,12 +1,12 @@ -qbs*oldstr3532=NULL; +qbs*oldstr3534=NULL; if(_SUB_PREPARSE_STRING_E->tmp||_SUB_PREPARSE_STRING_E->fixed||_SUB_PREPARSE_STRING_E->readonly){ -oldstr3532=_SUB_PREPARSE_STRING_E; -if (oldstr3532->cmem_descriptor){ -_SUB_PREPARSE_STRING_E=qbs_new_cmem(oldstr3532->len,0); +oldstr3534=_SUB_PREPARSE_STRING_E; +if (oldstr3534->cmem_descriptor){ +_SUB_PREPARSE_STRING_E=qbs_new_cmem(oldstr3534->len,0); }else{ -_SUB_PREPARSE_STRING_E=qbs_new(oldstr3532->len,0); +_SUB_PREPARSE_STRING_E=qbs_new(oldstr3534->len,0); } -memcpy(_SUB_PREPARSE_STRING_E->chr,oldstr3532->chr,oldstr3532->len); +memcpy(_SUB_PREPARSE_STRING_E->chr,oldstr3534->chr,oldstr3534->len); } long double *_SUB_PREPARSE_FLOAT_F=NULL; if(_SUB_PREPARSE_FLOAT_F==NULL){ @@ -20,13 +20,13 @@ _SUB_PREPARSE_LONG_I=(int32*)mem_static_malloc(4); } qbs *_SUB_PREPARSE_STRING_T=NULL; if (!_SUB_PREPARSE_STRING_T)_SUB_PREPARSE_STRING_T=qbs_new(0,0); -int64 fornext_value3534; -int64 fornext_finalvalue3534; -int64 fornext_step3534; -uint8 fornext_step_negative3534; -byte_element_struct *byte_element_3535=NULL; -if (!byte_element_3535){ -if ((mem_static_pointer+=12)tmp||_SUB_VERIFYSTRING_STRING_T->fixed||_SUB_VERIFYSTRING_STRING_T->readonly){ -oldstr3587=_SUB_VERIFYSTRING_STRING_T; -if (oldstr3587->cmem_descriptor){ -_SUB_VERIFYSTRING_STRING_T=qbs_new_cmem(oldstr3587->len,0); +oldstr3589=_SUB_VERIFYSTRING_STRING_T; +if (oldstr3589->cmem_descriptor){ +_SUB_VERIFYSTRING_STRING_T=qbs_new_cmem(oldstr3589->len,0); }else{ -_SUB_VERIFYSTRING_STRING_T=qbs_new(oldstr3587->len,0); +_SUB_VERIFYSTRING_STRING_T=qbs_new(oldstr3589->len,0); } -memcpy(_SUB_VERIFYSTRING_STRING_T->chr,oldstr3587->chr,oldstr3587->len); +memcpy(_SUB_VERIFYSTRING_STRING_T->chr,oldstr3589->chr,oldstr3589->len); } int32 *_SUB_VERIFYSTRING_LONG_J=NULL; if(_SUB_VERIFYSTRING_LONG_J==NULL){ @@ -30,18 +30,10 @@ if(_SUB_VERIFYSTRING_LONG_I==NULL){ _SUB_VERIFYSTRING_LONG_I=(int32*)mem_static_malloc(4); *_SUB_VERIFYSTRING_LONG_I=0; } -int64 fornext_value3591; -int64 fornext_finalvalue3591; -int64 fornext_step3591; -uint8 fornext_step_negative3591; -byte_element_struct *byte_element_3592=NULL; -if (!byte_element_3592){ -if ((mem_static_pointer+=12)tmp||_FUNC_N2S_STRING_EXP->fixed||_FUNC_N2S_STRING_EXP->readonly){ -oldstr3596=_FUNC_N2S_STRING_EXP; -if (oldstr3596->cmem_descriptor){ -_FUNC_N2S_STRING_EXP=qbs_new_cmem(oldstr3596->len,0); +oldstr3598=_FUNC_N2S_STRING_EXP; +if (oldstr3598->cmem_descriptor){ +_FUNC_N2S_STRING_EXP=qbs_new_cmem(oldstr3598->len,0); }else{ -_FUNC_N2S_STRING_EXP=qbs_new(oldstr3596->len,0); +_FUNC_N2S_STRING_EXP=qbs_new(oldstr3598->len,0); } -memcpy(_FUNC_N2S_STRING_EXP->chr,oldstr3596->chr,oldstr3596->len); +memcpy(_FUNC_N2S_STRING_EXP->chr,oldstr3598->chr,oldstr3598->len); } qbs *_FUNC_N2S_STRING_T=NULL; if (!_FUNC_N2S_STRING_T)_FUNC_N2S_STRING_T=qbs_new(0,0); @@ -53,20 +53,20 @@ if(_FUNC_N2S_INTEGER64_R==NULL){ _FUNC_N2S_INTEGER64_R=(int64*)mem_static_malloc(8); *_FUNC_N2S_INTEGER64_R=0; } -byte_element_struct *byte_element_3598=NULL; -if (!byte_element_3598){ -if ((mem_static_pointer+=12)tmp||_FUNC_QUOTEDFILENAME_STRING_F->fixed||_FUNC_QUOTEDFILENAME_STRING_F->readonly){ -oldstr3604=_FUNC_QUOTEDFILENAME_STRING_F; -if (oldstr3604->cmem_descriptor){ -_FUNC_QUOTEDFILENAME_STRING_F=qbs_new_cmem(oldstr3604->len,0); +oldstr3606=_FUNC_QUOTEDFILENAME_STRING_F; +if (oldstr3606->cmem_descriptor){ +_FUNC_QUOTEDFILENAME_STRING_F=qbs_new_cmem(oldstr3606->len,0); }else{ -_FUNC_QUOTEDFILENAME_STRING_F=qbs_new(oldstr3604->len,0); +_FUNC_QUOTEDFILENAME_STRING_F=qbs_new(oldstr3606->len,0); } -memcpy(_FUNC_QUOTEDFILENAME_STRING_F->chr,oldstr3604->chr,oldstr3604->len); +memcpy(_FUNC_QUOTEDFILENAME_STRING_F->chr,oldstr3606->chr,oldstr3606->len); } diff --git a/internal/source/data77.txt b/internal/source/data77.txt index f327d4b0f..4a27a30a9 100644 --- a/internal/source/data77.txt +++ b/internal/source/data77.txt @@ -3,24 +3,24 @@ if(_FUNC_HASHVALUE_LONG_HASHVALUE==NULL){ _FUNC_HASHVALUE_LONG_HASHVALUE=(int32*)mem_static_malloc(4); *_FUNC_HASHVALUE_LONG_HASHVALUE=0; } -qbs*oldstr3605=NULL; +qbs*oldstr3607=NULL; if(_FUNC_HASHVALUE_STRING_A->tmp||_FUNC_HASHVALUE_STRING_A->fixed||_FUNC_HASHVALUE_STRING_A->readonly){ -oldstr3605=_FUNC_HASHVALUE_STRING_A; -if (oldstr3605->cmem_descriptor){ -_FUNC_HASHVALUE_STRING_A=qbs_new_cmem(oldstr3605->len,0); +oldstr3607=_FUNC_HASHVALUE_STRING_A; +if (oldstr3607->cmem_descriptor){ +_FUNC_HASHVALUE_STRING_A=qbs_new_cmem(oldstr3607->len,0); }else{ -_FUNC_HASHVALUE_STRING_A=qbs_new(oldstr3605->len,0); +_FUNC_HASHVALUE_STRING_A=qbs_new(oldstr3607->len,0); } -memcpy(_FUNC_HASHVALUE_STRING_A->chr,oldstr3605->chr,oldstr3605->len); +memcpy(_FUNC_HASHVALUE_STRING_A->chr,oldstr3607->chr,oldstr3607->len); } int32 *_FUNC_HASHVALUE_LONG_L=NULL; if(_FUNC_HASHVALUE_LONG_L==NULL){ _FUNC_HASHVALUE_LONG_L=(int32*)mem_static_malloc(4); *_FUNC_HASHVALUE_LONG_L=0; } -byte_element_struct *byte_element_3606=NULL; -if (!byte_element_3606){ -if ((mem_static_pointer+=12)tmp||_SUB_HASHADD_STRING_A->fixed||_SUB_HASHADD_STRING_A->readonly){ -oldstr3609=_SUB_HASHADD_STRING_A; -if (oldstr3609->cmem_descriptor){ -_SUB_HASHADD_STRING_A=qbs_new_cmem(oldstr3609->len,0); +oldstr3611=_SUB_HASHADD_STRING_A; +if (oldstr3611->cmem_descriptor){ +_SUB_HASHADD_STRING_A=qbs_new_cmem(oldstr3611->len,0); }else{ -_SUB_HASHADD_STRING_A=qbs_new(oldstr3609->len,0); +_SUB_HASHADD_STRING_A=qbs_new(oldstr3611->len,0); } -memcpy(_SUB_HASHADD_STRING_A->chr,oldstr3609->chr,oldstr3609->len); +memcpy(_SUB_HASHADD_STRING_A->chr,oldstr3611->chr,oldstr3611->len); } int32 *_SUB_HASHADD_LONG_I=NULL; if(_SUB_HASHADD_LONG_I==NULL){ diff --git a/internal/source/data79.txt b/internal/source/data79.txt index 8c0c27be3..c10819474 100644 --- a/internal/source/data79.txt +++ b/internal/source/data79.txt @@ -3,15 +3,15 @@ if(_FUNC_HASHFIND_LONG_HASHFIND==NULL){ _FUNC_HASHFIND_LONG_HASHFIND=(int32*)mem_static_malloc(4); *_FUNC_HASHFIND_LONG_HASHFIND=0; } -qbs*oldstr3610=NULL; +qbs*oldstr3612=NULL; if(_FUNC_HASHFIND_STRING_A->tmp||_FUNC_HASHFIND_STRING_A->fixed||_FUNC_HASHFIND_STRING_A->readonly){ -oldstr3610=_FUNC_HASHFIND_STRING_A; -if (oldstr3610->cmem_descriptor){ -_FUNC_HASHFIND_STRING_A=qbs_new_cmem(oldstr3610->len,0); +oldstr3612=_FUNC_HASHFIND_STRING_A; +if (oldstr3612->cmem_descriptor){ +_FUNC_HASHFIND_STRING_A=qbs_new_cmem(oldstr3612->len,0); }else{ -_FUNC_HASHFIND_STRING_A=qbs_new(oldstr3610->len,0); +_FUNC_HASHFIND_STRING_A=qbs_new(oldstr3612->len,0); } -memcpy(_FUNC_HASHFIND_STRING_A->chr,oldstr3610->chr,oldstr3610->len); +memcpy(_FUNC_HASHFIND_STRING_A->chr,oldstr3612->chr,oldstr3612->len); } int32 *_FUNC_HASHFIND_LONG_I=NULL; if(_FUNC_HASHFIND_LONG_I==NULL){ @@ -20,9 +20,9 @@ _FUNC_HASHFIND_LONG_I=(int32*)mem_static_malloc(4); } qbs *_FUNC_HASHFIND_STRING_UA=NULL; if (!_FUNC_HASHFIND_STRING_UA)_FUNC_HASHFIND_STRING_UA=qbs_new(0,0); -byte_element_struct *byte_element_3611=NULL; -if (!byte_element_3611){ -if ((mem_static_pointer+=12)tmp||_FUNC_ALLOCARRAY_STRING_N2->fixed||_FUNC_ALLOCARRAY_STRING_N2->readonly){ -oldstr2208=_FUNC_ALLOCARRAY_STRING_N2; -if (oldstr2208->cmem_descriptor){ -_FUNC_ALLOCARRAY_STRING_N2=qbs_new_cmem(oldstr2208->len,0); +oldstr2210=_FUNC_ALLOCARRAY_STRING_N2; +if (oldstr2210->cmem_descriptor){ +_FUNC_ALLOCARRAY_STRING_N2=qbs_new_cmem(oldstr2210->len,0); }else{ -_FUNC_ALLOCARRAY_STRING_N2=qbs_new(oldstr2208->len,0); +_FUNC_ALLOCARRAY_STRING_N2=qbs_new(oldstr2210->len,0); } -memcpy(_FUNC_ALLOCARRAY_STRING_N2->chr,oldstr2208->chr,oldstr2208->len); +memcpy(_FUNC_ALLOCARRAY_STRING_N2->chr,oldstr2210->chr,oldstr2210->len); } -qbs*oldstr2209=NULL; +qbs*oldstr2211=NULL; if(_FUNC_ALLOCARRAY_STRING_ELEMENTS->tmp||_FUNC_ALLOCARRAY_STRING_ELEMENTS->fixed||_FUNC_ALLOCARRAY_STRING_ELEMENTS->readonly){ -oldstr2209=_FUNC_ALLOCARRAY_STRING_ELEMENTS; -if (oldstr2209->cmem_descriptor){ -_FUNC_ALLOCARRAY_STRING_ELEMENTS=qbs_new_cmem(oldstr2209->len,0); +oldstr2211=_FUNC_ALLOCARRAY_STRING_ELEMENTS; +if (oldstr2211->cmem_descriptor){ +_FUNC_ALLOCARRAY_STRING_ELEMENTS=qbs_new_cmem(oldstr2211->len,0); }else{ -_FUNC_ALLOCARRAY_STRING_ELEMENTS=qbs_new(oldstr2209->len,0); +_FUNC_ALLOCARRAY_STRING_ELEMENTS=qbs_new(oldstr2211->len,0); } -memcpy(_FUNC_ALLOCARRAY_STRING_ELEMENTS->chr,oldstr2209->chr,oldstr2209->len); +memcpy(_FUNC_ALLOCARRAY_STRING_ELEMENTS->chr,oldstr2211->chr,oldstr2211->len); } int32 *_FUNC_ALLOCARRAY_LONG_DIMSHAREDLAST=NULL; if(_FUNC_ALLOCARRAY_LONG_DIMSHAREDLAST==NULL){ @@ -56,13 +56,13 @@ if(_FUNC_ALLOCARRAY_LONG_NUME==NULL){ _FUNC_ALLOCARRAY_LONG_NUME=(int32*)mem_static_malloc(4); *_FUNC_ALLOCARRAY_LONG_NUME=0; } -byte_element_struct *byte_element_2210=NULL; -if (!byte_element_2210){ -if ((mem_static_pointer+=12)tmp||_FUNC_HASHFINDREV_STRING_A->fixed||_FUNC_HASHFINDREV_STRING_A->readonly){ -oldstr3612=_FUNC_HASHFINDREV_STRING_A; -if (oldstr3612->cmem_descriptor){ -_FUNC_HASHFINDREV_STRING_A=qbs_new_cmem(oldstr3612->len,0); +oldstr3614=_FUNC_HASHFINDREV_STRING_A; +if (oldstr3614->cmem_descriptor){ +_FUNC_HASHFINDREV_STRING_A=qbs_new_cmem(oldstr3614->len,0); }else{ -_FUNC_HASHFINDREV_STRING_A=qbs_new(oldstr3612->len,0); +_FUNC_HASHFINDREV_STRING_A=qbs_new(oldstr3614->len,0); } -memcpy(_FUNC_HASHFINDREV_STRING_A->chr,oldstr3612->chr,oldstr3612->len); +memcpy(_FUNC_HASHFINDREV_STRING_A->chr,oldstr3614->chr,oldstr3614->len); } int32 *_FUNC_HASHFINDREV_LONG_I=NULL; if(_FUNC_HASHFINDREV_LONG_I==NULL){ @@ -20,9 +20,9 @@ _FUNC_HASHFINDREV_LONG_I=(int32*)mem_static_malloc(4); } qbs *_FUNC_HASHFINDREV_STRING_UA=NULL; if (!_FUNC_HASHFINDREV_STRING_UA)_FUNC_HASHFINDREV_STRING_UA=qbs_new(0,0); -byte_element_struct *byte_element_3613=NULL; -if (!byte_element_3613){ -if ((mem_static_pointer+=12)tmp||_FUNC_REMOVECAST_STRING_A->fixed||_FUNC_REMOVECAST_STRING_A->readonly){ -oldstr3623=_FUNC_REMOVECAST_STRING_A; -if (oldstr3623->cmem_descriptor){ -_FUNC_REMOVECAST_STRING_A=qbs_new_cmem(oldstr3623->len,0); +oldstr3625=_FUNC_REMOVECAST_STRING_A; +if (oldstr3625->cmem_descriptor){ +_FUNC_REMOVECAST_STRING_A=qbs_new_cmem(oldstr3625->len,0); }else{ -_FUNC_REMOVECAST_STRING_A=qbs_new(oldstr3623->len,0); +_FUNC_REMOVECAST_STRING_A=qbs_new(oldstr3625->len,0); } -memcpy(_FUNC_REMOVECAST_STRING_A->chr,oldstr3623->chr,oldstr3623->len); +memcpy(_FUNC_REMOVECAST_STRING_A->chr,oldstr3625->chr,oldstr3625->len); } -byte_element_struct *byte_element_3624=NULL; -if (!byte_element_3624){ -if ((mem_static_pointer+=12)tmp||_FUNC_CONVERTTABS_STRING_A2->fixed||_FUNC_CONVERTTABS_STRING_A2->readonly){ -oldstr3625=_FUNC_CONVERTTABS_STRING_A2; -if (oldstr3625->cmem_descriptor){ -_FUNC_CONVERTTABS_STRING_A2=qbs_new_cmem(oldstr3625->len,0); +oldstr3627=_FUNC_CONVERTTABS_STRING_A2; +if (oldstr3627->cmem_descriptor){ +_FUNC_CONVERTTABS_STRING_A2=qbs_new_cmem(oldstr3627->len,0); }else{ -_FUNC_CONVERTTABS_STRING_A2=qbs_new(oldstr3625->len,0); +_FUNC_CONVERTTABS_STRING_A2=qbs_new(oldstr3627->len,0); } -memcpy(_FUNC_CONVERTTABS_STRING_A2->chr,oldstr3625->chr,oldstr3625->len); +memcpy(_FUNC_CONVERTTABS_STRING_A2->chr,oldstr3627->chr,oldstr3627->len); } int32 *_FUNC_CONVERTTABS_LONG_S=NULL; if(_FUNC_CONVERTTABS_LONG_S==NULL){ @@ -22,7 +22,7 @@ if(_FUNC_CONVERTTABS_LONG_X==NULL){ _FUNC_CONVERTTABS_LONG_X=(int32*)mem_static_malloc(4); *_FUNC_CONVERTTABS_LONG_X=0; } -byte_element_struct *byte_element_3627=NULL; -if (!byte_element_3627){ -if ((mem_static_pointer+=12)tmp||_FUNC_VALIDNAME_STRING_A->fixed||_FUNC_VALIDNAME_STRING_A->readonly){ -oldstr3634=_FUNC_VALIDNAME_STRING_A; -if (oldstr3634->cmem_descriptor){ -_FUNC_VALIDNAME_STRING_A=qbs_new_cmem(oldstr3634->len,0); +oldstr3636=_FUNC_VALIDNAME_STRING_A; +if (oldstr3636->cmem_descriptor){ +_FUNC_VALIDNAME_STRING_A=qbs_new_cmem(oldstr3636->len,0); }else{ -_FUNC_VALIDNAME_STRING_A=qbs_new(oldstr3634->len,0); +_FUNC_VALIDNAME_STRING_A=qbs_new(oldstr3636->len,0); } -memcpy(_FUNC_VALIDNAME_STRING_A->chr,oldstr3634->chr,oldstr3634->len); +memcpy(_FUNC_VALIDNAME_STRING_A->chr,oldstr3636->chr,oldstr3636->len); } int32 *_FUNC_VALIDNAME_LONG_L=NULL; if(_FUNC_VALIDNAME_LONG_L==NULL){ _FUNC_VALIDNAME_LONG_L=(int32*)mem_static_malloc(4); *_FUNC_VALIDNAME_LONG_L=0; } -byte_element_struct *byte_element_3635=NULL; -if (!byte_element_3635){ -if ((mem_static_pointer+=12)tmp||_FUNC_ARRAYREFERENCE_STRING_INDEXES->fixed||_FUNC_ARRAYREFERENCE_STRING_INDEXES->readonly){ -oldstr2294=_FUNC_ARRAYREFERENCE_STRING_INDEXES; -if (oldstr2294->cmem_descriptor){ -_FUNC_ARRAYREFERENCE_STRING_INDEXES=qbs_new_cmem(oldstr2294->len,0); +oldstr2296=_FUNC_ARRAYREFERENCE_STRING_INDEXES; +if (oldstr2296->cmem_descriptor){ +_FUNC_ARRAYREFERENCE_STRING_INDEXES=qbs_new_cmem(oldstr2296->len,0); }else{ -_FUNC_ARRAYREFERENCE_STRING_INDEXES=qbs_new(oldstr2294->len,0); +_FUNC_ARRAYREFERENCE_STRING_INDEXES=qbs_new(oldstr2296->len,0); } -memcpy(_FUNC_ARRAYREFERENCE_STRING_INDEXES->chr,oldstr2294->chr,oldstr2294->len); +memcpy(_FUNC_ARRAYREFERENCE_STRING_INDEXES->chr,oldstr2296->chr,oldstr2296->len); } qbs *_FUNC_ARRAYREFERENCE_STRING_IDNUMBER=NULL; if (!_FUNC_ARRAYREFERENCE_STRING_IDNUMBER)_FUNC_ARRAYREFERENCE_STRING_IDNUMBER=qbs_new(0,0); @@ -44,10 +44,10 @@ if(_FUNC_ARRAYREFERENCE_LONG_I==NULL){ _FUNC_ARRAYREFERENCE_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_ARRAYREFERENCE_LONG_I=0; } -int64 fornext_value2296; -int64 fornext_finalvalue2296; -int64 fornext_step2296; -uint8 fornext_step_negative2296; +int64 fornext_value2298; +int64 fornext_finalvalue2298; +int64 fornext_step2298; +uint8 fornext_step_negative2298; int32 *_FUNC_ARRAYREFERENCE_LONG_A=NULL; if(_FUNC_ARRAYREFERENCE_LONG_A==NULL){ _FUNC_ARRAYREFERENCE_LONG_A=(int32*)mem_static_malloc(4); @@ -63,27 +63,27 @@ if(_FUNC_ARRAYREFERENCE_LONG_FIRSTI==NULL){ _FUNC_ARRAYREFERENCE_LONG_FIRSTI=(int32*)mem_static_malloc(4); *_FUNC_ARRAYREFERENCE_LONG_FIRSTI=0; } -int64 fornext_value2298; -int64 fornext_finalvalue2298; -int64 fornext_step2298; -uint8 fornext_step_negative2298; +int64 fornext_value2300; +int64 fornext_finalvalue2300; +int64 fornext_step2300; +uint8 fornext_step_negative2300; qbs *_FUNC_ARRAYREFERENCE_STRING_L=NULL; if (!_FUNC_ARRAYREFERENCE_STRING_L)_FUNC_ARRAYREFERENCE_STRING_L=qbs_new(0,0); qbs *_FUNC_ARRAYREFERENCE_STRING_E=NULL; if (!_FUNC_ARRAYREFERENCE_STRING_E)_FUNC_ARRAYREFERENCE_STRING_E=qbs_new(0,0); -int32 pass2299; -int32 pass2300; int32 pass2301; +int32 pass2302; +int32 pass2303; int32 *_FUNC_ARRAYREFERENCE_LONG_ARGI=NULL; if(_FUNC_ARRAYREFERENCE_LONG_ARGI==NULL){ _FUNC_ARRAYREFERENCE_LONG_ARGI=(int32*)mem_static_malloc(4); *_FUNC_ARRAYREFERENCE_LONG_ARGI=0; } -int32 pass2302; -int32 pass2303; int32 pass2304; int32 pass2305; -byte_element_struct *byte_element_2306=NULL; -if (!byte_element_2306){ -if ((mem_static_pointer+=12)tmp||_SUB_GIVE_ERROR_STRING_A->fixed||_SUB_GIVE_ERROR_STRING_A->readonly){ -oldstr3641=_SUB_GIVE_ERROR_STRING_A; -if (oldstr3641->cmem_descriptor){ -_SUB_GIVE_ERROR_STRING_A=qbs_new_cmem(oldstr3641->len,0); +oldstr3643=_SUB_GIVE_ERROR_STRING_A; +if (oldstr3643->cmem_descriptor){ +_SUB_GIVE_ERROR_STRING_A=qbs_new_cmem(oldstr3643->len,0); }else{ -_SUB_GIVE_ERROR_STRING_A=qbs_new(oldstr3641->len,0); +_SUB_GIVE_ERROR_STRING_A=qbs_new(oldstr3643->len,0); } -memcpy(_SUB_GIVE_ERROR_STRING_A->chr,oldstr3641->chr,oldstr3641->len); +memcpy(_SUB_GIVE_ERROR_STRING_A->chr,oldstr3643->chr,oldstr3643->len); } diff --git a/internal/source/data91.txt b/internal/source/data91.txt index a0e469956..3161a6b96 100644 --- a/internal/source/data91.txt +++ b/internal/source/data91.txt @@ -1,30 +1,30 @@ -qbs*oldstr3642=NULL; -if(_SUB_WRITECONFIGSETTING_STRING_SECTION->tmp||_SUB_WRITECONFIGSETTING_STRING_SECTION->fixed||_SUB_WRITECONFIGSETTING_STRING_SECTION->readonly){ -oldstr3642=_SUB_WRITECONFIGSETTING_STRING_SECTION; -if (oldstr3642->cmem_descriptor){ -_SUB_WRITECONFIGSETTING_STRING_SECTION=qbs_new_cmem(oldstr3642->len,0); -}else{ -_SUB_WRITECONFIGSETTING_STRING_SECTION=qbs_new(oldstr3642->len,0); -} -memcpy(_SUB_WRITECONFIGSETTING_STRING_SECTION->chr,oldstr3642->chr,oldstr3642->len); -} -qbs*oldstr3643=NULL; -if(_SUB_WRITECONFIGSETTING_STRING_ITEM->tmp||_SUB_WRITECONFIGSETTING_STRING_ITEM->fixed||_SUB_WRITECONFIGSETTING_STRING_ITEM->readonly){ -oldstr3643=_SUB_WRITECONFIGSETTING_STRING_ITEM; -if (oldstr3643->cmem_descriptor){ -_SUB_WRITECONFIGSETTING_STRING_ITEM=qbs_new_cmem(oldstr3643->len,0); -}else{ -_SUB_WRITECONFIGSETTING_STRING_ITEM=qbs_new(oldstr3643->len,0); -} -memcpy(_SUB_WRITECONFIGSETTING_STRING_ITEM->chr,oldstr3643->chr,oldstr3643->len); -} qbs*oldstr3644=NULL; -if(_SUB_WRITECONFIGSETTING_STRING_VALUE->tmp||_SUB_WRITECONFIGSETTING_STRING_VALUE->fixed||_SUB_WRITECONFIGSETTING_STRING_VALUE->readonly){ -oldstr3644=_SUB_WRITECONFIGSETTING_STRING_VALUE; +if(_SUB_WRITECONFIGSETTING_STRING_SECTION->tmp||_SUB_WRITECONFIGSETTING_STRING_SECTION->fixed||_SUB_WRITECONFIGSETTING_STRING_SECTION->readonly){ +oldstr3644=_SUB_WRITECONFIGSETTING_STRING_SECTION; if (oldstr3644->cmem_descriptor){ -_SUB_WRITECONFIGSETTING_STRING_VALUE=qbs_new_cmem(oldstr3644->len,0); +_SUB_WRITECONFIGSETTING_STRING_SECTION=qbs_new_cmem(oldstr3644->len,0); }else{ -_SUB_WRITECONFIGSETTING_STRING_VALUE=qbs_new(oldstr3644->len,0); +_SUB_WRITECONFIGSETTING_STRING_SECTION=qbs_new(oldstr3644->len,0); } -memcpy(_SUB_WRITECONFIGSETTING_STRING_VALUE->chr,oldstr3644->chr,oldstr3644->len); +memcpy(_SUB_WRITECONFIGSETTING_STRING_SECTION->chr,oldstr3644->chr,oldstr3644->len); +} +qbs*oldstr3645=NULL; +if(_SUB_WRITECONFIGSETTING_STRING_ITEM->tmp||_SUB_WRITECONFIGSETTING_STRING_ITEM->fixed||_SUB_WRITECONFIGSETTING_STRING_ITEM->readonly){ +oldstr3645=_SUB_WRITECONFIGSETTING_STRING_ITEM; +if (oldstr3645->cmem_descriptor){ +_SUB_WRITECONFIGSETTING_STRING_ITEM=qbs_new_cmem(oldstr3645->len,0); +}else{ +_SUB_WRITECONFIGSETTING_STRING_ITEM=qbs_new(oldstr3645->len,0); +} +memcpy(_SUB_WRITECONFIGSETTING_STRING_ITEM->chr,oldstr3645->chr,oldstr3645->len); +} +qbs*oldstr3646=NULL; +if(_SUB_WRITECONFIGSETTING_STRING_VALUE->tmp||_SUB_WRITECONFIGSETTING_STRING_VALUE->fixed||_SUB_WRITECONFIGSETTING_STRING_VALUE->readonly){ +oldstr3646=_SUB_WRITECONFIGSETTING_STRING_VALUE; +if (oldstr3646->cmem_descriptor){ +_SUB_WRITECONFIGSETTING_STRING_VALUE=qbs_new_cmem(oldstr3646->len,0); +}else{ +_SUB_WRITECONFIGSETTING_STRING_VALUE=qbs_new(oldstr3646->len,0); +} +memcpy(_SUB_WRITECONFIGSETTING_STRING_VALUE->chr,oldstr3646->chr,oldstr3646->len); } diff --git a/internal/source/data92.txt b/internal/source/data92.txt index 6e9395fcc..fe60d7e3d 100644 --- a/internal/source/data92.txt +++ b/internal/source/data92.txt @@ -3,37 +3,37 @@ if(_FUNC_READCONFIGSETTING_LONG_READCONFIGSETTING==NULL){ _FUNC_READCONFIGSETTING_LONG_READCONFIGSETTING=(int32*)mem_static_malloc(4); *_FUNC_READCONFIGSETTING_LONG_READCONFIGSETTING=0; } -qbs*oldstr3645=NULL; -if(_FUNC_READCONFIGSETTING_STRING_SECTION->tmp||_FUNC_READCONFIGSETTING_STRING_SECTION->fixed||_FUNC_READCONFIGSETTING_STRING_SECTION->readonly){ -oldstr3645=_FUNC_READCONFIGSETTING_STRING_SECTION; -if (oldstr3645->cmem_descriptor){ -_FUNC_READCONFIGSETTING_STRING_SECTION=qbs_new_cmem(oldstr3645->len,0); -}else{ -_FUNC_READCONFIGSETTING_STRING_SECTION=qbs_new(oldstr3645->len,0); -} -memcpy(_FUNC_READCONFIGSETTING_STRING_SECTION->chr,oldstr3645->chr,oldstr3645->len); -} -qbs*oldstr3646=NULL; -if(_FUNC_READCONFIGSETTING_STRING_ITEM->tmp||_FUNC_READCONFIGSETTING_STRING_ITEM->fixed||_FUNC_READCONFIGSETTING_STRING_ITEM->readonly){ -oldstr3646=_FUNC_READCONFIGSETTING_STRING_ITEM; -if (oldstr3646->cmem_descriptor){ -_FUNC_READCONFIGSETTING_STRING_ITEM=qbs_new_cmem(oldstr3646->len,0); -}else{ -_FUNC_READCONFIGSETTING_STRING_ITEM=qbs_new(oldstr3646->len,0); -} -memcpy(_FUNC_READCONFIGSETTING_STRING_ITEM->chr,oldstr3646->chr,oldstr3646->len); -} qbs*oldstr3647=NULL; -if(_FUNC_READCONFIGSETTING_STRING_VALUE->tmp||_FUNC_READCONFIGSETTING_STRING_VALUE->fixed||_FUNC_READCONFIGSETTING_STRING_VALUE->readonly){ -oldstr3647=_FUNC_READCONFIGSETTING_STRING_VALUE; +if(_FUNC_READCONFIGSETTING_STRING_SECTION->tmp||_FUNC_READCONFIGSETTING_STRING_SECTION->fixed||_FUNC_READCONFIGSETTING_STRING_SECTION->readonly){ +oldstr3647=_FUNC_READCONFIGSETTING_STRING_SECTION; if (oldstr3647->cmem_descriptor){ -_FUNC_READCONFIGSETTING_STRING_VALUE=qbs_new_cmem(oldstr3647->len,0); +_FUNC_READCONFIGSETTING_STRING_SECTION=qbs_new_cmem(oldstr3647->len,0); }else{ -_FUNC_READCONFIGSETTING_STRING_VALUE=qbs_new(oldstr3647->len,0); +_FUNC_READCONFIGSETTING_STRING_SECTION=qbs_new(oldstr3647->len,0); } -memcpy(_FUNC_READCONFIGSETTING_STRING_VALUE->chr,oldstr3647->chr,oldstr3647->len); +memcpy(_FUNC_READCONFIGSETTING_STRING_SECTION->chr,oldstr3647->chr,oldstr3647->len); } -byte_element_struct *byte_element_3648=NULL; -if (!byte_element_3648){ -if ((mem_static_pointer+=12)tmp||_FUNC_READCONFIGSETTING_STRING_ITEM->fixed||_FUNC_READCONFIGSETTING_STRING_ITEM->readonly){ +oldstr3648=_FUNC_READCONFIGSETTING_STRING_ITEM; +if (oldstr3648->cmem_descriptor){ +_FUNC_READCONFIGSETTING_STRING_ITEM=qbs_new_cmem(oldstr3648->len,0); +}else{ +_FUNC_READCONFIGSETTING_STRING_ITEM=qbs_new(oldstr3648->len,0); +} +memcpy(_FUNC_READCONFIGSETTING_STRING_ITEM->chr,oldstr3648->chr,oldstr3648->len); +} +qbs*oldstr3649=NULL; +if(_FUNC_READCONFIGSETTING_STRING_VALUE->tmp||_FUNC_READCONFIGSETTING_STRING_VALUE->fixed||_FUNC_READCONFIGSETTING_STRING_VALUE->readonly){ +oldstr3649=_FUNC_READCONFIGSETTING_STRING_VALUE; +if (oldstr3649->cmem_descriptor){ +_FUNC_READCONFIGSETTING_STRING_VALUE=qbs_new_cmem(oldstr3649->len,0); +}else{ +_FUNC_READCONFIGSETTING_STRING_VALUE=qbs_new(oldstr3649->len,0); +} +memcpy(_FUNC_READCONFIGSETTING_STRING_VALUE->chr,oldstr3649->chr,oldstr3649->len); +} +byte_element_struct *byte_element_3650=NULL; +if (!byte_element_3650){ +if ((mem_static_pointer+=12)tmp||_FUNC_VRGBS_STRING_TEXT->fixed||_FUNC_VRGBS_STRING_TEXT->readonly){ -oldstr3649=_FUNC_VRGBS_STRING_TEXT; -if (oldstr3649->cmem_descriptor){ -_FUNC_VRGBS_STRING_TEXT=qbs_new_cmem(oldstr3649->len,0); +oldstr3651=_FUNC_VRGBS_STRING_TEXT; +if (oldstr3651->cmem_descriptor){ +_FUNC_VRGBS_STRING_TEXT=qbs_new_cmem(oldstr3651->len,0); }else{ -_FUNC_VRGBS_STRING_TEXT=qbs_new(oldstr3649->len,0); +_FUNC_VRGBS_STRING_TEXT=qbs_new(oldstr3651->len,0); } -memcpy(_FUNC_VRGBS_STRING_TEXT->chr,oldstr3649->chr,oldstr3649->len); +memcpy(_FUNC_VRGBS_STRING_TEXT->chr,oldstr3651->chr,oldstr3651->len); } int32 *_FUNC_VRGBS_LONG_RPOS=NULL; if(_FUNC_VRGBS_LONG_RPOS==NULL){ diff --git a/internal/source/data95.txt b/internal/source/data95.txt index 2c751ec99..06a626ee8 100644 --- a/internal/source/data95.txt +++ b/internal/source/data95.txt @@ -3,25 +3,25 @@ if(_FUNC_EVALPREIF_LONG_EVALPREIF==NULL){ _FUNC_EVALPREIF_LONG_EVALPREIF=(int32*)mem_static_malloc(4); *_FUNC_EVALPREIF_LONG_EVALPREIF=0; } -qbs*oldstr3650=NULL; +qbs*oldstr3652=NULL; if(_FUNC_EVALPREIF_STRING_TEXT->tmp||_FUNC_EVALPREIF_STRING_TEXT->fixed||_FUNC_EVALPREIF_STRING_TEXT->readonly){ -oldstr3650=_FUNC_EVALPREIF_STRING_TEXT; -if (oldstr3650->cmem_descriptor){ -_FUNC_EVALPREIF_STRING_TEXT=qbs_new_cmem(oldstr3650->len,0); +oldstr3652=_FUNC_EVALPREIF_STRING_TEXT; +if (oldstr3652->cmem_descriptor){ +_FUNC_EVALPREIF_STRING_TEXT=qbs_new_cmem(oldstr3652->len,0); }else{ -_FUNC_EVALPREIF_STRING_TEXT=qbs_new(oldstr3650->len,0); +_FUNC_EVALPREIF_STRING_TEXT=qbs_new(oldstr3652->len,0); } -memcpy(_FUNC_EVALPREIF_STRING_TEXT->chr,oldstr3650->chr,oldstr3650->len); +memcpy(_FUNC_EVALPREIF_STRING_TEXT->chr,oldstr3652->chr,oldstr3652->len); } -qbs*oldstr3651=NULL; +qbs*oldstr3653=NULL; if(_FUNC_EVALPREIF_STRING_ERR->tmp||_FUNC_EVALPREIF_STRING_ERR->fixed||_FUNC_EVALPREIF_STRING_ERR->readonly){ -oldstr3651=_FUNC_EVALPREIF_STRING_ERR; -if (oldstr3651->cmem_descriptor){ -_FUNC_EVALPREIF_STRING_ERR=qbs_new_cmem(oldstr3651->len,0); +oldstr3653=_FUNC_EVALPREIF_STRING_ERR; +if (oldstr3653->cmem_descriptor){ +_FUNC_EVALPREIF_STRING_ERR=qbs_new_cmem(oldstr3653->len,0); }else{ -_FUNC_EVALPREIF_STRING_ERR=qbs_new(oldstr3651->len,0); +_FUNC_EVALPREIF_STRING_ERR=qbs_new(oldstr3653->len,0); } -memcpy(_FUNC_EVALPREIF_STRING_ERR->chr,oldstr3651->chr,oldstr3651->len); +memcpy(_FUNC_EVALPREIF_STRING_ERR->chr,oldstr3653->chr,oldstr3653->len); } qbs *_FUNC_EVALPREIF_STRING_TEMP=NULL; if (!_FUNC_EVALPREIF_STRING_TEMP)_FUNC_EVALPREIF_STRING_TEMP=qbs_new(0,0); @@ -49,10 +49,10 @@ if(_FUNC_EVALPREIF_LONG_I==NULL){ _FUNC_EVALPREIF_LONG_I=(int32*)mem_static_malloc(4); *_FUNC_EVALPREIF_LONG_I=0; } -int64 fornext_value3654; -int64 fornext_finalvalue3654; -int64 fornext_step3654; -uint8 fornext_step_negative3654; +int64 fornext_value3656; +int64 fornext_finalvalue3656; +int64 fornext_step3656; +uint8 fornext_step_negative3656; int32 *_FUNC_EVALPREIF_LONG_TEMP=NULL; if(_FUNC_EVALPREIF_LONG_TEMP==NULL){ _FUNC_EVALPREIF_LONG_TEMP=(int32*)mem_static_malloc(4); @@ -68,13 +68,13 @@ if(_FUNC_EVALPREIF_LONG_SECOND==NULL){ _FUNC_EVALPREIF_LONG_SECOND=(int32*)mem_static_malloc(4); *_FUNC_EVALPREIF_LONG_SECOND=0; } -int64 fornext_value3656; -int64 fornext_finalvalue3656; -int64 fornext_step3656; -uint8 fornext_step_negative3656; -byte_element_struct *byte_element_3657=NULL; -if (!byte_element_3657){ -if ((mem_static_pointer+=12)tmp||_FUNC_VERIFYNUMBER_STRING_TEXT->fixed||_FUNC_VERIFYNUMBER_STRING_TEXT->readonly){ -oldstr3687=_FUNC_VERIFYNUMBER_STRING_TEXT; -if (oldstr3687->cmem_descriptor){ -_FUNC_VERIFYNUMBER_STRING_TEXT=qbs_new_cmem(oldstr3687->len,0); +oldstr3689=_FUNC_VERIFYNUMBER_STRING_TEXT; +if (oldstr3689->cmem_descriptor){ +_FUNC_VERIFYNUMBER_STRING_TEXT=qbs_new_cmem(oldstr3689->len,0); }else{ -_FUNC_VERIFYNUMBER_STRING_TEXT=qbs_new(oldstr3687->len,0); +_FUNC_VERIFYNUMBER_STRING_TEXT=qbs_new(oldstr3689->len,0); } -memcpy(_FUNC_VERIFYNUMBER_STRING_TEXT->chr,oldstr3687->chr,oldstr3687->len); +memcpy(_FUNC_VERIFYNUMBER_STRING_TEXT->chr,oldstr3689->chr,oldstr3689->len); } qbs *_FUNC_VERIFYNUMBER_STRING_T=NULL; if (!_FUNC_VERIFYNUMBER_STRING_T)_FUNC_VERIFYNUMBER_STRING_T=qbs_new(0,0); diff --git a/internal/source/data97.txt b/internal/source/data97.txt index 01015a685..a51618299 100644 --- a/internal/source/data97.txt +++ b/internal/source/data97.txt @@ -1,12 +1,12 @@ -qbs*oldstr3688=NULL; +qbs*oldstr3690=NULL; if(_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N->tmp||_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N->fixed||_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N->readonly){ -oldstr3688=_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N; -if (oldstr3688->cmem_descriptor){ -_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3688->len,0); +oldstr3690=_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N; +if (oldstr3690->cmem_descriptor){ +_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3690->len,0); }else{ -_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3688->len,0); +_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3690->len,0); } -memcpy(_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N->chr,oldstr3688->chr,oldstr3688->len); +memcpy(_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N->chr,oldstr3690->chr,oldstr3690->len); } int32 *_SUB_INITIALISE_UDT_VARSTRINGS_LONG_ELEMENT=NULL; if(_SUB_INITIALISE_UDT_VARSTRINGS_LONG_ELEMENT==NULL){ @@ -18,5 +18,5 @@ if(_SUB_INITIALISE_UDT_VARSTRINGS_LONG_OFFSET==NULL){ _SUB_INITIALISE_UDT_VARSTRINGS_LONG_OFFSET=(int32*)mem_static_malloc(4); *_SUB_INITIALISE_UDT_VARSTRINGS_LONG_OFFSET=0; } -int16 pass3690; -int32 pass3691; +int16 pass3692; +int32 pass3693; diff --git a/internal/source/data98.txt b/internal/source/data98.txt index 7f8101bea..616a17959 100644 --- a/internal/source/data98.txt +++ b/internal/source/data98.txt @@ -1,12 +1,12 @@ -qbs*oldstr3692=NULL; +qbs*oldstr3694=NULL; if(_SUB_FREE_UDT_VARSTRINGS_STRING_N->tmp||_SUB_FREE_UDT_VARSTRINGS_STRING_N->fixed||_SUB_FREE_UDT_VARSTRINGS_STRING_N->readonly){ -oldstr3692=_SUB_FREE_UDT_VARSTRINGS_STRING_N; -if (oldstr3692->cmem_descriptor){ -_SUB_FREE_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3692->len,0); +oldstr3694=_SUB_FREE_UDT_VARSTRINGS_STRING_N; +if (oldstr3694->cmem_descriptor){ +_SUB_FREE_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3694->len,0); }else{ -_SUB_FREE_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3692->len,0); +_SUB_FREE_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3694->len,0); } -memcpy(_SUB_FREE_UDT_VARSTRINGS_STRING_N->chr,oldstr3692->chr,oldstr3692->len); +memcpy(_SUB_FREE_UDT_VARSTRINGS_STRING_N->chr,oldstr3694->chr,oldstr3694->len); } int32 *_SUB_FREE_UDT_VARSTRINGS_LONG_ELEMENT=NULL; if(_SUB_FREE_UDT_VARSTRINGS_LONG_ELEMENT==NULL){ @@ -18,5 +18,5 @@ if(_SUB_FREE_UDT_VARSTRINGS_LONG_OFFSET==NULL){ _SUB_FREE_UDT_VARSTRINGS_LONG_OFFSET=(int32*)mem_static_malloc(4); *_SUB_FREE_UDT_VARSTRINGS_LONG_OFFSET=0; } -int16 pass3694; -int32 pass3695; +int16 pass3696; +int32 pass3697; diff --git a/internal/source/data99.txt b/internal/source/data99.txt index 00d8dd7ec..5b708bfd2 100644 --- a/internal/source/data99.txt +++ b/internal/source/data99.txt @@ -1,12 +1,12 @@ -qbs*oldstr3696=NULL; +qbs*oldstr3698=NULL; if(_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N->tmp||_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N->fixed||_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N->readonly){ -oldstr3696=_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N; -if (oldstr3696->cmem_descriptor){ -_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3696->len,0); +oldstr3698=_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N; +if (oldstr3698->cmem_descriptor){ +_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3698->len,0); }else{ -_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N=qbs_new(oldstr3696->len,0); +_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N=qbs_new(oldstr3698->len,0); } -memcpy(_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N->chr,oldstr3696->chr,oldstr3696->len); +memcpy(_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N->chr,oldstr3698->chr,oldstr3698->len); } int32 *_SUB_CLEAR_UDT_WITH_VARSTRINGS_LONG_ELEMENT=NULL; if(_SUB_CLEAR_UDT_WITH_VARSTRINGS_LONG_ELEMENT==NULL){ @@ -18,8 +18,8 @@ if(_SUB_CLEAR_UDT_WITH_VARSTRINGS_LONG_OFFSET==NULL){ _SUB_CLEAR_UDT_WITH_VARSTRINGS_LONG_OFFSET=(int32*)mem_static_malloc(4); *_SUB_CLEAR_UDT_WITH_VARSTRINGS_LONG_OFFSET=0; } -int16 pass3698; -int16 pass3699; -int32 pass3700; -int32 pass3701; -int16 pass3702; +int16 pass3700; +int16 pass3701; +int32 pass3702; +int32 pass3703; +int16 pass3704; diff --git a/internal/source/free10.txt b/internal/source/free10.txt index eb18e2de5..78cf046d6 100644 --- a/internal/source/free10.txt +++ b/internal/source/free10.txt @@ -1,5 +1,5 @@ -if(oldstr2307){ -if(oldstr2307->fixed)qbs_set(oldstr2307,_SUB_ASSIGN_STRING_A); +if(oldstr2309){ +if(oldstr2309->fixed)qbs_set(oldstr2309,_SUB_ASSIGN_STRING_A); qbs_free(_SUB_ASSIGN_STRING_A); } qbs_free(_SUB_ASSIGN_STRING_A2); diff --git a/internal/source/free100.txt b/internal/source/free100.txt index 38a5c1287..024ff57a8 100644 --- a/internal/source/free100.txt +++ b/internal/source/free100.txt @@ -1,12 +1,12 @@ -if(oldstr3703){ -if(oldstr3703->fixed)qbs_set(oldstr3703,_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N); +if(oldstr3705){ +if(oldstr3705->fixed)qbs_set(oldstr3705,_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N); qbs_free(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N); } -if(oldstr3704){ -if(oldstr3704->fixed)qbs_set(oldstr3704,_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT); +if(oldstr3706){ +if(oldstr3706->fixed)qbs_set(oldstr3706,_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT); qbs_free(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT); } -if(oldstr3705){ -if(oldstr3705->fixed)qbs_set(oldstr3705,_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC); +if(oldstr3707){ +if(oldstr3707->fixed)qbs_set(oldstr3707,_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC); qbs_free(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC); } diff --git a/internal/source/free101.txt b/internal/source/free101.txt index f76838962..02a57feef 100644 --- a/internal/source/free101.txt +++ b/internal/source/free101.txt @@ -1,12 +1,12 @@ -if(oldstr3708){ -if(oldstr3708->fixed)qbs_set(oldstr3708,_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N); +if(oldstr3710){ +if(oldstr3710->fixed)qbs_set(oldstr3710,_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N); qbs_free(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N); } -if(oldstr3709){ -if(oldstr3709->fixed)qbs_set(oldstr3709,_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT); +if(oldstr3711){ +if(oldstr3711->fixed)qbs_set(oldstr3711,_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT); qbs_free(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT); } -if(oldstr3710){ -if(oldstr3710->fixed)qbs_set(oldstr3710,_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC); +if(oldstr3712){ +if(oldstr3712->fixed)qbs_set(oldstr3712,_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC); qbs_free(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC); } diff --git a/internal/source/free102.txt b/internal/source/free102.txt index 9c7f8c243..df25007f2 100644 --- a/internal/source/free102.txt +++ b/internal/source/free102.txt @@ -1,8 +1,8 @@ -if(oldstr3713){ -if(oldstr3713->fixed)qbs_set(oldstr3713,_SUB_COPY_FULL_UDT_STRING_DST); +if(oldstr3715){ +if(oldstr3715->fixed)qbs_set(oldstr3715,_SUB_COPY_FULL_UDT_STRING_DST); qbs_free(_SUB_COPY_FULL_UDT_STRING_DST); } -if(oldstr3714){ -if(oldstr3714->fixed)qbs_set(oldstr3714,_SUB_COPY_FULL_UDT_STRING_SRC); +if(oldstr3716){ +if(oldstr3716->fixed)qbs_set(oldstr3716,_SUB_COPY_FULL_UDT_STRING_SRC); qbs_free(_SUB_COPY_FULL_UDT_STRING_SRC); } diff --git a/internal/source/free104.txt b/internal/source/free104.txt index 3d0d9a77c..7054057f2 100644 --- a/internal/source/free104.txt +++ b/internal/source/free104.txt @@ -1,9 +1,9 @@ -if(oldstr3728){ -if(oldstr3728->fixed)qbs_set(oldstr3728,_SUB_MANAGEVARIABLELIST_STRING___NAME); +if(oldstr3730){ +if(oldstr3730->fixed)qbs_set(oldstr3730,_SUB_MANAGEVARIABLELIST_STRING___NAME); qbs_free(_SUB_MANAGEVARIABLELIST_STRING___NAME); } -if(oldstr3729){ -if(oldstr3729->fixed)qbs_set(oldstr3729,_SUB_MANAGEVARIABLELIST_STRING___CNAME); +if(oldstr3731){ +if(oldstr3731->fixed)qbs_set(oldstr3731,_SUB_MANAGEVARIABLELIST_STRING___CNAME); qbs_free(_SUB_MANAGEVARIABLELIST_STRING___CNAME); } qbs_free(_SUB_MANAGEVARIABLELIST_STRING_CNAME); diff --git a/internal/source/free105.txt b/internal/source/free105.txt index 22188e87c..0ef71f7da 100644 --- a/internal/source/free105.txt +++ b/internal/source/free105.txt @@ -1,13 +1,13 @@ -if(oldstr3740){ -if(oldstr3740->fixed)qbs_set(oldstr3740,_SUB_ADDWARNING_STRING_INCFILENAME); +if(oldstr3742){ +if(oldstr3742->fixed)qbs_set(oldstr3742,_SUB_ADDWARNING_STRING_INCFILENAME); qbs_free(_SUB_ADDWARNING_STRING_INCFILENAME); } -if(oldstr3741){ -if(oldstr3741->fixed)qbs_set(oldstr3741,_SUB_ADDWARNING_STRING_HEADER); +if(oldstr3743){ +if(oldstr3743->fixed)qbs_set(oldstr3743,_SUB_ADDWARNING_STRING_HEADER); qbs_free(_SUB_ADDWARNING_STRING_HEADER); } -if(oldstr3742){ -if(oldstr3742->fixed)qbs_set(oldstr3742,_SUB_ADDWARNING_STRING_TEXT); +if(oldstr3744){ +if(oldstr3744->fixed)qbs_set(oldstr3744,_SUB_ADDWARNING_STRING_TEXT); qbs_free(_SUB_ADDWARNING_STRING_TEXT); } qbs_free(_SUB_ADDWARNING_STRING_THISSOURCE); diff --git a/internal/source/free106.txt b/internal/source/free106.txt index be886bc07..008bb2abe 100644 --- a/internal/source/free106.txt +++ b/internal/source/free106.txt @@ -1,4 +1,4 @@ -if(oldstr3754){ -if(oldstr3754->fixed)qbs_set(oldstr3754,_FUNC_SCASE_STRING_T); +if(oldstr3756){ +if(oldstr3756->fixed)qbs_set(oldstr3756,_FUNC_SCASE_STRING_T); qbs_free(_FUNC_SCASE_STRING_T); } diff --git a/internal/source/free107.txt b/internal/source/free107.txt index 5a56c6c7a..97e382be2 100644 --- a/internal/source/free107.txt +++ b/internal/source/free107.txt @@ -1,5 +1,5 @@ -if(oldstr3755){ -if(oldstr3755->fixed)qbs_set(oldstr3755,_FUNC_SCASE2_STRING_T); +if(oldstr3757){ +if(oldstr3757->fixed)qbs_set(oldstr3757,_FUNC_SCASE2_STRING_T); qbs_free(_FUNC_SCASE2_STRING_T); } qbs_free(_FUNC_SCASE2_STRING_SEPARATOR); diff --git a/internal/source/free109.txt b/internal/source/free109.txt index 910fce59f..197a84592 100644 --- a/internal/source/free109.txt +++ b/internal/source/free109.txt @@ -1,9 +1,9 @@ -if(oldstr3759){ -if(oldstr3759->fixed)qbs_set(oldstr3759,_FUNC_COMPAREVERSIONS_STRING_V); +if(oldstr3761){ +if(oldstr3761->fixed)qbs_set(oldstr3761,_FUNC_COMPAREVERSIONS_STRING_V); qbs_free(_FUNC_COMPAREVERSIONS_STRING_V); } -if(oldstr3760){ -if(oldstr3760->fixed)qbs_set(oldstr3760,_FUNC_COMPAREVERSIONS_STRING_V1); +if(oldstr3762){ +if(oldstr3762->fixed)qbs_set(oldstr3762,_FUNC_COMPAREVERSIONS_STRING_V1); qbs_free(_FUNC_COMPAREVERSIONS_STRING_V1); } qbs_free(_FUNC_COMPAREVERSIONS_STRING_T); diff --git a/internal/source/free110.txt b/internal/source/free110.txt index 9b807c115..6ce0fd8d4 100644 --- a/internal/source/free110.txt +++ b/internal/source/free110.txt @@ -1,9 +1,9 @@ -if(oldstr3764){ -if(oldstr3764->fixed)qbs_set(oldstr3764,_FUNC_STRREMOVE_STRING_MYSTRING); +if(oldstr3766){ +if(oldstr3766->fixed)qbs_set(oldstr3766,_FUNC_STRREMOVE_STRING_MYSTRING); qbs_free(_FUNC_STRREMOVE_STRING_MYSTRING); } -if(oldstr3765){ -if(oldstr3765->fixed)qbs_set(oldstr3765,_FUNC_STRREMOVE_STRING_WHATTOREMOVE); +if(oldstr3767){ +if(oldstr3767->fixed)qbs_set(oldstr3767,_FUNC_STRREMOVE_STRING_WHATTOREMOVE); qbs_free(_FUNC_STRREMOVE_STRING_WHATTOREMOVE); } qbs_free(_FUNC_STRREMOVE_STRING_A); diff --git a/internal/source/free111.txt b/internal/source/free111.txt index c78b6ae0d..2a87483c8 100644 --- a/internal/source/free111.txt +++ b/internal/source/free111.txt @@ -1,13 +1,13 @@ -if(oldstr3769){ -if(oldstr3769->fixed)qbs_set(oldstr3769,_FUNC_STRREPLACE_STRING_MYSTRING); +if(oldstr3771){ +if(oldstr3771->fixed)qbs_set(oldstr3771,_FUNC_STRREPLACE_STRING_MYSTRING); qbs_free(_FUNC_STRREPLACE_STRING_MYSTRING); } -if(oldstr3770){ -if(oldstr3770->fixed)qbs_set(oldstr3770,_FUNC_STRREPLACE_STRING_FIND); +if(oldstr3772){ +if(oldstr3772->fixed)qbs_set(oldstr3772,_FUNC_STRREPLACE_STRING_FIND); qbs_free(_FUNC_STRREPLACE_STRING_FIND); } -if(oldstr3771){ -if(oldstr3771->fixed)qbs_set(oldstr3771,_FUNC_STRREPLACE_STRING_REPLACEWITH); +if(oldstr3773){ +if(oldstr3773->fixed)qbs_set(oldstr3773,_FUNC_STRREPLACE_STRING_REPLACEWITH); qbs_free(_FUNC_STRREPLACE_STRING_REPLACEWITH); } qbs_free(_FUNC_STRREPLACE_STRING_A); diff --git a/internal/source/free112.txt b/internal/source/free112.txt index 66cccfd1b..cd9941cb1 100644 --- a/internal/source/free112.txt +++ b/internal/source/free112.txt @@ -1,4 +1,4 @@ -if(oldstr3777){ -if(oldstr3777->fixed)qbs_set(oldstr3777,_FUNC_ADDQUOTES_STRING_S); +if(oldstr3779){ +if(oldstr3779->fixed)qbs_set(oldstr3779,_FUNC_ADDQUOTES_STRING_S); qbs_free(_FUNC_ADDQUOTES_STRING_S); } diff --git a/internal/source/free114.txt b/internal/source/free114.txt index 7145e992a..81f1b2a1e 100644 --- a/internal/source/free114.txt +++ b/internal/source/free114.txt @@ -1,5 +1,5 @@ -if(oldstr3778){ -if(oldstr3778->fixed)qbs_set(oldstr3778,_FUNC_TFSTRINGTOBOOL_STRING_S); +if(oldstr3780){ +if(oldstr3780->fixed)qbs_set(oldstr3780,_FUNC_TFSTRINGTOBOOL_STRING_S); qbs_free(_FUNC_TFSTRINGTOBOOL_STRING_S); } qbs_free(_FUNC_TFSTRINGTOBOOL_STRING_S2); diff --git a/internal/source/free115.txt b/internal/source/free115.txt index 08e04c618..aa89e838f 100644 --- a/internal/source/free115.txt +++ b/internal/source/free115.txt @@ -1,9 +1,9 @@ -if(oldstr3779){ -if(oldstr3779->fixed)qbs_set(oldstr3779,_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION); +if(oldstr3781){ +if(oldstr3781->fixed)qbs_set(oldstr3781,_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION); qbs_free(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION); } -if(oldstr3780){ -if(oldstr3780->fixed)qbs_set(oldstr3780,_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING); +if(oldstr3782){ +if(oldstr3782->fixed)qbs_set(oldstr3782,_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING); qbs_free(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING); } qbs_free(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_VALUE); diff --git a/internal/source/free116.txt b/internal/source/free116.txt index 0e3332b1b..51cf43cd5 100644 --- a/internal/source/free116.txt +++ b/internal/source/free116.txt @@ -1,13 +1,13 @@ -if(oldstr3782){ -if(oldstr3782->fixed)qbs_set(oldstr3782,_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION); +if(oldstr3784){ +if(oldstr3784->fixed)qbs_set(oldstr3784,_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION); qbs_free(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION); } -if(oldstr3783){ -if(oldstr3783->fixed)qbs_set(oldstr3783,_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING); +if(oldstr3785){ +if(oldstr3785->fixed)qbs_set(oldstr3785,_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING); qbs_free(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING); } -if(oldstr3784){ -if(oldstr3784->fixed)qbs_set(oldstr3784,_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT); +if(oldstr3786){ +if(oldstr3786->fixed)qbs_set(oldstr3786,_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT); qbs_free(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT); } qbs_free(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE); diff --git a/internal/source/free117.txt b/internal/source/free117.txt index f3552b4ea..71af2de16 100644 --- a/internal/source/free117.txt +++ b/internal/source/free117.txt @@ -1,9 +1,9 @@ -if(oldstr3785){ -if(oldstr3785->fixed)qbs_set(oldstr3785,_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION); +if(oldstr3787){ +if(oldstr3787->fixed)qbs_set(oldstr3787,_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION); qbs_free(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION); } -if(oldstr3786){ -if(oldstr3786->fixed)qbs_set(oldstr3786,_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING); +if(oldstr3788){ +if(oldstr3788->fixed)qbs_set(oldstr3788,_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING); qbs_free(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING); } qbs_free(_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE); diff --git a/internal/source/free118.txt b/internal/source/free118.txt index 44fb22c6a..f60893eba 100644 --- a/internal/source/free118.txt +++ b/internal/source/free118.txt @@ -1,9 +1,9 @@ -if(oldstr3787){ -if(oldstr3787->fixed)qbs_set(oldstr3787,_FUNC_COPYFILE_STRING_SOURCEFILE); +if(oldstr3789){ +if(oldstr3789->fixed)qbs_set(oldstr3789,_FUNC_COPYFILE_STRING_SOURCEFILE); qbs_free(_FUNC_COPYFILE_STRING_SOURCEFILE); } -if(oldstr3788){ -if(oldstr3788->fixed)qbs_set(oldstr3788,_FUNC_COPYFILE_STRING_DESTFILE); +if(oldstr3790){ +if(oldstr3790->fixed)qbs_set(oldstr3790,_FUNC_COPYFILE_STRING_DESTFILE); qbs_free(_FUNC_COPYFILE_STRING_DESTFILE); } qbs_free(_FUNC_COPYFILE_STRING_BUFFER); diff --git a/internal/source/free119.txt b/internal/source/free119.txt index 13031702f..3860f0719 100644 --- a/internal/source/free119.txt +++ b/internal/source/free119.txt @@ -1,5 +1,5 @@ -if(oldstr3790){ -if(oldstr3790->fixed)qbs_set(oldstr3790,_FUNC_GETFILEPATH_STRING_F); +if(oldstr3792){ +if(oldstr3792->fixed)qbs_set(oldstr3792,_FUNC_GETFILEPATH_STRING_F); qbs_free(_FUNC_GETFILEPATH_STRING_F); } qbs_free(_FUNC_GETFILEPATH_STRING_A); diff --git a/internal/source/free12.txt b/internal/source/free12.txt index d3f7b8a88..eed4fd606 100644 --- a/internal/source/free12.txt +++ b/internal/source/free12.txt @@ -1,4 +1,4 @@ -if(oldstr2315){ -if(oldstr2315->fixed)qbs_set(oldstr2315,_SUB_VWATCHVARIABLE_STRING_THIS); +if(oldstr2317){ +if(oldstr2317->fixed)qbs_set(oldstr2317,_SUB_VWATCHVARIABLE_STRING_THIS); qbs_free(_SUB_VWATCHVARIABLE_STRING_THIS); } diff --git a/internal/source/free120.txt b/internal/source/free120.txt index 726342135..176a60f0d 100644 --- a/internal/source/free120.txt +++ b/internal/source/free120.txt @@ -1,4 +1,4 @@ -if(oldstr3794){ -if(oldstr3794->fixed)qbs_set(oldstr3794,_FUNC_FILEHASEXTENSION_STRING_F); +if(oldstr3796){ +if(oldstr3796->fixed)qbs_set(oldstr3796,_FUNC_FILEHASEXTENSION_STRING_F); qbs_free(_FUNC_FILEHASEXTENSION_STRING_F); } diff --git a/internal/source/free121.txt b/internal/source/free121.txt index 5c722a48d..82c467082 100644 --- a/internal/source/free121.txt +++ b/internal/source/free121.txt @@ -1,4 +1,4 @@ -if(oldstr3798){ -if(oldstr3798->fixed)qbs_set(oldstr3798,_FUNC_REMOVEFILEEXTENSION_STRING_F); +if(oldstr3800){ +if(oldstr3800->fixed)qbs_set(oldstr3800,_FUNC_REMOVEFILEEXTENSION_STRING_F); qbs_free(_FUNC_REMOVEFILEEXTENSION_STRING_F); } diff --git a/internal/source/free122.txt b/internal/source/free122.txt index a2b3c7956..14cf29899 100644 --- a/internal/source/free122.txt +++ b/internal/source/free122.txt @@ -1,4 +1,4 @@ -if(oldstr3802){ -if(oldstr3802->fixed)qbs_set(oldstr3802,_FUNC_GETFILEEXTENSION_STRING_F); +if(oldstr3804){ +if(oldstr3804->fixed)qbs_set(oldstr3804,_FUNC_GETFILEEXTENSION_STRING_F); qbs_free(_FUNC_GETFILEEXTENSION_STRING_F); } diff --git a/internal/source/free123.txt b/internal/source/free123.txt index b14d4d88b..4360804b2 100644 --- a/internal/source/free123.txt +++ b/internal/source/free123.txt @@ -1,4 +1,4 @@ -if(oldstr3806){ -if(oldstr3806->fixed)qbs_set(oldstr3806,_SUB_PATH_SLASH_CORRECT_STRING_A); +if(oldstr3808){ +if(oldstr3808->fixed)qbs_set(oldstr3808,_SUB_PATH_SLASH_CORRECT_STRING_A); qbs_free(_SUB_PATH_SLASH_CORRECT_STRING_A); } diff --git a/internal/source/free124.txt b/internal/source/free124.txt index f02298e2d..5ec5426c8 100644 --- a/internal/source/free124.txt +++ b/internal/source/free124.txt @@ -1,5 +1,5 @@ -if(oldstr3813){ -if(oldstr3813->fixed)qbs_set(oldstr3813,_FUNC_GETESCAPEDPATH_STRING_PATH_NAME); +if(oldstr3815){ +if(oldstr3815->fixed)qbs_set(oldstr3815,_FUNC_GETESCAPEDPATH_STRING_PATH_NAME); qbs_free(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME); } qbs_free(_FUNC_GETESCAPEDPATH_STRING_BUF); diff --git a/internal/source/free125.txt b/internal/source/free125.txt index 9c8d144a9..5c9906d79 100644 --- a/internal/source/free125.txt +++ b/internal/source/free125.txt @@ -1,4 +1,4 @@ -if(oldstr3817){ -if(oldstr3817->fixed)qbs_set(oldstr3817,_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME); +if(oldstr3819){ +if(oldstr3819->fixed)qbs_set(oldstr3819,_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME); qbs_free(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME); } diff --git a/internal/source/free126.txt b/internal/source/free126.txt index 232769916..3de6550ee 100644 --- a/internal/source/free126.txt +++ b/internal/source/free126.txt @@ -1,5 +1,5 @@ -if(oldstr3819){ -if(oldstr3819->fixed)qbs_set(oldstr3819,_SUB_PURGETEMPORARYBUILDFILES_STRING_OS); +if(oldstr3821){ +if(oldstr3821->fixed)qbs_set(oldstr3821,_SUB_PURGETEMPORARYBUILDFILES_STRING_OS); qbs_free(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS); } qbs_free(_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE); diff --git a/internal/source/free128.txt b/internal/source/free128.txt index 4e12086fa..4b0a3da5e 100644 --- a/internal/source/free128.txt +++ b/internal/source/free128.txt @@ -1,5 +1,5 @@ -if(oldstr3820){ -if(oldstr3820->fixed)qbs_set(oldstr3820,_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE); +if(oldstr3822){ +if(oldstr3822->fixed)qbs_set(oldstr3822,_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE); qbs_free(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE); } qbs_free(_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN); diff --git a/internal/source/free129.txt b/internal/source/free129.txt index ecea7e7a5..d160d8122 100644 --- a/internal/source/free129.txt +++ b/internal/source/free129.txt @@ -1,4 +1,4 @@ -if(oldstr3821){ -if(oldstr3821->fixed)qbs_set(oldstr3821,_FUNC_GETELEMENT_STRING_A); +if(oldstr3823){ +if(oldstr3823->fixed)qbs_set(oldstr3823,_FUNC_GETELEMENT_STRING_A); qbs_free(_FUNC_GETELEMENT_STRING_A); } diff --git a/internal/source/free130.txt b/internal/source/free130.txt index 01d6a5bf2..01d0d341b 100644 --- a/internal/source/free130.txt +++ b/internal/source/free130.txt @@ -1,4 +1,4 @@ -if(oldstr3823){ -if(oldstr3823->fixed)qbs_set(oldstr3823,_FUNC_GETELEMENTS_STRING_A); +if(oldstr3825){ +if(oldstr3825->fixed)qbs_set(oldstr3825,_FUNC_GETELEMENTS_STRING_A); qbs_free(_FUNC_GETELEMENTS_STRING_A); } diff --git a/internal/source/free131.txt b/internal/source/free131.txt index 4c62ce773..81477f8fb 100644 --- a/internal/source/free131.txt +++ b/internal/source/free131.txt @@ -1,9 +1,9 @@ -if(oldstr3825){ -if(oldstr3825->fixed)qbs_set(oldstr3825,_SUB_INSERTELEMENTS_STRING_A); +if(oldstr3827){ +if(oldstr3827->fixed)qbs_set(oldstr3827,_SUB_INSERTELEMENTS_STRING_A); qbs_free(_SUB_INSERTELEMENTS_STRING_A); } -if(oldstr3826){ -if(oldstr3826->fixed)qbs_set(oldstr3826,_SUB_INSERTELEMENTS_STRING_ELEMENTS); +if(oldstr3828){ +if(oldstr3828->fixed)qbs_set(oldstr3828,_SUB_INSERTELEMENTS_STRING_ELEMENTS); qbs_free(_SUB_INSERTELEMENTS_STRING_ELEMENTS); } qbs_free(_SUB_INSERTELEMENTS_STRING_A2); diff --git a/internal/source/free132.txt b/internal/source/free132.txt index ed89c271e..9f253f9f1 100644 --- a/internal/source/free132.txt +++ b/internal/source/free132.txt @@ -1,4 +1,4 @@ -if(oldstr3829){ -if(oldstr3829->fixed)qbs_set(oldstr3829,_FUNC_NUMELEMENTS_STRING_A); +if(oldstr3831){ +if(oldstr3831->fixed)qbs_set(oldstr3831,_FUNC_NUMELEMENTS_STRING_A); qbs_free(_FUNC_NUMELEMENTS_STRING_A); } diff --git a/internal/source/free133.txt b/internal/source/free133.txt index 337e24c64..e338cbf85 100644 --- a/internal/source/free133.txt +++ b/internal/source/free133.txt @@ -1,5 +1,5 @@ -if(oldstr3830){ -if(oldstr3830->fixed)qbs_set(oldstr3830,_SUB_REMOVEELEMENTS_STRING_A); +if(oldstr3832){ +if(oldstr3832->fixed)qbs_set(oldstr3832,_SUB_REMOVEELEMENTS_STRING_A); qbs_free(_SUB_REMOVEELEMENTS_STRING_A); } qbs_free(_SUB_REMOVEELEMENTS_STRING_A2); diff --git a/internal/source/free134.txt b/internal/source/free134.txt index 4840e05b0..54a999bca 100644 --- a/internal/source/free134.txt +++ b/internal/source/free134.txt @@ -1,4 +1,4 @@ -if(oldstr3834){ -if(oldstr3834->fixed)qbs_set(oldstr3834,_FUNC_COUNTFUNCTIONELEMENTS_STRING_A); +if(oldstr3836){ +if(oldstr3836->fixed)qbs_set(oldstr3836,_FUNC_COUNTFUNCTIONELEMENTS_STRING_A); qbs_free(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A); } diff --git a/internal/source/free135.txt b/internal/source/free135.txt index e755a0b1b..bfdbefb11 100644 --- a/internal/source/free135.txt +++ b/internal/source/free135.txt @@ -1,4 +1,4 @@ -if(oldstr3838){ -if(oldstr3838->fixed)qbs_set(oldstr3838,_FUNC_HASFUNCTIONELEMENT_STRING_A); +if(oldstr3840){ +if(oldstr3840->fixed)qbs_set(oldstr3840,_FUNC_HASFUNCTIONELEMENT_STRING_A); qbs_free(_FUNC_HASFUNCTIONELEMENT_STRING_A); } diff --git a/internal/source/free136.txt b/internal/source/free136.txt index c34c6d6d2..09efb087a 100644 --- a/internal/source/free136.txt +++ b/internal/source/free136.txt @@ -1,5 +1,5 @@ -if(oldstr3844){ -if(oldstr3844->fixed)qbs_set(oldstr3844,_FUNC_ISVALIDARGSET_STRING_FORMAT); +if(oldstr3846){ +if(oldstr3846->fixed)qbs_set(oldstr3846,_FUNC_ISVALIDARGSET_STRING_FORMAT); qbs_free(_FUNC_ISVALIDARGSET_STRING_FORMAT); } if (_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[2]&1){ diff --git a/internal/source/free137.txt b/internal/source/free137.txt index d797de343..e61ae3295 100644 --- a/internal/source/free137.txt +++ b/internal/source/free137.txt @@ -1,13 +1,13 @@ -if(oldstr3849){ -if(oldstr3849->fixed)qbs_set(oldstr3849,_FUNC_GL2QB_TYPE_CONVERT_STRING_A); +if(oldstr3851){ +if(oldstr3851->fixed)qbs_set(oldstr3851,_FUNC_GL2QB_TYPE_CONVERT_STRING_A); qbs_free(_FUNC_GL2QB_TYPE_CONVERT_STRING_A); } -if(oldstr3850){ -if(oldstr3850->fixed)qbs_set(oldstr3850,_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL); +if(oldstr3852){ +if(oldstr3852->fixed)qbs_set(oldstr3852,_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL); qbs_free(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL); } -if(oldstr3851){ -if(oldstr3851->fixed)qbs_set(oldstr3851,_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP); +if(oldstr3853){ +if(oldstr3853->fixed)qbs_set(oldstr3853,_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP); qbs_free(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP); } qbs_free(_FUNC_GL2QB_TYPE_CONVERT_STRING_B); diff --git a/internal/source/free138.txt b/internal/source/free138.txt index 0f2de5ba5..794e9591e 100644 --- a/internal/source/free138.txt +++ b/internal/source/free138.txt @@ -1,8 +1,8 @@ -if(oldstr3853){ -if(oldstr3853->fixed)qbs_set(oldstr3853,_FUNC_READCHUNK_STRING_A); +if(oldstr3855){ +if(oldstr3855->fixed)qbs_set(oldstr3855,_FUNC_READCHUNK_STRING_A); qbs_free(_FUNC_READCHUNK_STRING_A); } -if(oldstr3854){ -if(oldstr3854->fixed)qbs_set(oldstr3854,_FUNC_READCHUNK_STRING_LAST_CHARACTER); +if(oldstr3856){ +if(oldstr3856->fixed)qbs_set(oldstr3856,_FUNC_READCHUNK_STRING_LAST_CHARACTER); qbs_free(_FUNC_READCHUNK_STRING_LAST_CHARACTER); } diff --git a/internal/source/free142.txt b/internal/source/free142.txt index 6e3b07292..0b7eb91f8 100644 --- a/internal/source/free142.txt +++ b/internal/source/free142.txt @@ -1,5 +1,5 @@ -if(oldstr3901){ -if(oldstr3901->fixed)qbs_set(oldstr3901,_FUNC_INIGETSECTION_STRING___SECTION); +if(oldstr3903){ +if(oldstr3903->fixed)qbs_set(oldstr3903,_FUNC_INIGETSECTION_STRING___SECTION); qbs_free(_FUNC_INIGETSECTION_STRING___SECTION); } qbs_free(_FUNC_INIGETSECTION_STRING_SECTION); diff --git a/internal/source/free143.txt b/internal/source/free143.txt index c77155cd6..e480e0363 100644 --- a/internal/source/free143.txt +++ b/internal/source/free143.txt @@ -1,5 +1,5 @@ -if(oldstr3912){ -if(oldstr3912->fixed)qbs_set(oldstr3912,_FUNC_INIFORMATSECTION_STRING___SECTION); +if(oldstr3914){ +if(oldstr3914->fixed)qbs_set(oldstr3914,_FUNC_INIFORMATSECTION_STRING___SECTION); qbs_free(_FUNC_INIFORMATSECTION_STRING___SECTION); } qbs_free(_FUNC_INIFORMATSECTION_STRING_SECTION); diff --git a/internal/source/free144.txt b/internal/source/free144.txt index a6a074238..8ed3ff1d8 100644 --- a/internal/source/free144.txt +++ b/internal/source/free144.txt @@ -1,13 +1,13 @@ -if(oldstr3915){ -if(oldstr3915->fixed)qbs_set(oldstr3915,_FUNC_READSETTING_STRING_FILE); +if(oldstr3917){ +if(oldstr3917->fixed)qbs_set(oldstr3917,_FUNC_READSETTING_STRING_FILE); qbs_free(_FUNC_READSETTING_STRING_FILE); } -if(oldstr3916){ -if(oldstr3916->fixed)qbs_set(oldstr3916,_FUNC_READSETTING_STRING___SECTION); +if(oldstr3918){ +if(oldstr3918->fixed)qbs_set(oldstr3918,_FUNC_READSETTING_STRING___SECTION); qbs_free(_FUNC_READSETTING_STRING___SECTION); } -if(oldstr3917){ -if(oldstr3917->fixed)qbs_set(oldstr3917,_FUNC_READSETTING_STRING___KEY); +if(oldstr3919){ +if(oldstr3919->fixed)qbs_set(oldstr3919,_FUNC_READSETTING_STRING___KEY); qbs_free(_FUNC_READSETTING_STRING___KEY); } qbs_free(_FUNC_READSETTING_STRING_TEMPVALUE); diff --git a/internal/source/free146.txt b/internal/source/free146.txt index c1156b7f3..cbb6f3843 100644 --- a/internal/source/free146.txt +++ b/internal/source/free146.txt @@ -1,17 +1,17 @@ -if(oldstr3931){ -if(oldstr3931->fixed)qbs_set(oldstr3931,_SUB_WRITESETTING_STRING_FILE); +if(oldstr3933){ +if(oldstr3933->fixed)qbs_set(oldstr3933,_SUB_WRITESETTING_STRING_FILE); qbs_free(_SUB_WRITESETTING_STRING_FILE); } -if(oldstr3932){ -if(oldstr3932->fixed)qbs_set(oldstr3932,_SUB_WRITESETTING_STRING___SECTION); +if(oldstr3934){ +if(oldstr3934->fixed)qbs_set(oldstr3934,_SUB_WRITESETTING_STRING___SECTION); qbs_free(_SUB_WRITESETTING_STRING___SECTION); } -if(oldstr3933){ -if(oldstr3933->fixed)qbs_set(oldstr3933,_SUB_WRITESETTING_STRING___KEY); +if(oldstr3935){ +if(oldstr3935->fixed)qbs_set(oldstr3935,_SUB_WRITESETTING_STRING___KEY); qbs_free(_SUB_WRITESETTING_STRING___KEY); } -if(oldstr3934){ -if(oldstr3934->fixed)qbs_set(oldstr3934,_SUB_WRITESETTING_STRING___VALUE); +if(oldstr3936){ +if(oldstr3936->fixed)qbs_set(oldstr3936,_SUB_WRITESETTING_STRING___VALUE); qbs_free(_SUB_WRITESETTING_STRING___VALUE); } qbs_free(_SUB_WRITESETTING_STRING_TEMPVALUE); diff --git a/internal/source/free15.txt b/internal/source/free15.txt index 855b91a7c..2ed1a3475 100644 --- a/internal/source/free15.txt +++ b/internal/source/free15.txt @@ -1,5 +1,5 @@ -if(oldstr2361){ -if(oldstr2361->fixed)qbs_set(oldstr2361,_FUNC_COUNTELEMENTS_STRING_A); +if(oldstr2363){ +if(oldstr2363->fixed)qbs_set(oldstr2363,_FUNC_COUNTELEMENTS_STRING_A); qbs_free(_FUNC_COUNTELEMENTS_STRING_A); } qbs_free(_FUNC_COUNTELEMENTS_STRING_E); diff --git a/internal/source/free151.txt b/internal/source/free151.txt index 167d96d61..d0f5bdf31 100644 --- a/internal/source/free151.txt +++ b/internal/source/free151.txt @@ -1,4 +1,4 @@ -if(oldstr3944){ -if(oldstr3944->fixed)qbs_set(oldstr3944,_SUB_INILOAD_STRING_FILE); +if(oldstr3946){ +if(oldstr3946->fixed)qbs_set(oldstr3946,_SUB_INILOAD_STRING_FILE); qbs_free(_SUB_INILOAD_STRING_FILE); } diff --git a/internal/source/free154.txt b/internal/source/free154.txt index 87954d871..9d10f7deb 100644 --- a/internal/source/free154.txt +++ b/internal/source/free154.txt @@ -1,4 +1,4 @@ -if(oldstr3947){ -if(oldstr3947->fixed)qbs_set(oldstr3947,_FUNC_FILETOBUF_STRING_FILESPEC); +if(oldstr3949){ +if(oldstr3949->fixed)qbs_set(oldstr3949,_FUNC_FILETOBUF_STRING_FILESPEC); qbs_free(_FUNC_FILETOBUF_STRING_FILESPEC); } diff --git a/internal/source/free155.txt b/internal/source/free155.txt index 26bcd46f0..3f57d8f70 100644 --- a/internal/source/free155.txt +++ b/internal/source/free155.txt @@ -1,5 +1,5 @@ -if(oldstr3948){ -if(oldstr3948->fixed)qbs_set(oldstr3948,_SUB_BUFTOFILE_STRING_FILESPEC); +if(oldstr3950){ +if(oldstr3950->fixed)qbs_set(oldstr3950,_SUB_BUFTOFILE_STRING_FILESPEC); qbs_free(_SUB_BUFTOFILE_STRING_FILESPEC); } qbs_free(_SUB_BUFTOFILE_STRING_DAT); diff --git a/internal/source/free157.txt b/internal/source/free157.txt index ab70b56fd..5122328f3 100644 --- a/internal/source/free157.txt +++ b/internal/source/free157.txt @@ -1,5 +1,5 @@ -if(oldstr3951){ -if(oldstr3951->fixed)qbs_set(oldstr3951,_SUB_WRITEBUFLINE_STRING_TEXT); +if(oldstr3953){ +if(oldstr3953->fixed)qbs_set(oldstr3953,_SUB_WRITEBUFLINE_STRING_TEXT); qbs_free(_SUB_WRITEBUFLINE_STRING_TEXT); } qbs_free(_SUB_WRITEBUFLINE_STRING_BRC); diff --git a/internal/source/free159.txt b/internal/source/free159.txt index 78c513111..dbe5b7cbc 100644 --- a/internal/source/free159.txt +++ b/internal/source/free159.txt @@ -1,4 +1,4 @@ -if(oldstr3956){ -if(oldstr3956->fixed)qbs_set(oldstr3956,_SUB_WRITEBUFRAWDATA_STRING_RAWDATA); +if(oldstr3958){ +if(oldstr3958->fixed)qbs_set(oldstr3958,_SUB_WRITEBUFRAWDATA_STRING_RAWDATA); qbs_free(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA); } diff --git a/internal/source/free16.txt b/internal/source/free16.txt index b32cd9dba..fd79b36ca 100644 --- a/internal/source/free16.txt +++ b/internal/source/free16.txt @@ -1,13 +1,13 @@ -if(oldstr2364){ -if(oldstr2364->fixed)qbs_set(oldstr2364,_FUNC_DIM2_STRING_VARNAME); +if(oldstr2366){ +if(oldstr2366->fixed)qbs_set(oldstr2366,_FUNC_DIM2_STRING_VARNAME); qbs_free(_FUNC_DIM2_STRING_VARNAME); } -if(oldstr2365){ -if(oldstr2365->fixed)qbs_set(oldstr2365,_FUNC_DIM2_STRING_TYP2); +if(oldstr2367){ +if(oldstr2367->fixed)qbs_set(oldstr2367,_FUNC_DIM2_STRING_TYP2); qbs_free(_FUNC_DIM2_STRING_TYP2); } -if(oldstr2366){ -if(oldstr2366->fixed)qbs_set(oldstr2366,_FUNC_DIM2_STRING_ELEMENTS); +if(oldstr2368){ +if(oldstr2368->fixed)qbs_set(oldstr2368,_FUNC_DIM2_STRING_ELEMENTS); qbs_free(_FUNC_DIM2_STRING_ELEMENTS); } qbs_free(_FUNC_DIM2_STRING_TYP); diff --git a/internal/source/free166.txt b/internal/source/free166.txt index 563d11596..636d1d056 100644 --- a/internal/source/free166.txt +++ b/internal/source/free166.txt @@ -1,8 +1,8 @@ -if(oldstr3963){ -if(oldstr3963->fixed)qbs_set(oldstr3963,_FUNC_OPENBUFFER_STRING_SBMODE); +if(oldstr3965){ +if(oldstr3965->fixed)qbs_set(oldstr3965,_FUNC_OPENBUFFER_STRING_SBMODE); qbs_free(_FUNC_OPENBUFFER_STRING_SBMODE); } -if(oldstr3964){ -if(oldstr3964->fixed)qbs_set(oldstr3964,_FUNC_OPENBUFFER_STRING_SBNAME); +if(oldstr3966){ +if(oldstr3966->fixed)qbs_set(oldstr3966,_FUNC_OPENBUFFER_STRING_SBNAME); qbs_free(_FUNC_OPENBUFFER_STRING_SBNAME); } diff --git a/internal/source/free167.txt b/internal/source/free167.txt index b8aecde75..27337b764 100644 --- a/internal/source/free167.txt +++ b/internal/source/free167.txt @@ -1,4 +1,4 @@ -if(oldstr3974){ -if(oldstr3974->fixed)qbs_set(oldstr3974,_SUB_CLEARBUFFERS_STRING_SBNAME); +if(oldstr3976){ +if(oldstr3976->fixed)qbs_set(oldstr3976,_SUB_CLEARBUFFERS_STRING_SBNAME); qbs_free(_SUB_CLEARBUFFERS_STRING_SBNAME); } diff --git a/internal/source/free168.txt b/internal/source/free168.txt index 7a5392213..8635a5903 100644 --- a/internal/source/free168.txt +++ b/internal/source/free168.txt @@ -1,4 +1,4 @@ -if(oldstr3979){ -if(oldstr3979->fixed)qbs_set(oldstr3979,_SUB_WRITEBUFFERS_STRING_SBNAME); +if(oldstr3981){ +if(oldstr3981->fixed)qbs_set(oldstr3981,_SUB_WRITEBUFFERS_STRING_SBNAME); qbs_free(_SUB_WRITEBUFFERS_STRING_SBNAME); } diff --git a/internal/source/free17.txt b/internal/source/free17.txt index 8606fbfc8..0ed05f725 100644 --- a/internal/source/free17.txt +++ b/internal/source/free17.txt @@ -1,9 +1,9 @@ -if(oldstr2531){ -if(oldstr2531->fixed)qbs_set(oldstr2531,_FUNC_UDTREFERENCE_STRING_O); +if(oldstr2533){ +if(oldstr2533->fixed)qbs_set(oldstr2533,_FUNC_UDTREFERENCE_STRING_O); qbs_free(_FUNC_UDTREFERENCE_STRING_O); } -if(oldstr2532){ -if(oldstr2532->fixed)qbs_set(oldstr2532,_FUNC_UDTREFERENCE_STRING_A); +if(oldstr2534){ +if(oldstr2534->fixed)qbs_set(oldstr2534,_FUNC_UDTREFERENCE_STRING_A); qbs_free(_FUNC_UDTREFERENCE_STRING_A); } qbs_free(_FUNC_UDTREFERENCE_STRING_OBAK); diff --git a/internal/source/free174.txt b/internal/source/free174.txt index 866ab555a..8eadb13a8 100644 --- a/internal/source/free174.txt +++ b/internal/source/free174.txt @@ -1,5 +1,5 @@ -if(oldstr4978){ -if(oldstr4978->fixed)qbs_set(oldstr4978,_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE); +if(oldstr4980){ +if(oldstr4980->fixed)qbs_set(oldstr4980,_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE); qbs_free(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE); } qbs_free(_SUB_SHOWVWATCHPANEL_STRING_TITLE); diff --git a/internal/source/free175.txt b/internal/source/free175.txt index f636449e1..bb161f919 100644 --- a/internal/source/free175.txt +++ b/internal/source/free175.txt @@ -1,9 +1,9 @@ -if(oldstr5025){ -if(oldstr5025->fixed)qbs_set(oldstr5025,_FUNC_MULTISEARCH_STRING___FULLTEXT); +if(oldstr5027){ +if(oldstr5027->fixed)qbs_set(oldstr5027,_FUNC_MULTISEARCH_STRING___FULLTEXT); qbs_free(_FUNC_MULTISEARCH_STRING___FULLTEXT); } -if(oldstr5026){ -if(oldstr5026->fixed)qbs_set(oldstr5026,_FUNC_MULTISEARCH_STRING___SEARCHSTRING); +if(oldstr5028){ +if(oldstr5028->fixed)qbs_set(oldstr5028,_FUNC_MULTISEARCH_STRING___SEARCHSTRING); qbs_free(_FUNC_MULTISEARCH_STRING___SEARCHSTRING); } qbs_free(_FUNC_MULTISEARCH_STRING_FULLTEXT); diff --git a/internal/source/free176.txt b/internal/source/free176.txt index 2ad48048b..8c6019b23 100644 --- a/internal/source/free176.txt +++ b/internal/source/free176.txt @@ -1,9 +1,9 @@ -if(oldstr5031){ -if(oldstr5031->fixed)qbs_set(oldstr5031,_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE); +if(oldstr5033){ +if(oldstr5033->fixed)qbs_set(oldstr5033,_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE); qbs_free(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE); } -if(oldstr5032){ -if(oldstr5032->fixed)qbs_set(oldstr5032,_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER); +if(oldstr5034){ +if(oldstr5034->fixed)qbs_set(oldstr5034,_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER); qbs_free(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER); } if (_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[2]&1){ diff --git a/internal/source/free177.txt b/internal/source/free177.txt index 916828a62..a204fb332 100644 --- a/internal/source/free177.txt +++ b/internal/source/free177.txt @@ -1,9 +1,9 @@ -if(oldstr5155){ -if(oldstr5155->fixed)qbs_set(oldstr5155,_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH); +if(oldstr5157){ +if(oldstr5157->fixed)qbs_set(oldstr5157,_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH); qbs_free(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH); } -if(oldstr5156){ -if(oldstr5156->fixed)qbs_set(oldstr5156,_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES); +if(oldstr5158){ +if(oldstr5158->fixed)qbs_set(oldstr5158,_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES); qbs_free(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES); } if (_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[2]&1){ diff --git a/internal/source/free178.txt b/internal/source/free178.txt index f573fbd15..2e5d951ca 100644 --- a/internal/source/free178.txt +++ b/internal/source/free178.txt @@ -1,5 +1,5 @@ -if(oldstr5193){ -if(oldstr5193->fixed)qbs_set(oldstr5193,_FUNC_FORMATRANGE_STRING___TEXT); +if(oldstr5195){ +if(oldstr5195->fixed)qbs_set(oldstr5195,_FUNC_FORMATRANGE_STRING___TEXT); qbs_free(_FUNC_FORMATRANGE_STRING___TEXT); } qbs_free(_FUNC_FORMATRANGE_STRING_TEMP); diff --git a/internal/source/free179.txt b/internal/source/free179.txt index 1b3b2cb50..4098ad3b9 100644 --- a/internal/source/free179.txt +++ b/internal/source/free179.txt @@ -1,9 +1,9 @@ -if(oldstr5197){ -if(oldstr5197->fixed)qbs_set(oldstr5197,_FUNC_EXPANDARRAY_STRING___INDEXES); +if(oldstr5199){ +if(oldstr5199->fixed)qbs_set(oldstr5199,_FUNC_EXPANDARRAY_STRING___INDEXES); qbs_free(_FUNC_EXPANDARRAY_STRING___INDEXES); } -if(oldstr5198){ -if(oldstr5198->fixed)qbs_set(oldstr5198,_FUNC_EXPANDARRAY_STRING___PATH); +if(oldstr5200){ +if(oldstr5200->fixed)qbs_set(oldstr5200,_FUNC_EXPANDARRAY_STRING___PATH); qbs_free(_FUNC_EXPANDARRAY_STRING___PATH); } qbs_free(_FUNC_EXPANDARRAY_STRING_INDEXES); diff --git a/internal/source/free18.txt b/internal/source/free18.txt index aaf52584e..8987b6af2 100644 --- a/internal/source/free18.txt +++ b/internal/source/free18.txt @@ -1,5 +1,5 @@ -if(oldstr2535){ -if(oldstr2535->fixed)qbs_set(oldstr2535,_FUNC_EVALUATE_STRING_A2); +if(oldstr2537){ +if(oldstr2537->fixed)qbs_set(oldstr2537,_FUNC_EVALUATE_STRING_A2); qbs_free(_FUNC_EVALUATE_STRING_A2); } if (_FUNC_EVALUATE_ARRAY_STRING_BLOCK[2]&1){ diff --git a/internal/source/free180.txt b/internal/source/free180.txt index d6c73c7b9..2b796eab6 100644 --- a/internal/source/free180.txt +++ b/internal/source/free180.txt @@ -1,5 +1,5 @@ -if(oldstr5204){ -if(oldstr5204->fixed)qbs_set(oldstr5204,_FUNC_PARSERANGE_STRING___TEXT); +if(oldstr5206){ +if(oldstr5206->fixed)qbs_set(oldstr5206,_FUNC_PARSERANGE_STRING___TEXT); qbs_free(_FUNC_PARSERANGE_STRING___TEXT); } qbs_free(_FUNC_PARSERANGE_STRING_FILTER); diff --git a/internal/source/free185.txt b/internal/source/free185.txt index 49dfc2522..3fbaf5a1b 100644 --- a/internal/source/free185.txt +++ b/internal/source/free185.txt @@ -1,4 +1,4 @@ -if(oldstr5276){ -if(oldstr5276->fixed)qbs_set(oldstr5276,_SUB_FINDQUOTECOMMENT_STRING_TEXT); +if(oldstr5278){ +if(oldstr5278->fixed)qbs_set(oldstr5278,_SUB_FINDQUOTECOMMENT_STRING_TEXT); qbs_free(_SUB_FINDQUOTECOMMENT_STRING_TEXT); } diff --git a/internal/source/free19.txt b/internal/source/free19.txt index 387615d76..7e74783bb 100644 --- a/internal/source/free19.txt +++ b/internal/source/free19.txt @@ -1,5 +1,5 @@ -if(oldstr2601){ -if(oldstr2601->fixed)qbs_set(oldstr2601,_FUNC_EVALUATEFUNC_STRING_A2); +if(oldstr2603){ +if(oldstr2603->fixed)qbs_set(oldstr2603,_FUNC_EVALUATEFUNC_STRING_A2); qbs_free(_FUNC_EVALUATEFUNC_STRING_A2); } qbs_free(_FUNC_EVALUATEFUNC_STRING_A); diff --git a/internal/source/free192.txt b/internal/source/free192.txt index 68f27ecb4..b107d9790 100644 --- a/internal/source/free192.txt +++ b/internal/source/free192.txt @@ -1,5 +1,5 @@ -if(oldstr5345){ -if(oldstr5345->fixed)qbs_set(oldstr5345,_FUNC_IDEFILEEXISTS_STRING_F); +if(oldstr5347){ +if(oldstr5347->fixed)qbs_set(oldstr5347,_FUNC_IDEFILEEXISTS_STRING_F); qbs_free(_FUNC_IDEFILEEXISTS_STRING_F); } qbs_free(_FUNC_IDEFILEEXISTS_STRING_M); diff --git a/internal/source/free199.txt b/internal/source/free199.txt index 62125f879..b9a0d321e 100644 --- a/internal/source/free199.txt +++ b/internal/source/free199.txt @@ -1,4 +1,4 @@ -if(oldstr5394){ -if(oldstr5394->fixed)qbs_set(oldstr5394,_FUNC_IDEHLEN_STRING_A); +if(oldstr5396){ +if(oldstr5396->fixed)qbs_set(oldstr5396,_FUNC_IDEHLEN_STRING_A); qbs_free(_FUNC_IDEHLEN_STRING_A); } diff --git a/internal/source/free2.txt b/internal/source/free2.txt index 841df77c7..6dd2738e5 100644 --- a/internal/source/free2.txt +++ b/internal/source/free2.txt @@ -1,4 +1,4 @@ -if(oldstr2188){ -if(oldstr2188->fixed)qbs_set(oldstr2188,_FUNC_INVALIDSETTINGERROR_STRING_TOKEN); +if(oldstr2190){ +if(oldstr2190->fixed)qbs_set(oldstr2190,_FUNC_INVALIDSETTINGERROR_STRING_TOKEN); qbs_free(_FUNC_INVALIDSETTINGERROR_STRING_TOKEN); } diff --git a/internal/source/free200.txt b/internal/source/free200.txt index fe5e6fed2..de838a14f 100644 --- a/internal/source/free200.txt +++ b/internal/source/free200.txt @@ -1,5 +1,5 @@ -if(oldstr5397){ -if(oldstr5397->fixed)qbs_set(oldstr5397,_SUB_IDEHPRINT_STRING_A); +if(oldstr5399){ +if(oldstr5399->fixed)qbs_set(oldstr5399,_SUB_IDEHPRINT_STRING_A); qbs_free(_SUB_IDEHPRINT_STRING_A); } qbs_free(_SUB_IDEHPRINT_STRING_C); diff --git a/internal/source/free201.txt b/internal/source/free201.txt index 501ad21e1..f85b38377 100644 --- a/internal/source/free201.txt +++ b/internal/source/free201.txt @@ -1,4 +1,4 @@ -if(oldstr5402){ -if(oldstr5402->fixed)qbs_set(oldstr5402,_SUB_IDEINSLINE_STRING_TEXT); +if(oldstr5404){ +if(oldstr5404->fixed)qbs_set(oldstr5404,_SUB_IDEINSLINE_STRING_TEXT); qbs_free(_SUB_IDEINSLINE_STRING_TEXT); } diff --git a/internal/source/free202.txt b/internal/source/free202.txt index 6f577f5db..1be7eb584 100644 --- a/internal/source/free202.txt +++ b/internal/source/free202.txt @@ -1,17 +1,17 @@ -if(oldstr5411){ -if(oldstr5411->fixed)qbs_set(oldstr5411,_FUNC_IDEINPUTBOX_STRING_TITLE); +if(oldstr5413){ +if(oldstr5413->fixed)qbs_set(oldstr5413,_FUNC_IDEINPUTBOX_STRING_TITLE); qbs_free(_FUNC_IDEINPUTBOX_STRING_TITLE); } -if(oldstr5412){ -if(oldstr5412->fixed)qbs_set(oldstr5412,_FUNC_IDEINPUTBOX_STRING_CAPTION); +if(oldstr5414){ +if(oldstr5414->fixed)qbs_set(oldstr5414,_FUNC_IDEINPUTBOX_STRING_CAPTION); qbs_free(_FUNC_IDEINPUTBOX_STRING_CAPTION); } -if(oldstr5413){ -if(oldstr5413->fixed)qbs_set(oldstr5413,_FUNC_IDEINPUTBOX_STRING_INITIALVALUE); +if(oldstr5415){ +if(oldstr5415->fixed)qbs_set(oldstr5415,_FUNC_IDEINPUTBOX_STRING_INITIALVALUE); qbs_free(_FUNC_IDEINPUTBOX_STRING_INITIALVALUE); } -if(oldstr5414){ -if(oldstr5414->fixed)qbs_set(oldstr5414,_FUNC_IDEINPUTBOX_STRING_VALIDINPUT); +if(oldstr5416){ +if(oldstr5416->fixed)qbs_set(oldstr5416,_FUNC_IDEINPUTBOX_STRING_VALIDINPUT); qbs_free(_FUNC_IDEINPUTBOX_STRING_VALIDINPUT); } if (_FUNC_IDEINPUTBOX_ARRAY_UDT_O[2]&1){ diff --git a/internal/source/free203.txt b/internal/source/free203.txt index 59c9f3d8c..f0edf8e18 100644 --- a/internal/source/free203.txt +++ b/internal/source/free203.txt @@ -1,5 +1,5 @@ -if(oldstr5432){ -if(oldstr5432->fixed)qbs_set(oldstr5432,_SUB_IDENEWSF_STRING_SF); +if(oldstr5434){ +if(oldstr5434->fixed)qbs_set(oldstr5434,_SUB_IDENEWSF_STRING_SF); qbs_free(_SUB_IDENEWSF_STRING_SF); } qbs_free(_SUB_IDENEWSF_STRING_A); diff --git a/internal/source/free204.txt b/internal/source/free204.txt index a9a8cdc56..1541bfb24 100644 --- a/internal/source/free204.txt +++ b/internal/source/free204.txt @@ -1,5 +1,5 @@ -if(oldstr5440){ -if(oldstr5440->fixed)qbs_set(oldstr5440,_FUNC_IDENEWFOLDER_STRING_THISPATH); +if(oldstr5442){ +if(oldstr5442->fixed)qbs_set(oldstr5442,_FUNC_IDENEWFOLDER_STRING_THISPATH); qbs_free(_FUNC_IDENEWFOLDER_STRING_THISPATH); } qbs_free(_FUNC_IDENEWFOLDER_STRING_NEWFOLDER); diff --git a/internal/source/free205.txt b/internal/source/free205.txt index c6fcec2a6..6b6c6dca1 100644 --- a/internal/source/free205.txt +++ b/internal/source/free205.txt @@ -1,4 +1,4 @@ -if(oldstr5445){ -if(oldstr5445->fixed)qbs_set(oldstr5445,_FUNC_IDENEWTXT_STRING_A); +if(oldstr5447){ +if(oldstr5447->fixed)qbs_set(oldstr5447,_FUNC_IDENEWTXT_STRING_A); qbs_free(_FUNC_IDENEWTXT_STRING_A); } diff --git a/internal/source/free207.txt b/internal/source/free207.txt index bf9d70341..3a6390c42 100644 --- a/internal/source/free207.txt +++ b/internal/source/free207.txt @@ -1,5 +1,5 @@ -if(oldstr5446){ -if(oldstr5446->fixed)qbs_set(oldstr5446,_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME); +if(oldstr5448){ +if(oldstr5448->fixed)qbs_set(oldstr5448,_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME); qbs_free(_FUNC_IDEFILEDIALOG_STRING_PROGRAMNAME); } if (_FUNC_IDEFILEDIALOG_ARRAY_UDT_O[2]&1){ diff --git a/internal/source/free208.txt b/internal/source/free208.txt index 98a077d99..36e91610e 100644 --- a/internal/source/free208.txt +++ b/internal/source/free208.txt @@ -1,4 +1,4 @@ -if(oldstr5474){ -if(oldstr5474->fixed)qbs_set(oldstr5474,_SUB_IDEPAR_STRING_TITLE); +if(oldstr5476){ +if(oldstr5476->fixed)qbs_set(oldstr5476,_SUB_IDEPAR_STRING_TITLE); qbs_free(_SUB_IDEPAR_STRING_TITLE); } diff --git a/internal/source/free21.txt b/internal/source/free21.txt index 7cf82b0b2..64156bfa4 100644 --- a/internal/source/free21.txt +++ b/internal/source/free21.txt @@ -1,5 +1,5 @@ -if(oldstr2699){ -if(oldstr2699->fixed)qbs_set(oldstr2699,_FUNC_EVALUATETOTYP_STRING_A2); +if(oldstr2701){ +if(oldstr2701->fixed)qbs_set(oldstr2701,_FUNC_EVALUATETOTYP_STRING_A2); qbs_free(_FUNC_EVALUATETOTYP_STRING_A2); } qbs_free(_FUNC_EVALUATETOTYP_STRING_A); diff --git a/internal/source/free210.txt b/internal/source/free210.txt index be7be1d7f..271168a79 100644 --- a/internal/source/free210.txt +++ b/internal/source/free210.txt @@ -1,5 +1,5 @@ -if(oldstr5476){ -if(oldstr5476->fixed)qbs_set(oldstr5476,_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY); +if(oldstr5478){ +if(oldstr5478->fixed)qbs_set(oldstr5478,_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY); qbs_free(_FUNC_IDECLEARHISTORY_STRING_WHICHHISTORY); } qbs_free(_FUNC_IDECLEARHISTORY_STRING_T); diff --git a/internal/source/free211.txt b/internal/source/free211.txt index 72c6e1ea5..67eb62949 100644 --- a/internal/source/free211.txt +++ b/internal/source/free211.txt @@ -1,5 +1,5 @@ -if(oldstr5478){ -if(oldstr5478->fixed)qbs_set(oldstr5478,_SUB_IDESAVE_STRING_F); +if(oldstr5480){ +if(oldstr5480->fixed)qbs_set(oldstr5480,_SUB_IDESAVE_STRING_F); qbs_free(_SUB_IDESAVE_STRING_F); } qbs_free(_SUB_IDESAVE_STRING_A); diff --git a/internal/source/free213.txt b/internal/source/free213.txt index dd640555e..fade2abb2 100644 --- a/internal/source/free213.txt +++ b/internal/source/free213.txt @@ -1,4 +1,4 @@ -if(oldstr5483){ -if(oldstr5483->fixed)qbs_set(oldstr5483,_SUB_IDESETLINE_STRING_TEXT); +if(oldstr5485){ +if(oldstr5485->fixed)qbs_set(oldstr5485,_SUB_IDESETLINE_STRING_TEXT); qbs_free(_SUB_IDESETLINE_STRING_TEXT); } diff --git a/internal/source/free219.txt b/internal/source/free219.txt index 131855fc9..6cdbe28a0 100644 --- a/internal/source/free219.txt +++ b/internal/source/free219.txt @@ -1,9 +1,9 @@ -if(oldstr5687){ -if(oldstr5687->fixed)qbs_set(oldstr5687,_SUB_IDEOBJUPDATE_STRING_KK); +if(oldstr5689){ +if(oldstr5689->fixed)qbs_set(oldstr5689,_SUB_IDEOBJUPDATE_STRING_KK); qbs_free(_SUB_IDEOBJUPDATE_STRING_KK); } -if(oldstr5688){ -if(oldstr5688->fixed)qbs_set(oldstr5688,_SUB_IDEOBJUPDATE_STRING_ALTLETTER); +if(oldstr5690){ +if(oldstr5690->fixed)qbs_set(oldstr5690,_SUB_IDEOBJUPDATE_STRING_ALTLETTER); qbs_free(_SUB_IDEOBJUPDATE_STRING_ALTLETTER); } qbs_free(_SUB_IDEOBJUPDATE_STRING1_SEP); diff --git a/internal/source/free22.txt b/internal/source/free22.txt index ee6324c47..734b762a7 100644 --- a/internal/source/free22.txt +++ b/internal/source/free22.txt @@ -1,5 +1,5 @@ -if(oldstr2746){ -if(oldstr2746->fixed)qbs_set(oldstr2746,_FUNC_FINDID_STRING_N2); +if(oldstr2748){ +if(oldstr2748->fixed)qbs_set(oldstr2748,_FUNC_FINDID_STRING_N2); qbs_free(_FUNC_FINDID_STRING_N2); } qbs_free(_FUNC_FINDID_STRING_N); diff --git a/internal/source/free222.txt b/internal/source/free222.txt index 931304bf4..2e5907e0a 100644 --- a/internal/source/free222.txt +++ b/internal/source/free222.txt @@ -1,9 +1,9 @@ -if(oldstr5746){ -if(oldstr5746->fixed)qbs_set(oldstr5746,_FUNC_IDEZCHANGEPATH_STRING_PATH); +if(oldstr5748){ +if(oldstr5748->fixed)qbs_set(oldstr5748,_FUNC_IDEZCHANGEPATH_STRING_PATH); qbs_free(_FUNC_IDEZCHANGEPATH_STRING_PATH); } -if(oldstr5747){ -if(oldstr5747->fixed)qbs_set(oldstr5747,_FUNC_IDEZCHANGEPATH_STRING_NEWPATH); +if(oldstr5749){ +if(oldstr5749->fixed)qbs_set(oldstr5749,_FUNC_IDEZCHANGEPATH_STRING_NEWPATH); qbs_free(_FUNC_IDEZCHANGEPATH_STRING_NEWPATH); } qbs_free(_FUNC_IDEZCHANGEPATH_STRING_A); diff --git a/internal/source/free223.txt b/internal/source/free223.txt index 16dca996b..9256afd82 100644 --- a/internal/source/free223.txt +++ b/internal/source/free223.txt @@ -1,9 +1,9 @@ -if(oldstr5755){ -if(oldstr5755->fixed)qbs_set(oldstr5755,_FUNC_IDEZFILELIST_STRING_PATH); +if(oldstr5757){ +if(oldstr5757->fixed)qbs_set(oldstr5757,_FUNC_IDEZFILELIST_STRING_PATH); qbs_free(_FUNC_IDEZFILELIST_STRING_PATH); } -if(oldstr5756){ -if(oldstr5756->fixed)qbs_set(oldstr5756,_FUNC_IDEZFILELIST_STRING_MASK); +if(oldstr5758){ +if(oldstr5758->fixed)qbs_set(oldstr5758,_FUNC_IDEZFILELIST_STRING_MASK); qbs_free(_FUNC_IDEZFILELIST_STRING_MASK); } qbs_free(_FUNC_IDEZFILELIST_STRING1_SEP); diff --git a/internal/source/free225.txt b/internal/source/free225.txt index 27c630314..caf0f89b5 100644 --- a/internal/source/free225.txt +++ b/internal/source/free225.txt @@ -1,5 +1,5 @@ -if(oldstr5773){ -if(oldstr5773->fixed)qbs_set(oldstr5773,_FUNC_IDEZPATHLIST_STRING_PATH); +if(oldstr5775){ +if(oldstr5775->fixed)qbs_set(oldstr5775,_FUNC_IDEZPATHLIST_STRING_PATH); qbs_free(_FUNC_IDEZPATHLIST_STRING_PATH); } qbs_free(_FUNC_IDEZPATHLIST_STRING1_SEP); diff --git a/internal/source/free226.txt b/internal/source/free226.txt index e8e874d20..3a48624c2 100644 --- a/internal/source/free226.txt +++ b/internal/source/free226.txt @@ -1,5 +1,5 @@ -if(oldstr5790){ -if(oldstr5790->fixed)qbs_set(oldstr5790,_FUNC_IDEZTAKEPATH_STRING_F); +if(oldstr5792){ +if(oldstr5792->fixed)qbs_set(oldstr5792,_FUNC_IDEZTAKEPATH_STRING_F); qbs_free(_FUNC_IDEZTAKEPATH_STRING_F); } qbs_free(_FUNC_IDEZTAKEPATH_STRING_P); diff --git a/internal/source/free227.txt b/internal/source/free227.txt index b951dba4b..79caa67c5 100644 --- a/internal/source/free227.txt +++ b/internal/source/free227.txt @@ -1,9 +1,9 @@ -if(oldstr5795){ -if(oldstr5795->fixed)qbs_set(oldstr5795,_FUNC_IDEZGETFILEPATH_STRING_ROOT); +if(oldstr5797){ +if(oldstr5797->fixed)qbs_set(oldstr5797,_FUNC_IDEZGETFILEPATH_STRING_ROOT); qbs_free(_FUNC_IDEZGETFILEPATH_STRING_ROOT); } -if(oldstr5796){ -if(oldstr5796->fixed)qbs_set(oldstr5796,_FUNC_IDEZGETFILEPATH_STRING_F); +if(oldstr5798){ +if(oldstr5798->fixed)qbs_set(oldstr5798,_FUNC_IDEZGETFILEPATH_STRING_F); qbs_free(_FUNC_IDEZGETFILEPATH_STRING_F); } qbs_free(_FUNC_IDEZGETFILEPATH_STRING_P); diff --git a/internal/source/free23.txt b/internal/source/free23.txt index cfc9c3786..0f8a0997f 100644 --- a/internal/source/free23.txt +++ b/internal/source/free23.txt @@ -1,5 +1,5 @@ -if(oldstr2758){ -if(oldstr2758->fixed)qbs_set(oldstr2758,_FUNC_FINDARRAY_STRING_SECURE); +if(oldstr2760){ +if(oldstr2760->fixed)qbs_set(oldstr2760,_FUNC_FINDARRAY_STRING_SECURE); qbs_free(_FUNC_FINDARRAY_STRING_SECURE); } qbs_free(_FUNC_FINDARRAY_STRING_N); diff --git a/internal/source/free232.txt b/internal/source/free232.txt index 9934b0fc6..60752dbec 100644 --- a/internal/source/free232.txt +++ b/internal/source/free232.txt @@ -1,5 +1,5 @@ -if(oldstr5825){ -if(oldstr5825->fixed)qbs_set(oldstr5825,_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE); +if(oldstr5827){ +if(oldstr5827->fixed)qbs_set(oldstr5827,_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE); qbs_free(_FUNC_IDEGETLINENUMBERBOX_STRING_TITLE); } qbs_free(_FUNC_IDEGETLINENUMBERBOX_STRING_A2); diff --git a/internal/source/free234.txt b/internal/source/free234.txt index 2e0afd148..d0aaa3215 100644 --- a/internal/source/free234.txt +++ b/internal/source/free234.txt @@ -1,13 +1,13 @@ -if(oldstr5846){ -if(oldstr5846->fixed)qbs_set(oldstr5846,_FUNC_IDEMESSAGEBOX_STRING_TITLESTR); +if(oldstr5848){ +if(oldstr5848->fixed)qbs_set(oldstr5848,_FUNC_IDEMESSAGEBOX_STRING_TITLESTR); qbs_free(_FUNC_IDEMESSAGEBOX_STRING_TITLESTR); } -if(oldstr5847){ -if(oldstr5847->fixed)qbs_set(oldstr5847,_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR); +if(oldstr5849){ +if(oldstr5849->fixed)qbs_set(oldstr5849,_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR); qbs_free(_FUNC_IDEMESSAGEBOX_STRING_MESSAGESTR); } -if(oldstr5848){ -if(oldstr5848->fixed)qbs_set(oldstr5848,_FUNC_IDEMESSAGEBOX_STRING_BUTTONS); +if(oldstr5850){ +if(oldstr5850->fixed)qbs_set(oldstr5850,_FUNC_IDEMESSAGEBOX_STRING_BUTTONS); qbs_free(_FUNC_IDEMESSAGEBOX_STRING_BUTTONS); } if (_FUNC_IDEMESSAGEBOX_ARRAY_UDT_O[2]&1){ diff --git a/internal/source/free235.txt b/internal/source/free235.txt index b8433c19b..bb233b0a5 100644 --- a/internal/source/free235.txt +++ b/internal/source/free235.txt @@ -1,8 +1,8 @@ -if(oldstr5871){ -if(oldstr5871->fixed)qbs_set(oldstr5871,_FUNC_IDEYESNOBOX_STRING_TITLESTR); +if(oldstr5873){ +if(oldstr5873->fixed)qbs_set(oldstr5873,_FUNC_IDEYESNOBOX_STRING_TITLESTR); qbs_free(_FUNC_IDEYESNOBOX_STRING_TITLESTR); } -if(oldstr5872){ -if(oldstr5872->fixed)qbs_set(oldstr5872,_FUNC_IDEYESNOBOX_STRING_MESSAGESTR); +if(oldstr5874){ +if(oldstr5874->fixed)qbs_set(oldstr5874,_FUNC_IDEYESNOBOX_STRING_MESSAGESTR); qbs_free(_FUNC_IDEYESNOBOX_STRING_MESSAGESTR); } diff --git a/internal/source/free236.txt b/internal/source/free236.txt index a118ec058..b10e1b450 100644 --- a/internal/source/free236.txt +++ b/internal/source/free236.txt @@ -1,16 +1,16 @@ -if(oldstr5873){ -if(oldstr5873->fixed)qbs_set(oldstr5873,_FUNC_IDEACTIVITYBOX_STRING_ACTION); +if(oldstr5875){ +if(oldstr5875->fixed)qbs_set(oldstr5875,_FUNC_IDEACTIVITYBOX_STRING_ACTION); qbs_free(_FUNC_IDEACTIVITYBOX_STRING_ACTION); } -if(oldstr5874){ -if(oldstr5874->fixed)qbs_set(oldstr5874,_FUNC_IDEACTIVITYBOX_STRING_TITLESTR); +if(oldstr5876){ +if(oldstr5876->fixed)qbs_set(oldstr5876,_FUNC_IDEACTIVITYBOX_STRING_TITLESTR); qbs_free(_FUNC_IDEACTIVITYBOX_STRING_TITLESTR); } -if(oldstr5875){ -if(oldstr5875->fixed)qbs_set(oldstr5875,_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR); +if(oldstr5877){ +if(oldstr5877->fixed)qbs_set(oldstr5877,_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR); qbs_free(_FUNC_IDEACTIVITYBOX_STRING_MESSAGESTR); } -if(oldstr5876){ -if(oldstr5876->fixed)qbs_set(oldstr5876,_FUNC_IDEACTIVITYBOX_STRING_BUTTONS); +if(oldstr5878){ +if(oldstr5878->fixed)qbs_set(oldstr5878,_FUNC_IDEACTIVITYBOX_STRING_BUTTONS); qbs_free(_FUNC_IDEACTIVITYBOX_STRING_BUTTONS); } diff --git a/internal/source/free24.txt b/internal/source/free24.txt index 0a0bbb2d4..8c3d1df84 100644 --- a/internal/source/free24.txt +++ b/internal/source/free24.txt @@ -1,5 +1,5 @@ -if(oldstr2772){ -if(oldstr2772->fixed)qbs_set(oldstr2772,_FUNC_FIXOPERATIONORDER_STRING_SAVEA); +if(oldstr2774){ +if(oldstr2774->fixed)qbs_set(oldstr2774,_FUNC_FIXOPERATIONORDER_STRING_SAVEA); qbs_free(_FUNC_FIXOPERATIONORDER_STRING_SAVEA); } qbs_free(_FUNC_FIXOPERATIONORDER_STRING_A); diff --git a/internal/source/free241.txt b/internal/source/free241.txt index eb5b2286c..3ef5186dc 100644 --- a/internal/source/free241.txt +++ b/internal/source/free241.txt @@ -1,8 +1,8 @@ -if(oldstr6095){ -if(oldstr6095->fixed)qbs_set(oldstr6095,_FUNC_COUNTITEMS_STRING_SEARCHSTRING); +if(oldstr6097){ +if(oldstr6097->fixed)qbs_set(oldstr6097,_FUNC_COUNTITEMS_STRING_SEARCHSTRING); qbs_free(_FUNC_COUNTITEMS_STRING_SEARCHSTRING); } -if(oldstr6096){ -if(oldstr6096->fixed)qbs_set(oldstr6096,_FUNC_COUNTITEMS_STRING_ITEM); +if(oldstr6098){ +if(oldstr6098->fixed)qbs_set(oldstr6098,_FUNC_COUNTITEMS_STRING_ITEM); qbs_free(_FUNC_COUNTITEMS_STRING_ITEM); } diff --git a/internal/source/free248.txt b/internal/source/free248.txt index 0bc133ad9..d204c7c0a 100644 --- a/internal/source/free248.txt +++ b/internal/source/free248.txt @@ -1,5 +1,5 @@ -if(oldstr6124){ -if(oldstr6124->fixed)qbs_set(oldstr6124,_SUB_IDEIMPORTBOOKMARKS_STRING_F2); +if(oldstr6126){ +if(oldstr6126->fixed)qbs_set(oldstr6126,_SUB_IDEIMPORTBOOKMARKS_STRING_F2); qbs_free(_SUB_IDEIMPORTBOOKMARKS_STRING_F2); } qbs_free(_SUB_IDEIMPORTBOOKMARKS_STRING_F); diff --git a/internal/source/free249.txt b/internal/source/free249.txt index 503cbd087..44b8a6657 100644 --- a/internal/source/free249.txt +++ b/internal/source/free249.txt @@ -1,5 +1,5 @@ -if(oldstr6133){ -if(oldstr6133->fixed)qbs_set(oldstr6133,_SUB_IDESAVEBOOKMARKS_STRING_F2); +if(oldstr6135){ +if(oldstr6135->fixed)qbs_set(oldstr6135,_SUB_IDESAVEBOOKMARKS_STRING_F2); qbs_free(_SUB_IDESAVEBOOKMARKS_STRING_F2); } qbs_free(_SUB_IDESAVEBOOKMARKS_STRING_F); diff --git a/internal/source/free25.txt b/internal/source/free25.txt index e69b0471f..e85db18c8 100644 --- a/internal/source/free25.txt +++ b/internal/source/free25.txt @@ -1,5 +1,5 @@ -if(oldstr2903){ -if(oldstr2903->fixed)qbs_set(oldstr2903,_FUNC_GETELEMENTSPECIAL_STRING_SAVEA); +if(oldstr2905){ +if(oldstr2905->fixed)qbs_set(oldstr2905,_FUNC_GETELEMENTSPECIAL_STRING_SAVEA); qbs_free(_FUNC_GETELEMENTSPECIAL_STRING_SAVEA); } qbs_free(_FUNC_GETELEMENTSPECIAL_STRING_A); diff --git a/internal/source/free254.txt b/internal/source/free254.txt index e0407b445..3471f4469 100644 --- a/internal/source/free254.txt +++ b/internal/source/free254.txt @@ -1,5 +1,5 @@ -if(oldstr6205){ -if(oldstr6205->fixed)qbs_set(oldstr6205,_SUB_IDEADDRECENT_STRING_F2); +if(oldstr6207){ +if(oldstr6207->fixed)qbs_set(oldstr6207,_SUB_IDEADDRECENT_STRING_F2); qbs_free(_SUB_IDEADDRECENT_STRING_F2); } qbs_free(_SUB_IDEADDRECENT_STRING_F); diff --git a/internal/source/free255.txt b/internal/source/free255.txt index 9111def51..ffecfd50b 100644 --- a/internal/source/free255.txt +++ b/internal/source/free255.txt @@ -1,4 +1,4 @@ -if(oldstr6209){ -if(oldstr6209->fixed)qbs_set(oldstr6209,_FUNC_REMOVEDOUBLESLASHES_STRING_F); +if(oldstr6211){ +if(oldstr6211->fixed)qbs_set(oldstr6211,_FUNC_REMOVEDOUBLESLASHES_STRING_F); qbs_free(_FUNC_REMOVEDOUBLESLASHES_STRING_F); } diff --git a/internal/source/free256.txt b/internal/source/free256.txt index 6413e7130..0a78055c4 100644 --- a/internal/source/free256.txt +++ b/internal/source/free256.txt @@ -1,5 +1,5 @@ -if(oldstr6212){ -if(oldstr6212->fixed)qbs_set(oldstr6212,_SUB_IDEADDSEARCHED_STRING_S2); +if(oldstr6214){ +if(oldstr6214->fixed)qbs_set(oldstr6214,_SUB_IDEADDSEARCHED_STRING_S2); qbs_free(_SUB_IDEADDSEARCHED_STRING_S2); } qbs_free(_SUB_IDEADDSEARCHED_STRING_S); diff --git a/internal/source/free259.txt b/internal/source/free259.txt index 7de29d645..25ef10459 100644 --- a/internal/source/free259.txt +++ b/internal/source/free259.txt @@ -1,5 +1,5 @@ -if(oldstr6276){ -if(oldstr6276->fixed)qbs_set(oldstr6276,_FUNC_IDEF1BOX_STRING_LNKS); +if(oldstr6278){ +if(oldstr6278->fixed)qbs_set(oldstr6278,_FUNC_IDEF1BOX_STRING_LNKS); qbs_free(_FUNC_IDEF1BOX_STRING_LNKS); } if (_FUNC_IDEF1BOX_ARRAY_UDT_O[2]&1){ diff --git a/internal/source/free265.txt b/internal/source/free265.txt index e1e6bef5e..d3249a6c3 100644 --- a/internal/source/free265.txt +++ b/internal/source/free265.txt @@ -1,4 +1,4 @@ -if(oldstr6311){ -if(oldstr6311->fixed)qbs_set(oldstr6311,_SUB_UPDATEMENUHELPLINE_STRING_A); +if(oldstr6313){ +if(oldstr6313->fixed)qbs_set(oldstr6313,_SUB_UPDATEMENUHELPLINE_STRING_A); qbs_free(_SUB_UPDATEMENUHELPLINE_STRING_A); } diff --git a/internal/source/free269.txt b/internal/source/free269.txt index f73909e59..aee3a04f5 100644 --- a/internal/source/free269.txt +++ b/internal/source/free269.txt @@ -1,13 +1,13 @@ -if(oldstr6314){ -if(oldstr6314->fixed)qbs_set(oldstr6314,_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK); +if(oldstr6316){ +if(oldstr6316->fixed)qbs_set(oldstr6316,_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK); qbs_free(_FUNC_BINARYFORMATCHECK_STRING_PATHTOCHECK); } -if(oldstr6315){ -if(oldstr6315->fixed)qbs_set(oldstr6315,_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK); +if(oldstr6317){ +if(oldstr6317->fixed)qbs_set(oldstr6317,_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK); qbs_free(_FUNC_BINARYFORMATCHECK_STRING_PATHSEPTOCHECK); } -if(oldstr6316){ -if(oldstr6316->fixed)qbs_set(oldstr6316,_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK); +if(oldstr6318){ +if(oldstr6318->fixed)qbs_set(oldstr6318,_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK); qbs_free(_FUNC_BINARYFORMATCHECK_STRING_FILETOCHECK); } qbs_free(_FUNC_BINARYFORMATCHECK_STRING_A); diff --git a/internal/source/free27.txt b/internal/source/free27.txt index dcd254e4f..5fc5a3a12 100644 --- a/internal/source/free27.txt +++ b/internal/source/free27.txt @@ -1,5 +1,5 @@ -if(oldstr2905){ -if(oldstr2905->fixed)qbs_set(oldstr2905,_FUNC_ISOPERATOR_STRING_A2); +if(oldstr2907){ +if(oldstr2907->fixed)qbs_set(oldstr2907,_FUNC_ISOPERATOR_STRING_A2); qbs_free(_FUNC_ISOPERATOR_STRING_A2); } qbs_free(_FUNC_ISOPERATOR_STRING_A); diff --git a/internal/source/free270.txt b/internal/source/free270.txt index 0c540a41b..2efb4f7da 100644 --- a/internal/source/free270.txt +++ b/internal/source/free270.txt @@ -1,4 +1,4 @@ -if(oldstr6334){ -if(oldstr6334->fixed)qbs_set(oldstr6334,_FUNC_REMOVESYMBOL2_STRING_VARNAME); +if(oldstr6336){ +if(oldstr6336->fixed)qbs_set(oldstr6336,_FUNC_REMOVESYMBOL2_STRING_VARNAME); qbs_free(_FUNC_REMOVESYMBOL2_STRING_VARNAME); } diff --git a/internal/source/free271.txt b/internal/source/free271.txt index d7f39c968..8ddb24d09 100644 --- a/internal/source/free271.txt +++ b/internal/source/free271.txt @@ -1,4 +1,4 @@ -if(oldstr6335){ -if(oldstr6335->fixed)qbs_set(oldstr6335,_SUB_CLEANSUBNAME_STRING_N); +if(oldstr6337){ +if(oldstr6337->fixed)qbs_set(oldstr6337,_SUB_CLEANSUBNAME_STRING_N); qbs_free(_SUB_CLEANSUBNAME_STRING_N); } diff --git a/internal/source/free273.txt b/internal/source/free273.txt index d2a0f5dee..d0cec54bb 100644 --- a/internal/source/free273.txt +++ b/internal/source/free273.txt @@ -1,4 +1,4 @@ -if(oldstr6338){ -if(oldstr6338->fixed)qbs_set(oldstr6338,_SUB_SETSTATUSMESSAGE_STRING_TEXT); +if(oldstr6340){ +if(oldstr6340->fixed)qbs_set(oldstr6340,_SUB_SETSTATUSMESSAGE_STRING_TEXT); qbs_free(_SUB_SETSTATUSMESSAGE_STRING_TEXT); } diff --git a/internal/source/free277.txt b/internal/source/free277.txt index cda10b7c9..b991bd256 100644 --- a/internal/source/free277.txt +++ b/internal/source/free277.txt @@ -1,5 +1,5 @@ -if(oldstr6359){ -if(oldstr6359->fixed)qbs_set(oldstr6359,_SUB_INSERTATCURSOR_STRING_TEMPK); +if(oldstr6361){ +if(oldstr6361->fixed)qbs_set(oldstr6361,_SUB_INSERTATCURSOR_STRING_TEMPK); qbs_free(_SUB_INSERTATCURSOR_STRING_TEMPK); } qbs_free(_SUB_INSERTATCURSOR_STRING_A); diff --git a/internal/source/free278.txt b/internal/source/free278.txt index 2841f965f..9e19f5cf5 100644 --- a/internal/source/free278.txt +++ b/internal/source/free278.txt @@ -1,5 +1,5 @@ -if(oldstr6364){ -if(oldstr6364->fixed)qbs_set(oldstr6364,_FUNC_FINDHELPTOPIC_STRING_TOPIC); +if(oldstr6366){ +if(oldstr6366->fixed)qbs_set(oldstr6366,_FUNC_FINDHELPTOPIC_STRING_TOPIC); qbs_free(_FUNC_FINDHELPTOPIC_STRING_TOPIC); } qbs_free(_FUNC_FINDHELPTOPIC_STRING_LNKS); diff --git a/internal/source/free279.txt b/internal/source/free279.txt index f9e492dcb..75f6015c4 100644 --- a/internal/source/free279.txt +++ b/internal/source/free279.txt @@ -1,5 +1,5 @@ -if(oldstr6368){ -if(oldstr6368->fixed)qbs_set(oldstr6368,_FUNC_ISNUMBER_STRING___A); +if(oldstr6370){ +if(oldstr6370->fixed)qbs_set(oldstr6370,_FUNC_ISNUMBER_STRING___A); qbs_free(_FUNC_ISNUMBER_STRING___A); } qbs_free(_FUNC_ISNUMBER_STRING_A); diff --git a/internal/source/free28.txt b/internal/source/free28.txt index 9b64dfcbe..2cb998014 100644 --- a/internal/source/free28.txt +++ b/internal/source/free28.txt @@ -1,4 +1,4 @@ -if(oldstr2906){ -if(oldstr2906->fixed)qbs_set(oldstr2906,_FUNC_ISUINTEGER_STRING_I); +if(oldstr2908){ +if(oldstr2908->fixed)qbs_set(oldstr2908,_FUNC_ISUINTEGER_STRING_I); qbs_free(_FUNC_ISUINTEGER_STRING_I); } diff --git a/internal/source/free280.txt b/internal/source/free280.txt index 4793961b1..b5b5026ac 100644 --- a/internal/source/free280.txt +++ b/internal/source/free280.txt @@ -1,4 +1,4 @@ -if(oldstr6375){ -if(oldstr6375->fixed)qbs_set(oldstr6375,_FUNC_BACK2BACKNAME_STRING_A); +if(oldstr6377){ +if(oldstr6377->fixed)qbs_set(oldstr6377,_FUNC_BACK2BACKNAME_STRING_A); qbs_free(_FUNC_BACK2BACKNAME_STRING_A); } diff --git a/internal/source/free281.txt b/internal/source/free281.txt index 731032969..3e33e8c6e 100644 --- a/internal/source/free281.txt +++ b/internal/source/free281.txt @@ -1,5 +1,5 @@ -if(oldstr6376){ -if(oldstr6376->fixed)qbs_set(oldstr6376,_FUNC_WIKI_STRING_PAGENAME); +if(oldstr6378){ +if(oldstr6378->fixed)qbs_set(oldstr6378,_FUNC_WIKI_STRING_PAGENAME); qbs_free(_FUNC_WIKI_STRING_PAGENAME); } qbs_free(_FUNC_WIKI_STRING_PAGENAME2); diff --git a/internal/source/free282.txt b/internal/source/free282.txt index d2a15d9e3..5625e95ab 100644 --- a/internal/source/free282.txt +++ b/internal/source/free282.txt @@ -1,5 +1,5 @@ -if(oldstr6391){ -if(oldstr6391->fixed)qbs_set(oldstr6391,_SUB_HELP_ADDTXT_STRING_T); +if(oldstr6393){ +if(oldstr6393->fixed)qbs_set(oldstr6393,_SUB_HELP_ADDTXT_STRING_T); qbs_free(_SUB_HELP_ADDTXT_STRING_T); } qbs_free(_SUB_HELP_ADDTXT_STRING_B); diff --git a/internal/source/free288.txt b/internal/source/free288.txt index 6e84d813c..9aaaea697 100644 --- a/internal/source/free288.txt +++ b/internal/source/free288.txt @@ -1,5 +1,5 @@ -if(oldstr6407){ -if(oldstr6407->fixed)qbs_set(oldstr6407,_SUB_WIKIPARSE_STRING_A); +if(oldstr6409){ +if(oldstr6409->fixed)qbs_set(oldstr6409,_SUB_WIKIPARSE_STRING_A); qbs_free(_SUB_WIKIPARSE_STRING_A); } qbs_free(_SUB_WIKIPARSE_STRING_D); diff --git a/internal/source/free289.txt b/internal/source/free289.txt index 2d5f00230..06aa0dd72 100644 --- a/internal/source/free289.txt +++ b/internal/source/free289.txt @@ -1,5 +1,5 @@ -if(oldstr6637){ -if(oldstr6637->fixed)qbs_set(oldstr6637,_FUNC_WIKISAFENAME_STRING_PAGE); +if(oldstr6639){ +if(oldstr6639->fixed)qbs_set(oldstr6639,_FUNC_WIKISAFENAME_STRING_PAGE); qbs_free(_FUNC_WIKISAFENAME_STRING_PAGE); } qbs_free(_FUNC_WIKISAFENAME_STRING_EXT); diff --git a/internal/source/free29.txt b/internal/source/free29.txt index 5020fa427..dd41cecfe 100644 --- a/internal/source/free29.txt +++ b/internal/source/free29.txt @@ -1,5 +1,5 @@ -if(oldstr2912){ -if(oldstr2912->fixed)qbs_set(oldstr2912,_FUNC_ISVALIDVARIABLE_STRING_A); +if(oldstr2914){ +if(oldstr2914->fixed)qbs_set(oldstr2914,_FUNC_ISVALIDVARIABLE_STRING_A); qbs_free(_FUNC_ISVALIDVARIABLE_STRING_A); } qbs_free(_FUNC_ISVALIDVARIABLE_STRING_E); diff --git a/internal/source/free290.txt b/internal/source/free290.txt index 4583ba82c..b916ddd6e 100644 --- a/internal/source/free290.txt +++ b/internal/source/free290.txt @@ -1,5 +1,5 @@ -if(oldstr6643){ -if(oldstr6643->fixed)qbs_set(oldstr6643,_FUNC_WIKIDLPAGE_STRING_URL); +if(oldstr6645){ +if(oldstr6645->fixed)qbs_set(oldstr6645,_FUNC_WIKIDLPAGE_STRING_URL); qbs_free(_FUNC_WIKIDLPAGE_STRING_URL); } qbs_free(_FUNC_WIKIDLPAGE_STRING_WIK); diff --git a/internal/source/free291.txt b/internal/source/free291.txt index 85973ac88..464e2f254 100644 --- a/internal/source/free291.txt +++ b/internal/source/free291.txt @@ -1,8 +1,8 @@ -if(oldstr6646){ -if(oldstr6646->fixed)qbs_set(oldstr6646,_FUNC_WIKILOOKAHEAD_STRING_A); +if(oldstr6648){ +if(oldstr6648->fixed)qbs_set(oldstr6648,_FUNC_WIKILOOKAHEAD_STRING_A); qbs_free(_FUNC_WIKILOOKAHEAD_STRING_A); } -if(oldstr6647){ -if(oldstr6647->fixed)qbs_set(oldstr6647,_FUNC_WIKILOOKAHEAD_STRING_TOKEN); +if(oldstr6649){ +if(oldstr6649->fixed)qbs_set(oldstr6649,_FUNC_WIKILOOKAHEAD_STRING_TOKEN); qbs_free(_FUNC_WIKILOOKAHEAD_STRING_TOKEN); } diff --git a/internal/source/free292.txt b/internal/source/free292.txt index 7c6e45afb..042042f7a 100644 --- a/internal/source/free292.txt +++ b/internal/source/free292.txt @@ -1,5 +1,5 @@ -if(oldstr6649){ -if(oldstr6649->fixed)qbs_set(oldstr6649,_FUNC_WIKIBUILDCINDENT_STRING_A); +if(oldstr6651){ +if(oldstr6651->fixed)qbs_set(oldstr6651,_FUNC_WIKIBUILDCINDENT_STRING_A); qbs_free(_FUNC_WIKIBUILDCINDENT_STRING_A); } qbs_free(_FUNC_WIKIBUILDCINDENT_STRING_ORG); diff --git a/internal/source/free293.txt b/internal/source/free293.txt index e021e7c9d..98fd3c15c 100644 --- a/internal/source/free293.txt +++ b/internal/source/free293.txt @@ -1,5 +1,5 @@ -if(oldstr6696){ -if(oldstr6696->fixed)qbs_set(oldstr6696,_SUB_PRINTWRAPSTATUS_STRING___TEXT); +if(oldstr6698){ +if(oldstr6698->fixed)qbs_set(oldstr6698,_SUB_PRINTWRAPSTATUS_STRING___TEXT); qbs_free(_SUB_PRINTWRAPSTATUS_STRING___TEXT); } qbs_free(_SUB_PRINTWRAPSTATUS_STRING_TEXT); diff --git a/internal/source/free294.txt b/internal/source/free294.txt index 8f8b3f634..97127edc7 100644 --- a/internal/source/free294.txt +++ b/internal/source/free294.txt @@ -1,5 +1,5 @@ -if(oldstr6704){ -if(oldstr6704->fixed)qbs_set(oldstr6704,_FUNC_GETBYTES_STRING___VALUE); +if(oldstr6706){ +if(oldstr6706->fixed)qbs_set(oldstr6706,_FUNC_GETBYTES_STRING___VALUE); qbs_free(_FUNC_GETBYTES_STRING___VALUE); } qbs_free(_FUNC_GETBYTES_STRING_VALUE); diff --git a/internal/source/free296.txt b/internal/source/free296.txt index 08eac6d98..2879c8027 100644 --- a/internal/source/free296.txt +++ b/internal/source/free296.txt @@ -1,5 +1,5 @@ -if(oldstr6707){ -if(oldstr6707->fixed)qbs_set(oldstr6707,_FUNC_OPENFILE_STRING_IDEOPENFILE); +if(oldstr6709){ +if(oldstr6709->fixed)qbs_set(oldstr6709,_FUNC_OPENFILE_STRING_IDEOPENFILE); qbs_free(_FUNC_OPENFILE_STRING_IDEOPENFILE); } qbs_free(_FUNC_OPENFILE_STRING_F); diff --git a/internal/source/free297.txt b/internal/source/free297.txt index 551692f12..b5ad90136 100644 --- a/internal/source/free297.txt +++ b/internal/source/free297.txt @@ -1,5 +1,5 @@ -if(oldstr6712){ -if(oldstr6712->fixed)qbs_set(oldstr6712,_SUB_EXPORTCODEAS_STRING_DOCFORMAT); +if(oldstr6714){ +if(oldstr6714->fixed)qbs_set(oldstr6714,_SUB_EXPORTCODEAS_STRING_DOCFORMAT); qbs_free(_SUB_EXPORTCODEAS_STRING_DOCFORMAT); } qbs_free(_SUB_EXPORTCODEAS_STRING_PNAM); diff --git a/internal/source/free299.txt b/internal/source/free299.txt index 5c64fe5f6..a16a5105b 100644 --- a/internal/source/free299.txt +++ b/internal/source/free299.txt @@ -1,5 +1,5 @@ -if(oldstr6777){ -if(oldstr6777->fixed)qbs_set(oldstr6777,_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT); +if(oldstr6779){ +if(oldstr6779->fixed)qbs_set(oldstr6779,_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT); qbs_free(_FUNC_ANSITEXTTOUTF8TEXT_STRING_TEXT); } qbs_free(_FUNC_ANSITEXTTOUTF8TEXT_STRING_UTF); diff --git a/internal/source/free3.txt b/internal/source/free3.txt index bb4c861eb..e2d31bd23 100644 --- a/internal/source/free3.txt +++ b/internal/source/free3.txt @@ -1,4 +1,4 @@ -if(oldstr2189){ -if(oldstr2189->fixed)qbs_set(oldstr2189,_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR); +if(oldstr2191){ +if(oldstr2191->fixed)qbs_set(oldstr2191,_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR); qbs_free(_SUB_PRINTTEMPORARYSETTINGSHELPANDEXIT_STRING_ERRSTR); } diff --git a/internal/source/free30.txt b/internal/source/free30.txt index 6b43a4ded..9b53e343e 100644 --- a/internal/source/free30.txt +++ b/internal/source/free30.txt @@ -1,5 +1,5 @@ -if(oldstr2918){ -if(oldstr2918->fixed)qbs_set(oldstr2918,_FUNC_LINEFORMAT_STRING_A); +if(oldstr2920){ +if(oldstr2920->fixed)qbs_set(oldstr2920,_FUNC_LINEFORMAT_STRING_A); qbs_free(_FUNC_LINEFORMAT_STRING_A); } qbs_free(_FUNC_LINEFORMAT_STRING_A2); diff --git a/internal/source/free31.txt b/internal/source/free31.txt index 4993ea2da..97e50c1f4 100644 --- a/internal/source/free31.txt +++ b/internal/source/free31.txt @@ -1,4 +1,4 @@ -if(oldstr3017){ -if(oldstr3017->fixed)qbs_set(oldstr3017,_SUB_MAKEIDREFER_STRING_REF); +if(oldstr3019){ +if(oldstr3019->fixed)qbs_set(oldstr3019,_SUB_MAKEIDREFER_STRING_REF); qbs_free(_SUB_MAKEIDREFER_STRING_REF); } diff --git a/internal/source/free32.txt b/internal/source/free32.txt index bfb063fd1..b89edf21b 100644 --- a/internal/source/free32.txt +++ b/internal/source/free32.txt @@ -1,8 +1,8 @@ -if(oldstr3018){ -if(oldstr3018->fixed)qbs_set(oldstr3018,_FUNC_OPERATORUSAGE_STRING_OPERATOR); +if(oldstr3020){ +if(oldstr3020->fixed)qbs_set(oldstr3020,_FUNC_OPERATORUSAGE_STRING_OPERATOR); qbs_free(_FUNC_OPERATORUSAGE_STRING_OPERATOR); } -if(oldstr3019){ -if(oldstr3019->fixed)qbs_set(oldstr3019,_FUNC_OPERATORUSAGE_STRING_INFO); +if(oldstr3021){ +if(oldstr3021->fixed)qbs_set(oldstr3021,_FUNC_OPERATORUSAGE_STRING_INFO); qbs_free(_FUNC_OPERATORUSAGE_STRING_INFO); } diff --git a/internal/source/free33.txt b/internal/source/free33.txt index 6b79c33e8..f5e0530f0 100644 --- a/internal/source/free33.txt +++ b/internal/source/free33.txt @@ -1,5 +1,5 @@ -if(oldstr3022){ -if(oldstr3022->fixed)qbs_set(oldstr3022,_FUNC_REFER_STRING_A2); +if(oldstr3024){ +if(oldstr3024->fixed)qbs_set(oldstr3024,_FUNC_REFER_STRING_A2); qbs_free(_FUNC_REFER_STRING_A2); } qbs_free(_FUNC_REFER_STRING_A); diff --git a/internal/source/free37.txt b/internal/source/free37.txt index c0463297a..a786928a9 100644 --- a/internal/source/free37.txt +++ b/internal/source/free37.txt @@ -1,4 +1,4 @@ -if(oldstr3035){ -if(oldstr3035->fixed)qbs_set(oldstr3035,_FUNC_SYMBOLTYPE_STRING_S); +if(oldstr3037){ +if(oldstr3037->fixed)qbs_set(oldstr3037,_FUNC_SYMBOLTYPE_STRING_S); qbs_free(_FUNC_SYMBOLTYPE_STRING_S); } diff --git a/internal/source/free38.txt b/internal/source/free38.txt index 00cec5c47..52639d167 100644 --- a/internal/source/free38.txt +++ b/internal/source/free38.txt @@ -1,5 +1,5 @@ -if(oldstr3038){ -if(oldstr3038->fixed)qbs_set(oldstr3038,_FUNC_REMOVESYMBOL_STRING_VARNAME); +if(oldstr3040){ +if(oldstr3040->fixed)qbs_set(oldstr3040,_FUNC_REMOVESYMBOL_STRING_VARNAME); qbs_free(_FUNC_REMOVESYMBOL_STRING_VARNAME); } qbs_free(_FUNC_REMOVESYMBOL_STRING_SYMBOL); diff --git a/internal/source/free4.txt b/internal/source/free4.txt index 18997245a..a2feaf04e 100644 --- a/internal/source/free4.txt +++ b/internal/source/free4.txt @@ -1,5 +1,5 @@ -if(oldstr2203){ -if(oldstr2203->fixed)qbs_set(oldstr2203,_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN); +if(oldstr2205){ +if(oldstr2205->fixed)qbs_set(oldstr2205,_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN); qbs_free(_FUNC_PARSEBOOLEANSETTING_STRING_TOKEN); } qbs_free(_FUNC_PARSEBOOLEANSETTING_STRING_VALUE); diff --git a/internal/source/free40.txt b/internal/source/free40.txt index bfb9685b6..3c988f087 100644 --- a/internal/source/free40.txt +++ b/internal/source/free40.txt @@ -1,9 +1,9 @@ -if(oldstr3040){ -if(oldstr3040->fixed)qbs_set(oldstr3040,_FUNC_SEPERATEARGS_STRING_A); +if(oldstr3042){ +if(oldstr3042->fixed)qbs_set(oldstr3042,_FUNC_SEPERATEARGS_STRING_A); qbs_free(_FUNC_SEPERATEARGS_STRING_A); } -if(oldstr3041){ -if(oldstr3041->fixed)qbs_set(oldstr3041,_FUNC_SEPERATEARGS_STRING_CA); +if(oldstr3043){ +if(oldstr3043->fixed)qbs_set(oldstr3043,_FUNC_SEPERATEARGS_STRING_CA); qbs_free(_FUNC_SEPERATEARGS_STRING_CA); } qbs_free(*((qbs**)(((char*)_FUNC_SEPERATEARGS_UDT_ID2)+ 2861))); diff --git a/internal/source/free41.txt b/internal/source/free41.txt index 4bc0b0c45..95888bfd9 100644 --- a/internal/source/free41.txt +++ b/internal/source/free41.txt @@ -1,9 +1,9 @@ -if(oldstr3135){ -if(oldstr3135->fixed)qbs_set(oldstr3135,_SUB_SETREFER_STRING_A2); +if(oldstr3137){ +if(oldstr3137->fixed)qbs_set(oldstr3137,_SUB_SETREFER_STRING_A2); qbs_free(_SUB_SETREFER_STRING_A2); } -if(oldstr3136){ -if(oldstr3136->fixed)qbs_set(oldstr3136,_SUB_SETREFER_STRING_E2); +if(oldstr3138){ +if(oldstr3138->fixed)qbs_set(oldstr3138,_SUB_SETREFER_STRING_E2); qbs_free(_SUB_SETREFER_STRING_E2); } qbs_free(_SUB_SETREFER_STRING_A); diff --git a/internal/source/free45.txt b/internal/source/free45.txt index c74b26407..1a440bed9 100644 --- a/internal/source/free45.txt +++ b/internal/source/free45.txt @@ -1,5 +1,5 @@ -if(oldstr3177){ -if(oldstr3177->fixed)qbs_set(oldstr3177,_FUNC_TYP2CTYP_STRING_TSTR); +if(oldstr3179){ +if(oldstr3179->fixed)qbs_set(oldstr3179,_FUNC_TYP2CTYP_STRING_TSTR); qbs_free(_FUNC_TYP2CTYP_STRING_TSTR); } qbs_free(_FUNC_TYP2CTYP_STRING_CTYP); diff --git a/internal/source/free46.txt b/internal/source/free46.txt index 23dd9e187..71a73ec4e 100644 --- a/internal/source/free46.txt +++ b/internal/source/free46.txt @@ -1,5 +1,5 @@ -if(oldstr3182){ -if(oldstr3182->fixed)qbs_set(oldstr3182,_FUNC_TYPE2SYMBOL_STRING_TYP); +if(oldstr3184){ +if(oldstr3184->fixed)qbs_set(oldstr3184,_FUNC_TYPE2SYMBOL_STRING_TYP); qbs_free(_FUNC_TYPE2SYMBOL_STRING_TYP); } qbs_free(_FUNC_TYPE2SYMBOL_STRING_T); diff --git a/internal/source/free48.txt b/internal/source/free48.txt index b9173f9fc..9d531d88d 100644 --- a/internal/source/free48.txt +++ b/internal/source/free48.txt @@ -1,5 +1,5 @@ -if(oldstr3199){ -if(oldstr3199->fixed)qbs_set(oldstr3199,_FUNC_TYPNAME2TYP_STRING_T2); +if(oldstr3201){ +if(oldstr3201->fixed)qbs_set(oldstr3201,_FUNC_TYPNAME2TYP_STRING_T2); qbs_free(_FUNC_TYPNAME2TYP_STRING_T2); } qbs_free(_FUNC_TYPNAME2TYP_STRING_T); diff --git a/internal/source/free5.txt b/internal/source/free5.txt index b977fafa2..f0f691645 100644 --- a/internal/source/free5.txt +++ b/internal/source/free5.txt @@ -1,4 +1,4 @@ -if(oldstr2205){ -if(oldstr2205->fixed)qbs_set(oldstr2205,_FUNC_PARSELONGSETTING_STRING_TOKEN); +if(oldstr2207){ +if(oldstr2207->fixed)qbs_set(oldstr2207,_FUNC_PARSELONGSETTING_STRING_TOKEN); qbs_free(_FUNC_PARSELONGSETTING_STRING_TOKEN); } diff --git a/internal/source/free50.txt b/internal/source/free50.txt index f4929e656..7b22feb40 100644 --- a/internal/source/free50.txt +++ b/internal/source/free50.txt @@ -1,5 +1,5 @@ -if(oldstr3214){ -if(oldstr3214->fixed)qbs_set(oldstr3214,_FUNC_VALIDLABEL_STRING_LABEL2); +if(oldstr3216){ +if(oldstr3216->fixed)qbs_set(oldstr3216,_FUNC_VALIDLABEL_STRING_LABEL2); qbs_free(_FUNC_VALIDLABEL_STRING_LABEL2); } qbs_free(_FUNC_VALIDLABEL_STRING_CLABEL); diff --git a/internal/source/free52.txt b/internal/source/free52.txt index 3deeedf11..a6ce3e1fe 100644 --- a/internal/source/free52.txt +++ b/internal/source/free52.txt @@ -1,9 +1,9 @@ -if(oldstr3240){ -if(oldstr3240->fixed)qbs_set(oldstr3240,_SUB_XFILEPRINT_STRING_A); +if(oldstr3242){ +if(oldstr3242->fixed)qbs_set(oldstr3242,_SUB_XFILEPRINT_STRING_A); qbs_free(_SUB_XFILEPRINT_STRING_A); } -if(oldstr3241){ -if(oldstr3241->fixed)qbs_set(oldstr3241,_SUB_XFILEPRINT_STRING_CA); +if(oldstr3243){ +if(oldstr3243->fixed)qbs_set(oldstr3243,_SUB_XFILEPRINT_STRING_CA); qbs_free(_SUB_XFILEPRINT_STRING_CA); } qbs_free(_SUB_XFILEPRINT_STRING_U); diff --git a/internal/source/free53.txt b/internal/source/free53.txt index d67b8eb2b..529b6baab 100644 --- a/internal/source/free53.txt +++ b/internal/source/free53.txt @@ -1,5 +1,5 @@ -if(oldstr3297){ -if(oldstr3297->fixed)qbs_set(oldstr3297,_SUB_XFILEWRITE_STRING_CA); +if(oldstr3299){ +if(oldstr3299->fixed)qbs_set(oldstr3299,_SUB_XFILEWRITE_STRING_CA); qbs_free(_SUB_XFILEWRITE_STRING_CA); } qbs_free(_SUB_XFILEWRITE_STRING_L); diff --git a/internal/source/free54.txt b/internal/source/free54.txt index c26bafa8b..2e28ab1b6 100644 --- a/internal/source/free54.txt +++ b/internal/source/free54.txt @@ -1,5 +1,5 @@ -if(oldstr3315){ -if(oldstr3315->fixed)qbs_set(oldstr3315,_SUB_XGOSUB_STRING_CA); +if(oldstr3317){ +if(oldstr3317->fixed)qbs_set(oldstr3317,_SUB_XGOSUB_STRING_CA); qbs_free(_SUB_XGOSUB_STRING_CA); } qbs_free(_SUB_XGOSUB_STRING_A2); diff --git a/internal/source/free55.txt b/internal/source/free55.txt index d886c61df..6270e9352 100644 --- a/internal/source/free55.txt +++ b/internal/source/free55.txt @@ -1,9 +1,9 @@ -if(oldstr3327){ -if(oldstr3327->fixed)qbs_set(oldstr3327,_SUB_XONGOTOGOSUB_STRING_A); +if(oldstr3329){ +if(oldstr3329->fixed)qbs_set(oldstr3329,_SUB_XONGOTOGOSUB_STRING_A); qbs_free(_SUB_XONGOTOGOSUB_STRING_A); } -if(oldstr3328){ -if(oldstr3328->fixed)qbs_set(oldstr3328,_SUB_XONGOTOGOSUB_STRING_CA); +if(oldstr3330){ +if(oldstr3330->fixed)qbs_set(oldstr3330,_SUB_XONGOTOGOSUB_STRING_CA); qbs_free(_SUB_XONGOTOGOSUB_STRING_CA); } qbs_free(_SUB_XONGOTOGOSUB_STRING_L); diff --git a/internal/source/free56.txt b/internal/source/free56.txt index 31f583b7f..ad460a527 100644 --- a/internal/source/free56.txt +++ b/internal/source/free56.txt @@ -1,9 +1,9 @@ -if(oldstr3355){ -if(oldstr3355->fixed)qbs_set(oldstr3355,_SUB_XPRINT_STRING_A); +if(oldstr3357){ +if(oldstr3357->fixed)qbs_set(oldstr3357,_SUB_XPRINT_STRING_A); qbs_free(_SUB_XPRINT_STRING_A); } -if(oldstr3356){ -if(oldstr3356->fixed)qbs_set(oldstr3356,_SUB_XPRINT_STRING_CA); +if(oldstr3358){ +if(oldstr3358->fixed)qbs_set(oldstr3358,_SUB_XPRINT_STRING_CA); qbs_free(_SUB_XPRINT_STRING_CA); } qbs_free(_SUB_XPRINT_STRING_U); diff --git a/internal/source/free57.txt b/internal/source/free57.txt index 0c0729e3d..c0a5be5db 100644 --- a/internal/source/free57.txt +++ b/internal/source/free57.txt @@ -1,5 +1,5 @@ -if(oldstr3419){ -if(oldstr3419->fixed)qbs_set(oldstr3419,_SUB_XREAD_STRING_CA); +if(oldstr3421){ +if(oldstr3421->fixed)qbs_set(oldstr3421,_SUB_XREAD_STRING_CA); qbs_free(_SUB_XREAD_STRING_CA); } qbs_free(_SUB_XREAD_STRING_L); diff --git a/internal/source/free58.txt b/internal/source/free58.txt index a8520fe7c..93cf891e9 100644 --- a/internal/source/free58.txt +++ b/internal/source/free58.txt @@ -1,5 +1,5 @@ -if(oldstr3430){ -if(oldstr3430->fixed)qbs_set(oldstr3430,_SUB_XWRITE_STRING_CA); +if(oldstr3432){ +if(oldstr3432->fixed)qbs_set(oldstr3432,_SUB_XWRITE_STRING_CA); qbs_free(_SUB_XWRITE_STRING_CA); } qbs_free(_SUB_XWRITE_STRING_L); diff --git a/internal/source/free59.txt b/internal/source/free59.txt index ab039c8d5..f9bd0804d 100644 --- a/internal/source/free59.txt +++ b/internal/source/free59.txt @@ -1,5 +1,5 @@ -if(oldstr3441){ -if(oldstr3441->fixed)qbs_set(oldstr3441,_FUNC_EVALUATECONST_STRING_A2); +if(oldstr3443){ +if(oldstr3443->fixed)qbs_set(oldstr3443,_FUNC_EVALUATECONST_STRING_A2); qbs_free(_FUNC_EVALUATECONST_STRING_A2); } qbs_free(_FUNC_EVALUATECONST_STRING_A); diff --git a/internal/source/free6.txt b/internal/source/free6.txt index 8ca805cb2..b035cefc4 100644 --- a/internal/source/free6.txt +++ b/internal/source/free6.txt @@ -1,8 +1,8 @@ -if(oldstr2206){ -if(oldstr2206->fixed)qbs_set(oldstr2206,_FUNC_PARSESTRINGSETTING_STRING_TOKEN); +if(oldstr2208){ +if(oldstr2208->fixed)qbs_set(oldstr2208,_FUNC_PARSESTRINGSETTING_STRING_TOKEN); qbs_free(_FUNC_PARSESTRINGSETTING_STRING_TOKEN); } -if(oldstr2207){ -if(oldstr2207->fixed)qbs_set(oldstr2207,_FUNC_PARSESTRINGSETTING_STRING_SETTING); +if(oldstr2209){ +if(oldstr2209->fixed)qbs_set(oldstr2209,_FUNC_PARSESTRINGSETTING_STRING_SETTING); qbs_free(_FUNC_PARSESTRINGSETTING_STRING_SETTING); } diff --git a/internal/source/free63.txt b/internal/source/free63.txt index 38e27e916..490568457 100644 --- a/internal/source/free63.txt +++ b/internal/source/free63.txt @@ -1,5 +1,5 @@ -if(oldstr3469){ -if(oldstr3469->fixed)qbs_set(oldstr3469,_FUNC_SYMBOL2FULLTYPENAME_STRING_S2); +if(oldstr3471){ +if(oldstr3471->fixed)qbs_set(oldstr3471,_FUNC_SYMBOL2FULLTYPENAME_STRING_S2); qbs_free(_FUNC_SYMBOL2FULLTYPENAME_STRING_S2); } qbs_free(_FUNC_SYMBOL2FULLTYPENAME_STRING_S); diff --git a/internal/source/free64.txt b/internal/source/free64.txt index ff1323ee4..d68416eb7 100644 --- a/internal/source/free64.txt +++ b/internal/source/free64.txt @@ -1,4 +1,4 @@ -if(oldstr3478){ -if(oldstr3478->fixed)qbs_set(oldstr3478,_SUB_LINEINPUT3LOAD_STRING_F); +if(oldstr3480){ +if(oldstr3480->fixed)qbs_set(oldstr3480,_SUB_LINEINPUT3LOAD_STRING_F); qbs_free(_SUB_LINEINPUT3LOAD_STRING_F); } diff --git a/internal/source/free66.txt b/internal/source/free66.txt index b77f6ddaf..d245de8ea 100644 --- a/internal/source/free66.txt +++ b/internal/source/free66.txt @@ -1,5 +1,5 @@ -if(oldstr3482){ -if(oldstr3482->fixed)qbs_set(oldstr3482,_FUNC_ELEUCASE_STRING_A); +if(oldstr3484){ +if(oldstr3484->fixed)qbs_set(oldstr3484,_FUNC_ELEUCASE_STRING_A); qbs_free(_FUNC_ELEUCASE_STRING_A); } qbs_free(_FUNC_ELEUCASE_STRING_A2); diff --git a/internal/source/free68.txt b/internal/source/free68.txt index 7d54826b7..9f8875644 100644 --- a/internal/source/free68.txt +++ b/internal/source/free68.txt @@ -1,5 +1,5 @@ -if(oldstr3489){ -if(oldstr3489->fixed)qbs_set(oldstr3489,_FUNC_EVALUATE_EXPRESSION_STRING_E); +if(oldstr3491){ +if(oldstr3491->fixed)qbs_set(oldstr3491,_FUNC_EVALUATE_EXPRESSION_STRING_E); qbs_free(_FUNC_EVALUATE_EXPRESSION_STRING_E); } qbs_free(_FUNC_EVALUATE_EXPRESSION_STRING_T); diff --git a/internal/source/free69.txt b/internal/source/free69.txt index e525fc1a8..a6eb33498 100644 --- a/internal/source/free69.txt +++ b/internal/source/free69.txt @@ -1,5 +1,5 @@ -if(oldstr3495){ -if(oldstr3495->fixed)qbs_set(oldstr3495,_SUB_PARSEEXPRESSION_STRING_EXP); +if(oldstr3497){ +if(oldstr3497->fixed)qbs_set(oldstr3497,_SUB_PARSEEXPRESSION_STRING_EXP); qbs_free(_SUB_PARSEEXPRESSION_STRING_EXP); } if (_SUB_PARSEEXPRESSION_ARRAY_STRING_NUM[2]&1){ diff --git a/internal/source/free72.txt b/internal/source/free72.txt index d87c6abc2..94973685e 100644 --- a/internal/source/free72.txt +++ b/internal/source/free72.txt @@ -1,5 +1,5 @@ -if(oldstr3526){ -if(oldstr3526->fixed)qbs_set(oldstr3526,_FUNC_DWD_STRING_EXP); +if(oldstr3528){ +if(oldstr3528->fixed)qbs_set(oldstr3528,_FUNC_DWD_STRING_EXP); qbs_free(_FUNC_DWD_STRING_EXP); } qbs_free(_FUNC_DWD_STRING_T); diff --git a/internal/source/free73.txt b/internal/source/free73.txt index 2578099f5..2474f8de6 100644 --- a/internal/source/free73.txt +++ b/internal/source/free73.txt @@ -1,5 +1,5 @@ -if(oldstr3532){ -if(oldstr3532->fixed)qbs_set(oldstr3532,_SUB_PREPARSE_STRING_E); +if(oldstr3534){ +if(oldstr3534->fixed)qbs_set(oldstr3534,_SUB_PREPARSE_STRING_E); qbs_free(_SUB_PREPARSE_STRING_E); } qbs_free(_SUB_PREPARSE_STRING_T); diff --git a/internal/source/free74.txt b/internal/source/free74.txt index 143d87e17..6ac36f3f1 100644 --- a/internal/source/free74.txt +++ b/internal/source/free74.txt @@ -1,5 +1,5 @@ -if(oldstr3587){ -if(oldstr3587->fixed)qbs_set(oldstr3587,_SUB_VERIFYSTRING_STRING_T); +if(oldstr3589){ +if(oldstr3589->fixed)qbs_set(oldstr3589,_SUB_VERIFYSTRING_STRING_T); qbs_free(_SUB_VERIFYSTRING_STRING_T); } qbs_free(_SUB_VERIFYSTRING_STRING_COMP); diff --git a/internal/source/free75.txt b/internal/source/free75.txt index 264b79b18..d1f3b4fc2 100644 --- a/internal/source/free75.txt +++ b/internal/source/free75.txt @@ -1,5 +1,5 @@ -if(oldstr3596){ -if(oldstr3596->fixed)qbs_set(oldstr3596,_FUNC_N2S_STRING_EXP); +if(oldstr3598){ +if(oldstr3598->fixed)qbs_set(oldstr3598,_FUNC_N2S_STRING_EXP); qbs_free(_FUNC_N2S_STRING_EXP); } qbs_free(_FUNC_N2S_STRING_T); diff --git a/internal/source/free76.txt b/internal/source/free76.txt index 19a3295fb..4c81b8ebc 100644 --- a/internal/source/free76.txt +++ b/internal/source/free76.txt @@ -1,4 +1,4 @@ -if(oldstr3604){ -if(oldstr3604->fixed)qbs_set(oldstr3604,_FUNC_QUOTEDFILENAME_STRING_F); +if(oldstr3606){ +if(oldstr3606->fixed)qbs_set(oldstr3606,_FUNC_QUOTEDFILENAME_STRING_F); qbs_free(_FUNC_QUOTEDFILENAME_STRING_F); } diff --git a/internal/source/free77.txt b/internal/source/free77.txt index faa64df80..911681572 100644 --- a/internal/source/free77.txt +++ b/internal/source/free77.txt @@ -1,4 +1,4 @@ -if(oldstr3605){ -if(oldstr3605->fixed)qbs_set(oldstr3605,_FUNC_HASHVALUE_STRING_A); +if(oldstr3607){ +if(oldstr3607->fixed)qbs_set(oldstr3607,_FUNC_HASHVALUE_STRING_A); qbs_free(_FUNC_HASHVALUE_STRING_A); } diff --git a/internal/source/free78.txt b/internal/source/free78.txt index 98bf5c442..8b1b4bc5d 100644 --- a/internal/source/free78.txt +++ b/internal/source/free78.txt @@ -1,4 +1,4 @@ -if(oldstr3609){ -if(oldstr3609->fixed)qbs_set(oldstr3609,_SUB_HASHADD_STRING_A); +if(oldstr3611){ +if(oldstr3611->fixed)qbs_set(oldstr3611,_SUB_HASHADD_STRING_A); qbs_free(_SUB_HASHADD_STRING_A); } diff --git a/internal/source/free79.txt b/internal/source/free79.txt index b91a6c526..9b039215a 100644 --- a/internal/source/free79.txt +++ b/internal/source/free79.txt @@ -1,5 +1,5 @@ -if(oldstr3610){ -if(oldstr3610->fixed)qbs_set(oldstr3610,_FUNC_HASHFIND_STRING_A); +if(oldstr3612){ +if(oldstr3612->fixed)qbs_set(oldstr3612,_FUNC_HASHFIND_STRING_A); qbs_free(_FUNC_HASHFIND_STRING_A); } qbs_free(_FUNC_HASHFIND_STRING_UA); diff --git a/internal/source/free8.txt b/internal/source/free8.txt index e143553f2..68a92952c 100644 --- a/internal/source/free8.txt +++ b/internal/source/free8.txt @@ -1,9 +1,9 @@ -if(oldstr2208){ -if(oldstr2208->fixed)qbs_set(oldstr2208,_FUNC_ALLOCARRAY_STRING_N2); +if(oldstr2210){ +if(oldstr2210->fixed)qbs_set(oldstr2210,_FUNC_ALLOCARRAY_STRING_N2); qbs_free(_FUNC_ALLOCARRAY_STRING_N2); } -if(oldstr2209){ -if(oldstr2209->fixed)qbs_set(oldstr2209,_FUNC_ALLOCARRAY_STRING_ELEMENTS); +if(oldstr2211){ +if(oldstr2211->fixed)qbs_set(oldstr2211,_FUNC_ALLOCARRAY_STRING_ELEMENTS); qbs_free(_FUNC_ALLOCARRAY_STRING_ELEMENTS); } qbs_free(_FUNC_ALLOCARRAY_STRING_F12); diff --git a/internal/source/free80.txt b/internal/source/free80.txt index 6794b4c5e..062dd99d0 100644 --- a/internal/source/free80.txt +++ b/internal/source/free80.txt @@ -1,5 +1,5 @@ -if(oldstr3612){ -if(oldstr3612->fixed)qbs_set(oldstr3612,_FUNC_HASHFINDREV_STRING_A); +if(oldstr3614){ +if(oldstr3614->fixed)qbs_set(oldstr3614,_FUNC_HASHFINDREV_STRING_A); qbs_free(_FUNC_HASHFINDREV_STRING_A); } qbs_free(_FUNC_HASHFINDREV_STRING_UA); diff --git a/internal/source/free85.txt b/internal/source/free85.txt index 00e67c628..7a9a18cec 100644 --- a/internal/source/free85.txt +++ b/internal/source/free85.txt @@ -1,4 +1,4 @@ -if(oldstr3623){ -if(oldstr3623->fixed)qbs_set(oldstr3623,_FUNC_REMOVECAST_STRING_A); +if(oldstr3625){ +if(oldstr3625->fixed)qbs_set(oldstr3625,_FUNC_REMOVECAST_STRING_A); qbs_free(_FUNC_REMOVECAST_STRING_A); } diff --git a/internal/source/free86.txt b/internal/source/free86.txt index df60f4bf8..ab26ff7a2 100644 --- a/internal/source/free86.txt +++ b/internal/source/free86.txt @@ -1,5 +1,5 @@ -if(oldstr3625){ -if(oldstr3625->fixed)qbs_set(oldstr3625,_FUNC_CONVERTTABS_STRING_A2); +if(oldstr3627){ +if(oldstr3627->fixed)qbs_set(oldstr3627,_FUNC_CONVERTTABS_STRING_A2); qbs_free(_FUNC_CONVERTTABS_STRING_A2); } qbs_free(_FUNC_CONVERTTABS_STRING_A); diff --git a/internal/source/free88.txt b/internal/source/free88.txt index 37e09da8d..b9845eb10 100644 --- a/internal/source/free88.txt +++ b/internal/source/free88.txt @@ -1,4 +1,4 @@ -if(oldstr3634){ -if(oldstr3634->fixed)qbs_set(oldstr3634,_FUNC_VALIDNAME_STRING_A); +if(oldstr3636){ +if(oldstr3636->fixed)qbs_set(oldstr3636,_FUNC_VALIDNAME_STRING_A); qbs_free(_FUNC_VALIDNAME_STRING_A); } diff --git a/internal/source/free9.txt b/internal/source/free9.txt index 5a38352f3..5dc9af313 100644 --- a/internal/source/free9.txt +++ b/internal/source/free9.txt @@ -1,5 +1,5 @@ -if(oldstr2294){ -if(oldstr2294->fixed)qbs_set(oldstr2294,_FUNC_ARRAYREFERENCE_STRING_INDEXES); +if(oldstr2296){ +if(oldstr2296->fixed)qbs_set(oldstr2296,_FUNC_ARRAYREFERENCE_STRING_INDEXES); qbs_free(_FUNC_ARRAYREFERENCE_STRING_INDEXES); } qbs_free(_FUNC_ARRAYREFERENCE_STRING_IDNUMBER); diff --git a/internal/source/free90.txt b/internal/source/free90.txt index 909b1bb04..bf4a86aa0 100644 --- a/internal/source/free90.txt +++ b/internal/source/free90.txt @@ -1,4 +1,4 @@ -if(oldstr3641){ -if(oldstr3641->fixed)qbs_set(oldstr3641,_SUB_GIVE_ERROR_STRING_A); +if(oldstr3643){ +if(oldstr3643->fixed)qbs_set(oldstr3643,_SUB_GIVE_ERROR_STRING_A); qbs_free(_SUB_GIVE_ERROR_STRING_A); } diff --git a/internal/source/free91.txt b/internal/source/free91.txt index 38b8c8b07..e18a9f2e7 100644 --- a/internal/source/free91.txt +++ b/internal/source/free91.txt @@ -1,12 +1,12 @@ -if(oldstr3642){ -if(oldstr3642->fixed)qbs_set(oldstr3642,_SUB_WRITECONFIGSETTING_STRING_SECTION); +if(oldstr3644){ +if(oldstr3644->fixed)qbs_set(oldstr3644,_SUB_WRITECONFIGSETTING_STRING_SECTION); qbs_free(_SUB_WRITECONFIGSETTING_STRING_SECTION); } -if(oldstr3643){ -if(oldstr3643->fixed)qbs_set(oldstr3643,_SUB_WRITECONFIGSETTING_STRING_ITEM); +if(oldstr3645){ +if(oldstr3645->fixed)qbs_set(oldstr3645,_SUB_WRITECONFIGSETTING_STRING_ITEM); qbs_free(_SUB_WRITECONFIGSETTING_STRING_ITEM); } -if(oldstr3644){ -if(oldstr3644->fixed)qbs_set(oldstr3644,_SUB_WRITECONFIGSETTING_STRING_VALUE); +if(oldstr3646){ +if(oldstr3646->fixed)qbs_set(oldstr3646,_SUB_WRITECONFIGSETTING_STRING_VALUE); qbs_free(_SUB_WRITECONFIGSETTING_STRING_VALUE); } diff --git a/internal/source/free92.txt b/internal/source/free92.txt index 57fcaa3c9..61618282f 100644 --- a/internal/source/free92.txt +++ b/internal/source/free92.txt @@ -1,12 +1,12 @@ -if(oldstr3645){ -if(oldstr3645->fixed)qbs_set(oldstr3645,_FUNC_READCONFIGSETTING_STRING_SECTION); +if(oldstr3647){ +if(oldstr3647->fixed)qbs_set(oldstr3647,_FUNC_READCONFIGSETTING_STRING_SECTION); qbs_free(_FUNC_READCONFIGSETTING_STRING_SECTION); } -if(oldstr3646){ -if(oldstr3646->fixed)qbs_set(oldstr3646,_FUNC_READCONFIGSETTING_STRING_ITEM); +if(oldstr3648){ +if(oldstr3648->fixed)qbs_set(oldstr3648,_FUNC_READCONFIGSETTING_STRING_ITEM); qbs_free(_FUNC_READCONFIGSETTING_STRING_ITEM); } -if(oldstr3647){ -if(oldstr3647->fixed)qbs_set(oldstr3647,_FUNC_READCONFIGSETTING_STRING_VALUE); +if(oldstr3649){ +if(oldstr3649->fixed)qbs_set(oldstr3649,_FUNC_READCONFIGSETTING_STRING_VALUE); qbs_free(_FUNC_READCONFIGSETTING_STRING_VALUE); } diff --git a/internal/source/free93.txt b/internal/source/free93.txt index fbc21f6d7..f6069e85e 100644 --- a/internal/source/free93.txt +++ b/internal/source/free93.txt @@ -1,4 +1,4 @@ -if(oldstr3649){ -if(oldstr3649->fixed)qbs_set(oldstr3649,_FUNC_VRGBS_STRING_TEXT); +if(oldstr3651){ +if(oldstr3651->fixed)qbs_set(oldstr3651,_FUNC_VRGBS_STRING_TEXT); qbs_free(_FUNC_VRGBS_STRING_TEXT); } diff --git a/internal/source/free95.txt b/internal/source/free95.txt index 51e86db72..788c3f66d 100644 --- a/internal/source/free95.txt +++ b/internal/source/free95.txt @@ -1,9 +1,9 @@ -if(oldstr3650){ -if(oldstr3650->fixed)qbs_set(oldstr3650,_FUNC_EVALPREIF_STRING_TEXT); +if(oldstr3652){ +if(oldstr3652->fixed)qbs_set(oldstr3652,_FUNC_EVALPREIF_STRING_TEXT); qbs_free(_FUNC_EVALPREIF_STRING_TEXT); } -if(oldstr3651){ -if(oldstr3651->fixed)qbs_set(oldstr3651,_FUNC_EVALPREIF_STRING_ERR); +if(oldstr3653){ +if(oldstr3653->fixed)qbs_set(oldstr3653,_FUNC_EVALPREIF_STRING_ERR); qbs_free(_FUNC_EVALPREIF_STRING_ERR); } qbs_free(_FUNC_EVALPREIF_STRING_TEMP); diff --git a/internal/source/free96.txt b/internal/source/free96.txt index f8f7b7e82..13bc6b1be 100644 --- a/internal/source/free96.txt +++ b/internal/source/free96.txt @@ -1,5 +1,5 @@ -if(oldstr3687){ -if(oldstr3687->fixed)qbs_set(oldstr3687,_FUNC_VERIFYNUMBER_STRING_TEXT); +if(oldstr3689){ +if(oldstr3689->fixed)qbs_set(oldstr3689,_FUNC_VERIFYNUMBER_STRING_TEXT); qbs_free(_FUNC_VERIFYNUMBER_STRING_TEXT); } qbs_free(_FUNC_VERIFYNUMBER_STRING_T); diff --git a/internal/source/free97.txt b/internal/source/free97.txt index eb314c0f7..634c80a26 100644 --- a/internal/source/free97.txt +++ b/internal/source/free97.txt @@ -1,4 +1,4 @@ -if(oldstr3688){ -if(oldstr3688->fixed)qbs_set(oldstr3688,_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N); +if(oldstr3690){ +if(oldstr3690->fixed)qbs_set(oldstr3690,_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N); qbs_free(_SUB_INITIALISE_UDT_VARSTRINGS_STRING_N); } diff --git a/internal/source/free98.txt b/internal/source/free98.txt index b07bff366..de829f666 100644 --- a/internal/source/free98.txt +++ b/internal/source/free98.txt @@ -1,4 +1,4 @@ -if(oldstr3692){ -if(oldstr3692->fixed)qbs_set(oldstr3692,_SUB_FREE_UDT_VARSTRINGS_STRING_N); +if(oldstr3694){ +if(oldstr3694->fixed)qbs_set(oldstr3694,_SUB_FREE_UDT_VARSTRINGS_STRING_N); qbs_free(_SUB_FREE_UDT_VARSTRINGS_STRING_N); } diff --git a/internal/source/free99.txt b/internal/source/free99.txt index 3d6da6d26..6c25712ca 100644 --- a/internal/source/free99.txt +++ b/internal/source/free99.txt @@ -1,4 +1,4 @@ -if(oldstr3696){ -if(oldstr3696->fixed)qbs_set(oldstr3696,_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N); +if(oldstr3698){ +if(oldstr3698->fixed)qbs_set(oldstr3698,_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N); qbs_free(_SUB_CLEAR_UDT_WITH_VARSTRINGS_STRING_N); } diff --git a/internal/source/maindata.txt b/internal/source/maindata.txt index 65297cf40..ed8446682 100644 --- a/internal/source/maindata.txt +++ b/internal/source/maindata.txt @@ -4777,18 +4777,24 @@ byte_element_struct *byte_element_528=NULL; if (!byte_element_528){ if ((mem_static_pointer+=12) 0 AND _FILEEXISTS(getfilepath(incname(inclevel)) + MidiSoundFont$) THEN MidiSoundFont$ = getfilepath(incname(inclevel)) + MidiSoundFont$ + ELSEIF _FILEEXISTS(FixDirectoryName(path.source$) + MidiSoundFont$) Then + MidiSoundFont$ = FixDirectoryName(path.source$) + MidiSoundFont$ ELSEIF _FILEEXISTS(FixDirectoryName(idepath$) + MidiSoundFont$) THEN MidiSoundFont$ = FixDirectoryName(idepath$) + MidiSoundFont$ END IF @@ -4481,11 +4483,14 @@ DO sfheader = 1 GOTO GotHeader END IF + ' a740g: Fallback to source path IF inclevel > 0 THEN libpath$ = getfilepath(incname(inclevel)) + og_libpath$ + ELSEIF NoIDEMode THEN + libpath$ = FixDirectoryName(path.source$) + og_libpath$ ELSE - libpath$ = FixDirectoryName(idepath$) + og_libpath$ + IF LEN(ideprogname) THEN libpath$ = idepath$ + pathsep$ + og_libpath$ END IF libpath_inline$ = GetEscapedPath(libpath$) IF _FILEEXISTS(libpath$ + x$ + ".h") THEN @@ -4555,8 +4560,10 @@ DO ' a740g: Fallback to source path IF inclevel > 0 THEN libpath$ = getfilepath(incname(inclevel)) + og_libpath$ + ELSEIF NoIDEMode THEN + libpath$ = FixDirectoryName(path.source$) + og_libpath$ ELSE - libpath$ = FixDirectoryName(idepath$) + og_libpath$ + IF LEN(ideprogname) THEN libpath$ = idepath$ + pathsep$ + og_libpath$ END IF libpath_inline$ = GetEscapedPath(libpath$) IF _FILEEXISTS(libpath$ + x$ + ".h") THEN diff --git a/tests/compile_tests.sh b/tests/compile_tests.sh index ed05cf59e..648729265 100755 --- a/tests/compile_tests.sh +++ b/tests/compile_tests.sh @@ -78,14 +78,28 @@ do checkLicense=y fi - pushd . >/dev/null - cd "./tests/compile_tests/$category" + # If the "compile-from-base" file exists, then this test should be compiled + # from the ./qb64pe directory instead of the test directory + compileFromBase= + if test -f "./tests/compile_tests/$category/$testName.compile-from-base"; then + compileFromBase=y + fi - # -m and -q make sure that we get predictable results - "../../../$QB64" "-f:OptimizeCppProgram=true" $compilerFlags -q -m -x "$testName.bas" -o "../../../$EXE" 1>"../../../$compileResultOutput" - ERR=$? + if [ "$compileFromBase" == "y" ]; then + # -m and -q make sure that we get predictable results + "$QB64" "-f:OptimizeCppProgram=true" $compilerFlags -q -m -x "./tests/compile_tests/$category/$testName.bas" -o "$EXE" 1>"$compileResultOutput" + ERR=$? + else + pushd . >/dev/null + cd "./tests/compile_tests/$category" + + # -m and -q make sure that we get predictable results + "../../../$QB64" "-f:OptimizeCppProgram=true" $compilerFlags -q -m -x "$testName.bas" -o "../../../$EXE" 1>"../../../$compileResultOutput" + ERR=$? + + popd >/dev/null + fi - popd >/dev/null cp_if_exists ./internal/temp/compilelog.txt "$RESULTS_DIR/$category-$testName-compilelog.txt" if [ "$testType" == "success" ]; then @@ -141,4 +155,4 @@ do diffResult=$(diff -y "./tests/compile_tests/$category/$testName.err" "$compileResultOutput") assert_success_named "Error result" "Error reporting is wrong:" echo "$diffResult" fi -done < <(find ./tests/compile_tests$CATEGORY -name "*.bas" -print) +done < <(find "./tests/compile_tests$CATEGORY" -name "*.bas" -print) diff --git a/tests/compile_tests/declare_library_header/directory/fastmath.h b/tests/compile_tests/declare_library_header/directory/fastmath.h new file mode 100644 index 000000000..b1a14d765 --- /dev/null +++ b/tests/compile_tests/declare_library_header/directory/fastmath.h @@ -0,0 +1,6 @@ + +// Fake function for testing +int Fast_Sqrt(int value) +{ + return value * 2; +} diff --git a/tests/compile_tests/declare_library_header/test-compile-base-directory.bas b/tests/compile_tests/declare_library_header/test-compile-base-directory.bas new file mode 100644 index 000000000..44ba6bcbb --- /dev/null +++ b/tests/compile_tests/declare_library_header/test-compile-base-directory.bas @@ -0,0 +1,9 @@ +$CONSOLE:ONLY + +DECLARE LIBRARY "directory/fastmath" + FUNCTION Fast_Sqrt&(BYVAL val AS LONG) +END DECLARE + +value = Fast_Sqrt&(2000) +print value; +SYSTEM diff --git a/tests/compile_tests/declare_library_header/test-compile-base-directory.compile-from-base b/tests/compile_tests/declare_library_header/test-compile-base-directory.compile-from-base new file mode 100644 index 000000000..e69de29bb diff --git a/tests/compile_tests/declare_library_header/test-compile-base-directory.output b/tests/compile_tests/declare_library_header/test-compile-base-directory.output new file mode 100644 index 000000000..2239093a8 --- /dev/null +++ b/tests/compile_tests/declare_library_header/test-compile-base-directory.output @@ -0,0 +1 @@ + 4000 diff --git a/tests/compile_tests/declare_library_header/test-compile-base.bas b/tests/compile_tests/declare_library_header/test-compile-base.bas new file mode 100644 index 000000000..4000c42e8 --- /dev/null +++ b/tests/compile_tests/declare_library_header/test-compile-base.bas @@ -0,0 +1,11 @@ +$CONSOLE:ONLY + +' This location is relative to the source file, not QB64-PE or the location +' QB64-PE was run from. +DECLARE LIBRARY "fastmath" + FUNCTION Fast_Sqrt&(BYVAL val AS LONG) +END DECLARE + +value = Fast_Sqrt&(2000) +print value; +SYSTEM diff --git a/tests/compile_tests/declare_library_header/test-compile-base.compile-from-base b/tests/compile_tests/declare_library_header/test-compile-base.compile-from-base new file mode 100644 index 000000000..e69de29bb diff --git a/tests/compile_tests/declare_library_header/test-compile-base.output b/tests/compile_tests/declare_library_header/test-compile-base.output new file mode 100644 index 000000000..2239093a8 --- /dev/null +++ b/tests/compile_tests/declare_library_header/test-compile-base.output @@ -0,0 +1 @@ + 4000 diff --git a/tests/compile_tests/declare_library_header/test-include.bas b/tests/compile_tests/declare_library_header/test-include.bas new file mode 100644 index 000000000..1691f79b7 --- /dev/null +++ b/tests/compile_tests/declare_library_header/test-include.bas @@ -0,0 +1,7 @@ +$CONSOLE:ONLY + +'$include:'../extra/declare-header.bi' + +value = Fast_Sqrt&(2000) +print value; +SYSTEM diff --git a/tests/compile_tests/declare_library_header/test-include.output b/tests/compile_tests/declare_library_header/test-include.output new file mode 100644 index 000000000..2239093a8 --- /dev/null +++ b/tests/compile_tests/declare_library_header/test-include.output @@ -0,0 +1 @@ + 4000 diff --git a/tests/compile_tests/extra/declare-header.bi b/tests/compile_tests/extra/declare-header.bi new file mode 100644 index 000000000..e71772a29 --- /dev/null +++ b/tests/compile_tests/extra/declare-header.bi @@ -0,0 +1,5 @@ + +DECLARE LIBRARY "./header-dir/fastmath-extra" + FUNCTION Fast_Sqrt&(BYVAL val AS LONG) +END DECLARE + diff --git a/tests/compile_tests/extra/header-dir/fastmath-extra.h b/tests/compile_tests/extra/header-dir/fastmath-extra.h new file mode 100644 index 000000000..b1a14d765 --- /dev/null +++ b/tests/compile_tests/extra/header-dir/fastmath-extra.h @@ -0,0 +1,6 @@ + +// Fake function for testing +int Fast_Sqrt(int value) +{ + return value * 2; +} diff --git a/tests/compile_tests/keyboard/devices_windows.bas b/tests/compile_tests/keyboard/devices_windows.bas new file mode 100644 index 000000000..5fbb68c1c --- /dev/null +++ b/tests/compile_tests/keyboard/devices_windows.bas @@ -0,0 +1,187 @@ +$Console +_Dest _Console + +ChDir _StartDir$ + +$IF LNX THEN + +'$include:'keyconsts.bi' +'$include:'sendinput.bi' + +Dim Shared testCount As Long + +deviceCount& = _Devices + +AssertPress EscScanCode +AssertPress EnterScancode +AssertPress TabScancode +AssertPress OneScancode +AssertPress AScanCode +AssertPress WScanCode +AssertPress SpaceScanCode + +AssertPress PgUpScanCode +AssertPress PgDownScanCode +AssertPress HomeScanCode +AssertPress InsertScanCode +AssertPress DeleteScanCode +AssertPress EndScanCode + +AssertPress LCtrlScancode +AssertPress LShiftScancode +AssertPress LAltScancode + +AssertPress RCtrlScancode +AssertPress RShiftScancode +AssertPress RAltScancode + +AssertPress NumLockScancode +AssertPress ScrollLockScancode +AssertPress KeypadUpScancode + +AssertPress F1Scancode +AssertPress F2Scancode +AssertPress F3Scancode +AssertPress F4Scancode +AssertPress F5Scancode +AssertPress F6Scancode +AssertPress F7Scancode +AssertPress F8Scancode +AssertPress F9Scancode +AssertPress F10Scancode +AssertPress F11Scancode +AssertPress F12Scancode + +' Test multiple keys at the same time +' Modifiers in paticular are important to test +emulateScancode LShiftScancode, Down +emulateScancode LCtrlScancode, Down +emulateScancode LAltScancode, Down +emulateScancode AScanCode, Down + +AssertDown LShiftScancode +AssertDown LCtrlScancode +AssertDown LAltScancode +AssertDown AScanCode + +' These keys are released in same order they were pressed +emulateScancode LShiftScancode, Up +AssertUp LShiftScancode +emulateScancode LCtrlScancode, Up +AssertUp LCtrlScancode +emulateScancode LAltScancode, Up +AssertUp LAltScancode +emulateScancode AScanCode, Up +AssertUp AScanCode + +' Same test, but release keys in opposite order they were pressed +emulateScancode LShiftScancode, Down +emulateScancode LCtrlScancode, Down +emulateScancode LAltScancode, Down +emulateScancode AScanCode, Down + +AssertDown LShiftScancode +AssertDown LCtrlScancode +AssertDown LAltScancode +AssertDown AScanCode + +emulateScancode AScanCode, Up +AssertUp AScanCode +emulateScancode LAltScancode, Up +AssertUp LAltScancode +emulateScancode LCtrlScancode, Up +AssertUp LCtrlScancode +emulateScancode LShiftScancode, Up +AssertUp LShiftScancode + +' Test holding and releasing both left/right modifiers + +' Shift +emulateScancode LShiftScancode, Down +AssertDown LShiftScancode +emulateScancode RShiftScancode, Down +AssertDown RShiftScancode + +emulateScancode LShiftScancode, Up +AssertUp LShiftScancode +emulateScancode RShiftScancode, Up +AssertUp RShiftScancode + +' Control +emulateScancode LCtrlScancode, Down +AssertDown LCtrlScancode +emulateScancode RCtrlScancode, Down +AssertDown RCtrlScancode + +emulateScancode LCtrlScancode, Up +AssertUp LCtrlScancode +emulateScancode RCtrlScancode, Up +AssertUp RCtrlScancode + +' Alt +emulateScancode LAltScancode, Down +AssertDown LAltScancode +emulateScancode RAltScancode, Down +AssertDown RAltScancode + +emulateScancode LAltScancode, Up +AssertUp LAltScancode +emulateScancode RAltScancode, Up +AssertUp RAltScancode + +System + +'$include:'sendinput.bm' + +' Convert scan code into the device button number +Function GetDeviceCode&(scan As Long) + Dim deviceCode As Long + + ' "Extended" keys will have the 9th bit set, so add 256 + deviceCode = (scan And &H7FFF) + 1 + If scan And &H8000 Then deviceCode = deviceCode + 256 + + GetDeviceCode& = deviceCode +End Function + +Sub AssertPress(scan As Long) + testCount = testCount + 1 + + emulateScancode scan, Down + AssertDown scan + + emulateScancode scan, Up + AssertUp scan +End Sub + +Sub AssertDown(scan As Long) + testCount = testCount + 1 + deviceCode = GetDeviceCode&(scan) + + While _DeviceInput(1): Wend + Print "Test button down:"; testCount; ": "; + If _Button(deviceCode) Then Print "PASS!" Else Print "FAIL! Key="; scan And &H7FFF; ", state="; _Button(deviceCode) +End Sub + +Sub AssertUp(scan As Long) + testCount = testCount + 1 + deviceCode = GetDeviceCode&(scan) + + While _DeviceInput(1): Wend + Print "Test button up :"; testCount; ": "; + If Not _Button(deviceCode) Then Print "PASS!" Else Print "FAIL! Key="; scan And &H7FFF; ", state="; _Button(deviceCode) +End Sub + +$Else + +' Not supported for other platforms at the moment, output is simulated +Open "devices_windows.output" For Input As #1 + +While Not Eof(1) + Line Input #1, l$ + Print l$ +Wend + +System + +$End If diff --git a/tests/compile_tests/keyboard/devices_windows.output b/tests/compile_tests/keyboard/devices_windows.output new file mode 100644 index 000000000..9ea40ecfd --- /dev/null +++ b/tests/compile_tests/keyboard/devices_windows.output @@ -0,0 +1,96 @@ +Test button down: 2 : PASS! +Test button up : 3 : PASS! +Test button down: 5 : PASS! +Test button up : 6 : PASS! +Test button down: 8 : PASS! +Test button up : 9 : PASS! +Test button down: 11 : PASS! +Test button up : 12 : PASS! +Test button down: 14 : PASS! +Test button up : 15 : PASS! +Test button down: 17 : PASS! +Test button up : 18 : PASS! +Test button down: 20 : PASS! +Test button up : 21 : PASS! +Test button down: 23 : PASS! +Test button up : 24 : PASS! +Test button down: 26 : PASS! +Test button up : 27 : PASS! +Test button down: 29 : PASS! +Test button up : 30 : PASS! +Test button down: 32 : PASS! +Test button up : 33 : PASS! +Test button down: 35 : PASS! +Test button up : 36 : PASS! +Test button down: 38 : PASS! +Test button up : 39 : PASS! +Test button down: 41 : PASS! +Test button up : 42 : PASS! +Test button down: 44 : PASS! +Test button up : 45 : PASS! +Test button down: 47 : PASS! +Test button up : 48 : PASS! +Test button down: 50 : PASS! +Test button up : 51 : PASS! +Test button down: 53 : PASS! +Test button up : 54 : PASS! +Test button down: 56 : PASS! +Test button up : 57 : PASS! +Test button down: 59 : PASS! +Test button up : 60 : PASS! +Test button down: 62 : PASS! +Test button up : 63 : PASS! +Test button down: 65 : PASS! +Test button up : 66 : PASS! +Test button down: 68 : PASS! +Test button up : 69 : PASS! +Test button down: 71 : PASS! +Test button up : 72 : PASS! +Test button down: 74 : PASS! +Test button up : 75 : PASS! +Test button down: 77 : PASS! +Test button up : 78 : PASS! +Test button down: 80 : PASS! +Test button up : 81 : PASS! +Test button down: 83 : PASS! +Test button up : 84 : PASS! +Test button down: 86 : PASS! +Test button up : 87 : PASS! +Test button down: 89 : PASS! +Test button up : 90 : PASS! +Test button down: 92 : PASS! +Test button up : 93 : PASS! +Test button down: 95 : PASS! +Test button up : 96 : PASS! +Test button down: 98 : PASS! +Test button up : 99 : PASS! +Test button down: 101 : PASS! +Test button up : 102 : PASS! +Test button down: 103 : PASS! +Test button down: 104 : PASS! +Test button down: 105 : PASS! +Test button down: 106 : PASS! +Test button up : 107 : PASS! +Test button up : 108 : PASS! +Test button up : 109 : PASS! +Test button up : 110 : PASS! +Test button down: 111 : PASS! +Test button down: 112 : PASS! +Test button down: 113 : PASS! +Test button down: 114 : PASS! +Test button up : 115 : PASS! +Test button up : 116 : PASS! +Test button up : 117 : PASS! +Test button up : 118 : PASS! +Test button down: 119 : PASS! +Test button down: 120 : PASS! +Test button up : 121 : PASS! +Test button up : 122 : PASS! +Test button down: 123 : PASS! +Test button down: 124 : PASS! +Test button up : 125 : PASS! +Test button up : 126 : PASS! +Test button down: 127 : PASS! +Test button down: 128 : PASS! +Test button up : 129 : PASS! +Test button up : 130 : PASS! diff --git a/tests/compile_tests/keyboard/keyconsts.bi b/tests/compile_tests/keyboard/keyconsts.bi new file mode 100644 index 000000000..7a88681aa --- /dev/null +++ b/tests/compile_tests/keyboard/keyconsts.bi @@ -0,0 +1,126 @@ +' _KEYDOWN Keyboard Values +' +'Esc F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Sys ScL Pause +' 27 15104 15360 15616 15872 16128 16384 16640 16896 17152 17408 34048 34304 +316 +302 +019 +'`~ 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) -_ =+ BkSp Ins Hme PUp NumL / * - +'126 33 64 35 36 37 94 38 42 40 41 95 43 8 20992 18176 18688 +300 47 42 45 +' 96 49 50 51 52 53 54 55 56 57 48 45 61 +'Tab Q W E R T Y U I O P [{ ]} \| Del End PDn 7Hme 8/^ 9PU + +' 9 81 87 69 82 84 89 85 73 79 80 123 125 124 21248 20224 20736 18176 18432 18688 43 +' 113 119 101 114 116 121 117 105 111 112 91 93 92 55 56 57 +'CapL A S D F G H J K L ;: '" Enter 4/<- 5 6/-> +'+301 65 83 68 70 71 72 74 75 76 58 34 13 19200 19456 19712 E +' 97 115 100 102 103 104 106 107 108 59 39 52 53 54 n +'Shift Z X C V B N M ,< .> /? Shift ^ 1End 2/V 3PD t +'+304 90 88 67 86 66 78 77 60 62 63 +303 18432 20224 20480 20736 e +' 122 120 99 118 98 110 109 44 46 47 49 50 51 r +'Ctrl Win Alt Spacebar Alt Win Menu Ctrl <- V -> 0Ins .Del +'+306 +311 +308 32 +307 +312 +319 +305 19200 20480 19712 20992 21248 13 +' 48 46 +' +' Lower value = LCase/NumLock On __________________ + = add 100000 + +CONST KEY_TAB = 9 +CONST KEY_ENTER = 13 +CONST KEY_EXCLAIM = 33 +CONST KEY_ONE = 49 +CONST KEY_F1 = 15104 +CONST KEY_F10 = 17408 + +CONST KEY_SHIFT = 16 +CONST KEY_CTRL = 17 +CONST KEY_ALT = 18 + +CONST KEY_PAUSE& = 100019 +CONST KEY_NUMLOCK& = 100300 +CONST KEY_CAPSLOCK& = 100301 +CONST KEY_SCROLLOCK& = 100302 +CONST KEY_RSHIFT& = 100303 +CONST KEY_LSHIFT& = 100304 +CONST KEY_RCTRL& = 100305 +CONST KEY_LCTRL& = 100306 +CONST KEY_RALT& = 100307 +CONST KEY_LALT& = 100308 +CONST KEY_RMETA& = 100309 'Left 'Apple' key (macOS) +CONST KEY_LMETA& = 100310 'Right 'Apple' key (macOS) +CONST KEY_LSUPER& = 100311 'Left "Windows" key +CONST KEY_RSUPER& = 100312 'Right "Windows"key +CONST KEY_MODE& = 100313 '"AltGr" key +CONST KEY_COMPOSE& = 100314 +CONST KEY_HELP& = 100315 +CONST KEY_PRINT& = 100316 +CONST KEY_SYSREQ& = 100317 +CONST KEY_BREAK& = 100318 +CONST KEY_MENU& = 100319 +CONST KEY_POWER& = 100320 +CONST KEY_EURO& = 100321 +CONST KEY_UNDO& = 100322 +CONST KEY_KP0& = 100256 +CONST KEY_KP1& = 100257 +CONST KEY_KP2& = 100258 +CONST KEY_KP3& = 100259 +CONST KEY_KP4& = 100260 +CONST KEY_KP5& = 100261 +CONST KEY_KP6& = 100262 +CONST KEY_KP7& = 100263 +CONST KEY_KP8& = 100264 +CONST KEY_KP9& = 100265 +CONST KEY_KP_PERIOD& = 100266 +CONST KEY_KP_DIVIDE& = 100267 +CONST KEY_KP_MULTIPLY& = 100268 +CONST KEY_KP_MINUS& = 100269 +CONST KEY_KP_PLUS& = 100270 +CONST KEY_KP_ENTER& = 100271 +CONST KEY_KP_INSERT& = 200000 +CONST KEY_KP_END& = 200001 +CONST KEY_KP_DOWN& = 200002 +CONST KEY_KP_PAGE_DOWN& = 200003 +CONST KEY_KP_LEFT& = 200004 +CONST KEY_KP_MIDDLE& = 200005 +CONST KEY_KP_RIGHT& = 200006 +CONST KEY_KP_HOME& = 200007 +CONST KEY_KP_UP& = 200008 +CONST KEY_KP_PAGE_UP& = 200009 +CONST KEY_KP_DELETE& = 200010 +CONST KEY_SCROLL_LOCK_MODE& = 200011 +CONST KEY_INSERT_MODE& = 200012 + +Const EscScanCode = &H01 +Const EnterScancode = &H1C +Const TabScancode = &H0F +Const OneScancode = &H02 +Const AScanCode = &H1E ' A key +Const WScanCode = &H11 +Const SpaceScanCode = &H39 + +Const PgUpScanCode = &H49 Or &H8000 +Const PgDownScanCode = &H51 Or &H8000 +Const HomeScanCode = &H47 Or &H8000 +Const InsertScanCode = &H52 Or &H8000 +Const DeleteScanCode = &H53 Or &H8000 +Const EndScanCode = &H4F Or &H8000 + +Const LCtrlScancode = &H1D +Const LShiftScancode = &H2A +Const LAltScancode = &H38 +Const RCtrlScancode = &H1D Or &H8000 ' Extended +Const RShiftScancode = &H36 +Const RAltScancode = &H38 Or &H8000 + +Const NumLockScancode = &H45 +Const ScrollLockScancode = &H45 +Const KeypadUpScancode = &H48 + +Const F1Scancode = &H3B +Const F2Scancode = &H3C +Const F3Scancode = &H3D +Const F4Scancode = &H3E +Const F5Scancode = &H3F +Const F6Scancode = &H40 +Const F7Scancode = &H41 +Const F8Scancode = &H42 +Const F9Scancode = &H43 +Const F10Scancode = &H44 +Const F11Scancode = &H57 +Const F12Scancode = &H58 + diff --git a/tests/compile_tests/keyboard/sendinput.bi b/tests/compile_tests/keyboard/sendinput.bi new file mode 100644 index 000000000..edd41e2d4 --- /dev/null +++ b/tests/compile_tests/keyboard/sendinput.bi @@ -0,0 +1,28 @@ + +Const INPUT_TYPE_KEYBOARD = 1 + +Const KBD_FLAG_EXTENDED = 1 +Const KBD_FLAG_UP = 2 +Const KBD_FLAG_UNICODE = 4 +Const KBD_FLAG_SCANCODE = 8 + +Const Down = 1 +Const Up = 0 + +Type KbdInput + typ As Long + pad As Long + vk As Integer + scancode As Integer + flags As _Unsigned Long + tim As _Unsigned Long + pad2 As Long + extraInfo As _Offset + padding As String * 8 +End Type + +Declare CustomType Library + Function SendInput~&(ByVal inputCount As _Unsigned Long, ByVal inputArray As _Offset, ByVal inputTypeSize As _Unsigned Long) + Function GetLastError&() +End Declare + diff --git a/tests/compile_tests/keyboard/sendinput.bm b/tests/compile_tests/keyboard/sendinput.bm new file mode 100644 index 000000000..b1e45d546 --- /dev/null +++ b/tests/compile_tests/keyboard/sendinput.bm @@ -0,0 +1,29 @@ + +Sub emulateScancode(scancode As Integer, isDown As Long) + Dim kbd As KbdInput + + kbd.typ = INPUT_TYPE_KEYBOARD + kbd.scancode = scancode And &H7FFF ' Strip off extended flag + kbd.flags = KBD_FLAG_SCANCODE + If isDown = 0 Then kbd.flags = kbd.flags Or KBD_FLAG_UP + If scancode And &H8000 Then kbd.flags = kbd.flags Or KBD_FLAG_EXTENDED + + e& = SendInput~&(1, _Offset(kbd), LEN(kbd)) + + If e& <> 1 Then Print "ERROR: e:"; e&; ", GetLastError:"; GetLastError + _Delay .05 +End Sub + +Sub emulateVirtualKey(vk As Integer, isDown As Long) + Dim kbd As KbdInput + + kbd.typ = INPUT_TYPE_KEYBOARD + kbd.vk = vk + If isDown = 0 Then kbd.flags = kbd.flags Or KBD_FLAG_UP + + e& = SendInput~&(1, _Offset(kbd), LEN(kbd)) + + If e& <> 1 Then Print "ERROR: e:"; e&; ", GetLastError:"; GetLastError + _Delay .05 +End Sub + diff --git a/tests/compile_tests/midi/include/soundfont.bi b/tests/compile_tests/midi/include/soundfont.bi new file mode 100644 index 000000000..281db2f4d --- /dev/null +++ b/tests/compile_tests/midi/include/soundfont.bi @@ -0,0 +1,3 @@ +$UNSTABLE:MIDI +$MIDISOUNDFONT:"soundfont.sf3" + diff --git a/tests/compile_tests/midi/include/soundfont.sf3 b/tests/compile_tests/midi/include/soundfont.sf3 new file mode 100644 index 000000000..56a1d58e0 Binary files /dev/null and b/tests/compile_tests/midi/include/soundfont.sf3 differ diff --git a/tests/compile_tests/midi/relative_to_include.bas b/tests/compile_tests/midi/relative_to_include.bas new file mode 100644 index 000000000..15be4b049 --- /dev/null +++ b/tests/compile_tests/midi/relative_to_include.bas @@ -0,0 +1,11 @@ +$CONSOLE:ONLY +OPTION _EXPLICIT + +'$Include:'include/soundfont.bi' + +DIM h AS LONG: h = _SNDOPEN("2SKIPIX.mid") + +PRINT "play time ="; _SNDLEN(h) + +SYSTEM + diff --git a/tests/compile_tests/midi/relative_to_include.compile-from-base b/tests/compile_tests/midi/relative_to_include.compile-from-base new file mode 100644 index 000000000..e69de29bb diff --git a/tests/compile_tests/midi/relative_to_source.bas b/tests/compile_tests/midi/relative_to_source.bas new file mode 100644 index 000000000..31269f2ef --- /dev/null +++ b/tests/compile_tests/midi/relative_to_source.bas @@ -0,0 +1,12 @@ +$CONSOLE:ONLY +OPTION _EXPLICIT + +$UNSTABLE:MIDI +$MIDISOUNDFONT:"include/soundfont.sf3" + +DIM h AS LONG: h = _SNDOPEN("2SKIPIX.mid") + +PRINT "play time ="; _SNDLEN(h) + +SYSTEM + diff --git a/tests/compile_tests/midi/relative_to_source.compile-from-base b/tests/compile_tests/midi/relative_to_source.compile-from-base new file mode 100644 index 000000000..e69de29bb diff --git a/tests/compile_tests/name with spaces/test.compile-from-base b/tests/compile_tests/name with spaces/test.compile-from-base new file mode 100644 index 000000000..e69de29bb diff --git a/tests/compile_tests/single'quote'test/single'quote'test.compile-from-base b/tests/compile_tests/single'quote'test/single'quote'test.compile-from-base new file mode 100644 index 000000000..e69de29bb