-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving GJ_LIB_NL into _GJ_LIB_COMMON
- Loading branch information
Showing
4 changed files
with
29 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
'' | ||
' GRYMMJACK'S LIB FOR QB64 | ||
' | ||
' This file contains constants and variables common among the entire library. | ||
' | ||
' @author Rick Christy <grymmjack@gmail.com> | ||
' | ||
$IF GJLIB_COMMON_BM = UNDEFINED THEN | ||
$LET GJ_LIB_INC_COMMON_BM = 1 | ||
$END IF | ||
|
||
$IF GJ_LIB_NL = UNDEFINED AND WIN THEN | ||
GJ_LIB_NL$ = CHR$(13) | ||
$ELSE | ||
GJ_LIB_NL$ = CHR$(10) | ||
$END IF |