mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 13:09:35 +02:00
* Dotted filenames for package libogcfpc
This commit is contained in:
parent
1ddbb6a662
commit
864f097053
packages/libogcfpc
3
packages/libogcfpc/namespaced/WiiApi.Aesndlib.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Aesndlib.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Aesndlib;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i aesndlib.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Asndlib.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Asndlib.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Asndlib;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i asndlib.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Debug.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Debug.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Debug;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i debug.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Fat.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Fat.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Fat;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i fat.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Gccore.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Gccore.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Gccore;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i gccore.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Gcmodplay.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Gcmodplay.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Gcmodplay;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i gcmodplay.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Gctypes.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Gctypes.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Gctypes;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i gctypes.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Iso9660.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Iso9660.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Iso9660;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i iso9660.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Mp3player.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Mp3player.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Mp3player;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i mp3player.pp}
|
3
packages/libogcfpc/namespaced/WiiApi.Network.pp
Normal file
3
packages/libogcfpc/namespaced/WiiApi.Network.pp
Normal file
@ -0,0 +1,3 @@
|
||||
unit WiiApi.Network;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i network.pp}
|
12
packages/libogcfpc/namespaces.lst
Normal file
12
packages/libogcfpc/namespaces.lst
Normal file
@ -0,0 +1,12 @@
|
||||
src/gctypes.pp=namespaced/WiiApi.Gctypes.pp
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
||||
src/gcmodplay.pp=namespaced/WiiApi.Gcmodplay.pp
|
||||
src/network.pp=namespaced/WiiApi.Network.pp
|
||||
src/fat.pp=namespaced/WiiApi.Fat.pp
|
||||
src/gccore.pp=namespaced/WiiApi.Gccore.pp
|
||||
src/debug.pp=namespaced/WiiApi.Debug.pp
|
||||
src/iso9660.pp=namespaced/WiiApi.Iso9660.pp
|
||||
src/asndlib.pp=namespaced/WiiApi.Asndlib.pp
|
||||
src/aesndlib.pp=namespaced/WiiApi.Aesndlib.pp
|
||||
src/mp3player.pp=namespaced/WiiApi.Mp3player.pp
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit aesndlib;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -8,8 +10,13 @@ unit aesndlib;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
MAX_VOICES = 32;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit asndlib;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -8,8 +10,13 @@ unit asndlib;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
ASND_LIB = $100;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit debug;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
@ -8,8 +10,13 @@ unit debug;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
GDBSTUB_DEVICE_USB = 0;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit fat;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -7,8 +9,13 @@ unit fat;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes, WiiApi.Gccore;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes, gccore;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
function fatInit(cacheSize: cuint32; setAsDefaultDevice: cbool): cbool; cdecl; external;
|
||||
function fatInitDefault: cbool; cdecl; external;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit gccore;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -9,8 +11,13 @@ unit gccore;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CMem, System.CTypes, System.Math, WiiApi.Gctypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
cmem, ctypes, math, gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
RNC_FILE_IS_NOT_RNC = -1;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit gcmodplay;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -7,8 +9,13 @@ unit gcmodplay;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
MAX_VOICES = 32;
|
||||
|
@ -1,9 +1,16 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
LITTLE_ENDIAN = 3412;
|
||||
@ -41,4 +48,4 @@ const
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
end.
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit iso9660;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -7,8 +9,13 @@ unit iso9660;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes, WiiApi.Gccore;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes, gccore;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
ISO_MAXPATHLEN = 128;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit mp3player;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -10,8 +12,13 @@ unit mp3player;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes, Api.Mad;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes, mad;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
type
|
||||
pmad_stream=^mad_stream;
|
||||
|
@ -1,4 +1,6 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit network;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
{$mode objfpc}
|
||||
{$J+}
|
||||
{$INLINE ON}
|
||||
@ -7,8 +9,13 @@ unit network;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.CTypes, WiiApi.Gctypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
ctypes, gctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
INVALID_SOCKET = ( not 0 );
|
||||
|
Loading…
Reference in New Issue
Block a user