mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:28:07 +02:00
* Dotted filenames for package imagemagick
This commit is contained in:
parent
18f0d90ba6
commit
6913f674b0
3
packages/imagemagick/namespaced/Api.Buildim.pp
Normal file
3
packages/imagemagick/namespaced/Api.Buildim.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Buildim;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i buildim.pp}
|
3
packages/imagemagick/namespaced/Api.Imagemagick.pas
Normal file
3
packages/imagemagick/namespaced/Api.Imagemagick.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Imagemagick;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i imagemagick.pas}
|
3
packages/imagemagick/namespaced/Api.Magick_wand.pas
Normal file
3
packages/imagemagick/namespaced/Api.Magick_wand.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Magick_wand;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i magick_wand.pas}
|
5
packages/imagemagick/namespaces.lst
Normal file
5
packages/imagemagick/namespaces.lst
Normal file
@ -0,0 +1,5 @@
|
||||
src/imagemagick.pas=namespaced/Api.Imagemagick.pas
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
||||
src/buildim.pp=namespaced/Api.Buildim.pp
|
||||
src/magick_wand.pas=namespaced/Api.Magick_wand.pas
|
@ -18,11 +18,17 @@
|
||||
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02111-1301, USA.
|
||||
}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit buildim;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
Interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses Api.Imagemagick, Api.Magick_wand;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses imagemagick, magick_wand;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
Implementation
|
||||
|
||||
|
@ -22,7 +22,9 @@
|
||||
Thanks to Marc Geldon and RuBBeR
|
||||
}
|
||||
{Version 0.4}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit ImageMagick;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$ifdef FPC}
|
||||
{$mode objfpc}
|
||||
@ -31,7 +33,11 @@ unit ImageMagick;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses System.SysUtils, System.CTypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses SysUtils, ctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$z4}
|
||||
|
||||
|
@ -24,7 +24,9 @@
|
||||
Thanks to Marc Geldon and RuBBeR
|
||||
}
|
||||
{Version 0.4}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit magick_wand;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$IFDEF FPC}
|
||||
{$mode objfpc}
|
||||
@ -35,7 +37,11 @@ unit magick_wand;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses Api.Imagemagick, System.CTypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses ImageMagick, ctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{ Various types }
|
||||
type
|
||||
|
Loading…
Reference in New Issue
Block a user