diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-09 18:48:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-09 18:48:50 +0000 |
commit | 99f1c859eea7d70884d1ad8fa12b061f7b3f8b04 (patch) | |
tree | 880e846a64fae911277470fb687e5bbabb6ea753 /plugins/ImportTXT/kol/delphidef.inc | |
parent | 29bfa289893d945bc680d52623f8bf1ccfa3a515 (diff) |
KOL merged with Libs
git-svn-id: http://svn.miranda-ng.org/main/trunk@1849 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ImportTXT/kol/delphidef.inc')
-rw-r--r-- | plugins/ImportTXT/kol/delphidef.inc | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/plugins/ImportTXT/kol/delphidef.inc b/plugins/ImportTXT/kol/delphidef.inc deleted file mode 100644 index a6a6e51c93..0000000000 --- a/plugins/ImportTXT/kol/delphidef.inc +++ /dev/null @@ -1,48 +0,0 @@ -//{$DEFINE _FPC}
-{$DEFINE ASM_VERSION} // Comment this line to produce Pascal code.
- // Or, just add PAS_VERSION to conditionals
- // of your project (must be rebuilt).
-
-{$IFDEF ASM_VERSION}
- {$IFDEF PAS_VERSION}
- {$UNDEF ASM_VERSION}
- // To compile a project with ASM_VERSION option turned off,
- // define a symbol PAS_VERSION in project options.
- {$ENDIF}
-{$ENDIF}
-
-{$I KOLDEF.INC}
-
-//{$DEFINE USE_CONSTRUCTORS}
-// Comment this line to produce smaller code if constructors are not used.
-// When uncommented, this definition allows to create descendant controls
-// and objects overriding constructors, which are actually members of objects.
-// Otherwise, global functions (usually named New<ObjectName>) are used to
-// create and initialize object instances. This gives smaller code, but
-// prevents from using OOP inheritance.
-// Note: creating descendant objects derived from TObj does not require using
-// of this option. It is actually needed only for deriving new controls on
-// base of TControl. See also option USE_CUSTOMEXTENSIONS below.
-
-//{$DEFINE USE_CUSTOMEXTENSIONS}
-// Uncomment this option or add it to your project conditional defines,
-// if You wish to extend existing TControl object from
-// the inner of those. When this option is turned on, include directive at the
-// tail of TControl declaration is enabled, causing a compiler to include your
-// portion of source directly into the TControl body. See comments near this
-// directive there. (Search the word: USE_CUSTOMEXTENSIONS).
-// Please note, that this option is not fully supported now.
-
-{$IFNDEF NOT_UNLOAD_RICHEDITLIB}
- {$DEFINE UNLOAD_RICHEDITLIB}
-{$ENDIF}
-// You can freely comment this directive. 1st, if the application does not
-// use richedit control. 2nd, even if it does, freeing the library handle
-// actually is not needed.
-// Another way to turn this option off is to define symbol NOT_UNLOAD_RICHEDITLIB
-// in your project options.
-
-//{$DEFINE TEST_VERSION}
-{$IFNDEF _D6orHigher}
- {$DEFINE PARANOIA} //seems not needed under D6 !!! Inprise fixed this, finally...
-{$ENDIF}
\ No newline at end of file |