summaryrefslogtreecommitdiff
path: root/src/portaudio-streams.ads
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-10-07 19:51:28 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-10-07 19:51:28 +1300
commit07e7b817c59c3dce263bfb89b51248316c343f0e (patch)
tree5ebe3664317c69f267ad57e4c676ba3f40ac5c6c /src/portaudio-streams.ads
parent87b89d768d367a475bb553de295ac867909c28c9 (diff)
Now using Integer_Address for C interface
Diffstat (limited to 'src/portaudio-streams.ads')
-rw-r--r--src/portaudio-streams.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portaudio-streams.ads b/src/portaudio-streams.ads
index 0f3d2ba..4a431b8 100644
--- a/src/portaudio-streams.ads
+++ b/src/portaudio-streams.ads
@@ -482,7 +482,7 @@ private
My_Channels : Interfaces.C.int;
My_Samples : Interfaces.C.unsigned_long;
My_Latency : Interfaces.C.double;
- My_Specific : System.Address;
+ My_Specific : Storage.Integer_Address;
end record with Convention => C;
@@ -506,7 +506,7 @@ private
type Audio_Stream is tagged limited record
- Ptr : System.Address;
+ Ptr : Storage.Integer_Address;
Open : Boolean := False;
Callfun : Callback_Function;
Finfun : Stream_Finished_Function;