You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1724 8e941d3f-bd1b-0410-a28a-d453659cc2b4
24 lines
335 B
ObjectPascal
24 lines
335 B
ObjectPascal
unit lieconstants;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
const
|
|
DefaultDirectory = '/usr/share/lazimageeditor/';
|
|
BundleResourcesDirectory = '/Contents/Resources/';
|
|
|
|
SectionGeneral = 'General';
|
|
IdentLanguage = 'Language';
|
|
|
|
SectionUNIX = 'UNIX';
|
|
IdentMyDirectory = 'MyDirectory';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|