1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-09 15:25:12 +00:00
QB64-PE/source/utilities/s-buffer/sb_qb64pe_extension.bi
Roland Heyder 51667125c9 Avoid excessive disk access while typing
- No longer constantly (over)writes files in the `internal\temp` folder while typing in the IDE, as the generated C/C++ code is buffered internally now.
- Buffers are automatically written out to disk on a `Make` request (F5/F11).
2022-08-25 01:14:29 +02:00

8 lines
326 B
Plaintext

'--- This array holds the file names for the used buffers, the array is
'--- directly indexed using the buffer handles. This array is comparable
'--- to the "table of contents" of the harddrive.
'--- Avoid direct access, use the provided SUBs and FUNCTIONs.
'-----
REDIM SHARED SBufN(0 TO 99) AS STRING 'init for 100 buffers