D-Bus 1.14.8
Data Structures | Macros

dbus_bool_t, dbus_int32_t, etc. More...

Data Structures

struct  DBus8ByteStruct
 An 8-byte struct you could use to access int64 without having int64 support. More...
 
union  DBusBasicValue
 A simple value union that lets you access bytes as if they were various types; useful when dealing with basic types via void pointers and varargs. More...
 

Macros

#define DBUS_HAVE_INT64   1
 Always defined.
 
#define DBUS_INT64_CONSTANT(val)   (_DBUS_GNUC_EXTENSION (val##L))
 Declare a 64-bit signed integer constant.
 
#define DBUS_UINT64_CONSTANT(val)   (_DBUS_GNUC_EXTENSION (val##UL))
 Declare a 64-bit unsigned integer constant.
 

Detailed Description

dbus_bool_t, dbus_int32_t, etc.

Typedefs for common primitive types.

Macro Definition Documentation

◆ DBUS_HAVE_INT64

#define DBUS_HAVE_INT64   1

Always defined.

In older libdbus versions, this would be undefined if there was no 64-bit integer type on that platform. libdbus no longer supports such platforms.

Definition at line 35 of file dbus-arch-deps.h.

◆ DBUS_INT64_CONSTANT

#define DBUS_INT64_CONSTANT (   val)    (_DBUS_GNUC_EXTENSION (val##L))

Declare a 64-bit signed integer constant.

The macro adds the necessary "LL" or whatever after the integer, giving a literal such as "325145246765LL"

Definition at line 39 of file dbus-arch-deps.h.

◆ DBUS_UINT64_CONSTANT

#define DBUS_UINT64_CONSTANT (   val)    (_DBUS_GNUC_EXTENSION (val##UL))

Declare a 64-bit unsigned integer constant.

The macro adds the necessary "ULL" or whatever after the integer, giving a literal such as "325145246765ULL"

Definition at line 40 of file dbus-arch-deps.h.