dbus-types.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
  2. /* dbus-types.h  types such as dbus_bool_t
  3.  *
  4.  * Copyright (C) 2002  Red Hat Inc.
  5.  *
  6.  * Licensed under the Academic Free License version 2.1
  7.  * 
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  * 
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  *
  22.  */
  23. #if !defined (DBUS_INSIDE_DBUS_H) && !defined (DBUS_COMPILATION)
  24. #error "Only <dbus/dbus.h> can be included directly, this file may disappear or change contents."
  25. #endif
  26. #ifndef DBUS_TYPES_H
  27. #define DBUS_TYPES_H
  28. #include <stddef.h>
  29. #include <dbus/dbus-arch-deps.h>
  30. typedef dbus_uint32_t  dbus_unichar_t;
  31. /* boolean size must be fixed at 4 bytes due to wire protocol! */
  32. typedef dbus_uint32_t  dbus_bool_t;
  33. /* Normally docs are in .c files, but there isn't a .c file for this. */
  34. /**
  35.  * @defgroup DBusTypes Basic types
  36.  * @ingroup  DBus
  37.  * @brief dbus_bool_t, dbus_int32_t, etc.
  38.  *
  39.  * Typedefs for common primitive types.
  40.  *
  41.  * @{
  42.  */
  43. /**
  44.  * @typedef dbus_bool_t
  45.  *
  46.  * A boolean, valid values are #TRUE and #FALSE.
  47.  */
  48. /**
  49.  * @typedef dbus_uint32_t
  50.  *
  51.  * A 32-bit unsigned integer on all platforms.
  52.  */
  53. /**
  54.  * @typedef dbus_int32_t
  55.  *
  56.  * A 32-bit signed integer on all platforms.
  57.  */
  58. /**
  59.  * @typedef dbus_uint16_t
  60.  *
  61.  * A 16-bit unsigned integer on all platforms.
  62.  */
  63. /**
  64.  * @typedef dbus_int16_t
  65.  *
  66.  * A 16-bit signed integer on all platforms.
  67.  */
  68. /**
  69.  * @typedef dbus_uint64_t
  70.  *
  71.  * A 64-bit unsigned integer on all platforms that support it.
  72.  * If supported, #DBUS_HAVE_INT64 will be defined.
  73.  *
  74.  * C99 requires a 64-bit type and most likely all interesting
  75.  * compilers support one. GLib for example flat-out requires
  76.  * a 64-bit type.
  77.  *
  78.  * You probably want to just assume #DBUS_HAVE_INT64 is always defined.
  79.  */
  80. /**
  81.  * @typedef dbus_int64_t
  82.  *
  83.  * A 64-bit signed integer on all platforms that support it.
  84.  * If supported, #DBUS_HAVE_INT64 will be defined.
  85.  *
  86.  * C99 requires a 64-bit type and most likely all interesting
  87.  * compilers support one. GLib for example flat-out requires
  88.  * a 64-bit type.
  89.  * 
  90.  * You probably want to just assume #DBUS_HAVE_INT64 is always defined.
  91.  */
  92. /**
  93.  * @def DBUS_HAVE_INT64
  94.  *
  95.  * Defined if 64-bit integers are available. Will be defined
  96.  * on any platform you care about, unless you care about
  97.  * some truly ancient UNIX, or some bizarre embedded platform.
  98.  *
  99.  * C99 requires a 64-bit type and most likely all interesting
  100.  * compilers support one. GLib for example flat-out requires
  101.  * a 64-bit type.
  102.  *
  103.  * You should feel comfortable ignoring this macro and just using
  104.  * int64 unconditionally.
  105.  * 
  106.  */
  107. /**
  108.  * @def DBUS_INT64_CONSTANT
  109.  *
  110.  * Declare a 64-bit signed integer constant. The macro
  111.  * adds the necessary "LL" or whatever after the integer,
  112.  * giving a literal such as "325145246765LL"
  113.  */
  114. /**
  115.  * @def DBUS_UINT64_CONSTANT
  116.  *
  117.  * Declare a 64-bit unsigned integer constant. The macro
  118.  * adds the necessary "ULL" or whatever after the integer,
  119.  * giving a literal such as "325145246765ULL"
  120.  */
  121. /** @} */
  122. #endif /* DBUS_TYPES_H */