-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #539 from a740g/llvm-mingw-backend
Update setup_mingw.cmd to use LLVM MinGW on all versions of Windows
- Loading branch information
Showing
6 changed files
with
861 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,19 +7,34 @@ | |
'| ## ## # | ._.' | | ||
'| ## ###### | Sources & Documents placed in the Public Domain. | | ||
'+---------------+---------------------------------------------------+ | ||
'| | | ||
'| === simplebuffer.bi === | | ||
'| | | ||
'| == Definitions required for the routines in simplebuffer.bm. | | ||
'| | | ||
'+-------------------------------------------------------------------+ | ||
'| Done by RhoSigma, R.Heyder, provided AS IS, use at your own risk. | | ||
'| Find me in the QB64 Forum or mail to [email protected] for | | ||
'| any questions or suggestions. Thanx for your interest in my work. | | ||
'+-------------------------------------------------------------------+ | ||
|
||
'--- The internal array for data storage | ||
'----- | ||
'never access this directly, use functions in simplebuffer.bm | ||
REDIM SHARED simplebuffer_array$(0 TO 10599) 'init for 100 buffers | ||
REDIM SHARED simplebuffer_array$(0 TO 10599) | ||
|
||
'--- Simplebuffer Errors (most FUNCTIONs) | ||
'----- | ||
'initializer error returns | ||
CONST SBE_NoMoreBuffers = -1 | ||
CONST SBE_NoMoreIDs = -2 | ||
CONST SBE_EmptyFind = -3 | ||
'operational error returns | ||
CONST SBE_UnknownMode = -11 | ||
CONST SBE_OutOfBounds = -12 | ||
CONST SBE_BadIDNumber = -13 | ||
CONST SBE_UnusedID = -14 | ||
CONST SBE_ClearedID = -15 | ||
|
||
'--- Simplebuffer Modes (SeekBuf) --- | ||
'----- | ||
|
@@ -28,6 +43,18 @@ CONST SBM_PosRestore = -21 | |
CONST SBM_BufStart = -22 | ||
CONST SBM_BufCurrent = -23 | ||
CONST SBM_BufEnd = -24 | ||
CONST SBM_LineStart = -25 | ||
CONST SBM_LineEnd = -26 | ||
|
||
'--- Simplebuffer Flags (FindBufFwd/Rev) --- | ||
'----- | ||
'use for method% argument | ||
CONST SBF_FullData = 0 | ||
CONST SBF_Delimiter = 1 | ||
CONST SBF_InvDelimiter = -1 | ||
'use for treat% argument | ||
CONST SBF_AsWritten = 0 | ||
CONST SBF_IgnoreCase = -1 | ||
|
||
'$INCLUDE: 'sb_qb64pe_extension.bi' | ||
|
Oops, something went wrong.