File: lwobjects.adb

package info (click to toggle)
libgtkada 2.24.4dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,208 kB
  • ctags: 1,676
  • sloc: ada: 119,686; ansic: 4,719; sh: 3,003; makefile: 690; xml: 338; perl: 70
file content (26 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

package body Lwobjects is

   function Lw_Is_Lwobject (File : String) return Boolean is
      function Internal (File : String) return Integer;
      pragma Import (C, Internal, "lw_is_lwobject");
   begin
      return Boolean'Val (Internal (File & ASCII.NUL));
   end Lw_Is_Lwobject;

   function Lw_Object_Read (File : String) return Lwobject is
      function Internal (File : String) return Lwobject;
      pragma Import (C, Internal, "lw_object_read");
   begin
      return Internal (File & ASCII.NUL);
   end Lw_Object_Read;

   procedure Lw_Object_Free (Object : in out Lwobject) is
      procedure Internal (Object : Lwobject);
      pragma Import (C, Internal, "lw_object_free");
   begin
      Internal (Object);
      Object := Null_Lwobject;
   end Lw_Object_Free;

end Lwobjects;