Done for now, will see if more work is needed...
This commit is contained in:
parent
f7d81c1703
commit
2f0815150d
23
raylib.ads
23
raylib.ads
@ -757,6 +757,8 @@ package Raylib is
|
|||||||
Data : Pointer := null;
|
Data : Pointer := null;
|
||||||
end record with Convention => C_Pass_By_Copy;
|
end record with Convention => C_Pass_By_Copy;
|
||||||
|
|
||||||
|
No_Wave : Wave;
|
||||||
|
|
||||||
type Audio_Stream is record
|
type Audio_Stream is record
|
||||||
Buffer : Pointer := null;
|
Buffer : Pointer := null;
|
||||||
Processor : Pointer := null;
|
Processor : Pointer := null;
|
||||||
@ -3105,15 +3107,20 @@ package Raylib is
|
|||||||
Convention => C,
|
Convention => C,
|
||||||
External_Name => "GetGlyphAtlasRec";
|
External_Name => "GetGlyphAtlasRec";
|
||||||
|
|
||||||
--~function char *LoadUTF8 (const int *codepoints, int length) with
|
function Load_UTF8 (
|
||||||
--~Import => True,
|
Code_Points : access Integer := null;
|
||||||
--~Convention => C,
|
Length : Integer := 0
|
||||||
--~External_Name => "";
|
) return access Character with
|
||||||
|
Import => True,
|
||||||
|
Convention => C,
|
||||||
|
External_Name => "LoadUTF8";
|
||||||
|
|
||||||
--~procedure UnloadUTF8 (char *text) with
|
procedure Unload_UTF8 (
|
||||||
--~Import => True,
|
Text : access Character := null
|
||||||
--~Convention => C,
|
) with
|
||||||
--~External_Name => "";
|
Import => True,
|
||||||
|
Convention => C,
|
||||||
|
External_Name => "UnloadUTF8";
|
||||||
|
|
||||||
--~function int *LoadCodepoints (const char *text, int *count) with
|
--~function int *LoadCodepoints (const char *text, int *count) with
|
||||||
--~Import => True,
|
--~Import => True,
|
||||||
|
Loading…
Reference in New Issue
Block a user