File: dbus_arch_deps_h.ads

package info (click to toggle)
dbusada 0.6.3-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 748 kB
  • sloc: ada: 5,892; ansic: 98; makefile: 81; sh: 47
file content (31 lines) | stat: -rw-r--r-- 1,634 bytes parent folder | download | duplicates (3)
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
27
28
29
30
31
pragma Ada_2012;
pragma Style_Checks (Off);

with Interfaces.C; use Interfaces.C;

package dbus_arch_deps_h is

   DBUS_HAVE_INT64 : constant := 1;  --  /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:35
   --  unsupported macro: DBUS_INT64_CONSTANT(val) (_DBUS_GNUC_EXTENSION (val ##L))
   --  unsupported macro: DBUS_UINT64_CONSTANT(val) (_DBUS_GNUC_EXTENSION (val ##UL))

   DBUS_MAJOR_VERSION : constant := 1;  --  /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:51
   DBUS_MINOR_VERSION : constant := 12;  --  /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:52
   DBUS_MICRO_VERSION : constant := 20;  --  /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:53

   DBUS_VERSION_STRING : aliased constant String := "1.12.20" & ASCII.NUL;  --  /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:55
   --  unsupported macro: DBUS_VERSION ((1 << 16) | (12 << 8) | (20))

   subtype dbus_int64_t is long;  -- /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:36

   subtype dbus_uint64_t is unsigned_long;  -- /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:37

   subtype dbus_int32_t is int;  -- /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:42

   subtype dbus_uint32_t is unsigned;  -- /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:43

   subtype dbus_int16_t is short;  -- /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:45

   subtype dbus_uint16_t is unsigned_short;  -- /usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/dbus-arch-deps.h:46

end dbus_arch_deps_h;