| OLD | NEW |
| 1 @ECHO OFF | 1 @ECHO OFF |
| 2 | 2 |
| 3 :: | 3 :: |
| 4 :: build-all-msvc.bat -- | 4 :: build-all-msvc.bat -- |
| 5 :: | 5 :: |
| 6 :: Multi-Platform Build Tool for MSVC | 6 :: Multi-Platform Build Tool for MSVC |
| 7 :: | 7 :: |
| 8 | 8 |
| 9 REM | 9 REM |
| 10 REM This batch script is used to build the SQLite DLL for multiple platforms | 10 REM This batch script is used to build the SQLite DLL for multiple platforms |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 557 |
| 558 :no_errors | 558 :no_errors |
| 559 CALL :fn_ResetErrorLevel | 559 CALL :fn_ResetErrorLevel |
| 560 ENDLOCAL | 560 ENDLOCAL |
| 561 ECHO. | 561 ECHO. |
| 562 ECHO Success, no errors were encountered. | 562 ECHO Success, no errors were encountered. |
| 563 GOTO end_of_file | 563 GOTO end_of_file |
| 564 | 564 |
| 565 :end_of_file | 565 :end_of_file |
| 566 %__ECHO% EXIT /B %ERRORLEVEL% | 566 %__ECHO% EXIT /B %ERRORLEVEL% |
| OLD | NEW |