mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00
* Dotted filenames for package libgbafpc
This commit is contained in:
parent
a3828c8e3e
commit
a057c96717
3
packages/libgbafpc/namespaced/GBAApi.Maxmod.pp
Normal file
3
packages/libgbafpc/namespaced/GBAApi.Maxmod.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit GBAApi.Maxmod;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i maxmod.pp}
|
6
packages/libgbafpc/namespaces.lst
Normal file
6
packages/libgbafpc/namespaces.lst
Normal file
@ -0,0 +1,6 @@
|
||||
src/maxmod/maxmod.pp=namespaced/GBAApi.Maxmod.pp
|
||||
{s*:src/maxmod/}=namespaced/
|
||||
{i+:src/maxmod/}
|
||||
src/gba.pp=namespaced/GBAApi.Gba.pp
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
@ -21,7 +21,9 @@
|
||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF *
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *
|
||||
****************************************************************************)
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit maxmod;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$mode objfpc}
|
||||
|
||||
@ -32,8 +34,13 @@ unit maxmod;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, GBAApi.Gba;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gba;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$linklib gba}
|
||||
{$linklib mm}
|
||||
|
Loading…
Reference in New Issue
Block a user