mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 17:59:27 +02:00
* Dotted filenames for package modplug
This commit is contained in:
parent
dc096609ff
commit
b3aaf78961
3
packages/modplug/namespaced/Api.Modplug.pas
Normal file
3
packages/modplug/namespaced/Api.Modplug.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Modplug;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i modplug.pas}
|
3
packages/modplug/namespaces.lst
Normal file
3
packages/modplug/namespaces.lst
Normal file
@ -0,0 +1,3 @@
|
||||
src/modplug.pas=namespaced/Api.Modplug.pas
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
@ -9,15 +9,22 @@
|
||||
* Authors: Kenton Varda <temporal@gauge3d.org> (C interface wrapper)
|
||||
*)
|
||||
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit modplug;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$mode objfpc}
|
||||
{$MINENUMSIZE 4}
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$IFDEF WINDOWS}
|
||||
{$DEFINE DYNLINK}
|
||||
@ -127,4 +134,4 @@ begin
|
||||
FreeMem(p);
|
||||
end;
|
||||
|
||||
end.
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user