-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
39,533 additions
and
39,533 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
Author: Niels A.D | ||
Project: Lape (http://code.google.com/p/la-pe/) | ||
License: GNU Lesser GPL (http://www.gnu.org/licenses/lgpl.html) | ||
Defines for the Lape project. | ||
} | ||
|
||
{.$DEFINE Lape_CaseSensitive} //Case sentive in script | ||
{.$DEFINE Lape_CDECL} //CDECL function headers for callbacks/evaluations (useful for plugins/ffi) | ||
{.$DEFINE Lape_InitExternalFuncResult} //Ensure an empty result variable for external functions (useful for plugins/ffi) | ||
{$DEFINE Lape_DoubleKeywordsCache} //Create a double cache for keywords to speed up parsing (more memory, faster) | ||
{$DEFINE Lape_EmitPos} //Emit source position when compiling (more memory) | ||
{$DEFINE Lape_Inline} //Compile with function inlining where it could be benefitial (faster, harder debugging) | ||
{$DEFINE Lape_PascalLabels} //Label sections and declarations with colon, instead of label type and label() method | ||
{.$DEFINE Lape_SmallCode} //Try to keep compiled code as small as possible (packed records, no aligning -- less memory, slower) | ||
{.$DEFINE Lape_TrackObjects} //Track all created classes with a list to check for leaks | ||
{.$DEFINE Lape_Unicode} //Use unicodestrings | ||
|
||
{$IFDEF FPC} | ||
{$MODE objfpc}{$H+} | ||
{$ELSE} | ||
{$DEFINE Delphi} | ||
{$POINTERMATH ON} | ||
{$ENDIF} | ||
{ | ||
Author: Niels A.D | ||
Project: Lape (http://code.google.com/p/la-pe/) | ||
License: GNU Lesser GPL (http://www.gnu.org/licenses/lgpl.html) | ||
Defines for the Lape project. | ||
} | ||
|
||
{.$DEFINE Lape_CaseSensitive} //Case sentive in script | ||
{.$DEFINE Lape_CDECL} //CDECL function headers for callbacks/evaluations (useful for plugins/ffi) | ||
{.$DEFINE Lape_InitExternalFuncResult} //Ensure an empty result variable for external functions (useful for plugins/ffi) | ||
{$DEFINE Lape_DoubleKeywordsCache} //Create a double cache for keywords to speed up parsing (more memory, faster) | ||
{$DEFINE Lape_EmitPos} //Emit source position when compiling (more memory) | ||
{$DEFINE Lape_Inline} //Compile with function inlining where it could be benefitial (faster, harder debugging) | ||
{$DEFINE Lape_PascalLabels} //Label sections and declarations with colon, instead of label type and label() method | ||
{.$DEFINE Lape_SmallCode} //Try to keep compiled code as small as possible (packed records, no aligning -- less memory, slower) | ||
{.$DEFINE Lape_TrackObjects} //Track all created classes with a list to check for leaks | ||
{.$DEFINE Lape_Unicode} //Use unicodestrings | ||
|
||
{$IFDEF FPC} | ||
{$MODE objfpc}{$H+} | ||
{$ELSE} | ||
{$DEFINE Delphi} | ||
{$POINTERMATH ON} | ||
{$ENDIF} |
Oops, something went wrong.