epoc32/include/stdapis/dbus-1.0/dbus/dbus-arch-deps.h
branchSymbian2
changeset 2 2fe1408b6811
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/stdapis/dbus-1.0/dbus/dbus-arch-deps.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -0,0 +1,56 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* dbus-arch-deps.h Header with architecture/compiler specific information, installed to libdir
     1.6 + *
     1.7 + * Copyright (C) 2003 Red Hat, Inc.
     1.8 + *
     1.9 + * Licensed under the Academic Free License version 2.0
    1.10 + * 
    1.11 + * This program is free software; you can redistribute it and/or modify
    1.12 + * it under the terms of the GNU General Public License as published by
    1.13 + * the Free Software Foundation; either version 2 of the License, or
    1.14 + * (at your option) any later version.
    1.15 + *
    1.16 + * This program is distributed in the hope that it will be useful,
    1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 + * GNU General Public License for more details.
    1.20 + * 
    1.21 + * You should have received a copy of the GNU General Public License
    1.22 + * along with this program; if not, write to the Free Software
    1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.24 + *
    1.25 + */
    1.26 +#if !defined (DBUS_INSIDE_DBUS_H) && !defined (DBUS_COMPILATION)
    1.27 +#error "Only <dbus/dbus.h> can be included directly, this file may disappear or change contents."
    1.28 +#endif
    1.29 +
    1.30 +#ifndef DBUS_ARCH_DEPS_H
    1.31 +#define DBUS_ARCH_DEPS_H
    1.32 +
    1.33 +#include <dbus/dbus-macros.h>
    1.34 +
    1.35 +DBUS_BEGIN_DECLS
    1.36 +
    1.37 +#if 1
    1.38 +#define DBUS_HAVE_INT64 1
    1.39 +typedef long long dbus_int64_t;
    1.40 +typedef unsigned long long dbus_uint64_t;
    1.41 +
    1.42 +#define DBUS_INT64_CONSTANT(val)  (val##LL)
    1.43 +#define DBUS_UINT64_CONSTANT(val) (val##ULL)
    1.44 +
    1.45 +#else
    1.46 +#undef DBUS_HAVE_INT64
    1.47 +#undef DBUS_INT64_CONSTANT
    1.48 +#undef DBUS_UINT64_CONSTANT
    1.49 +#endif
    1.50 +
    1.51 +typedef int dbus_int32_t;
    1.52 +typedef unsigned int dbus_uint32_t;
    1.53 +
    1.54 +typedef short dbus_int16_t;
    1.55 +typedef unsigned short dbus_uint16_t;
    1.56 +
    1.57 +DBUS_END_DECLS
    1.58 +
    1.59 +#endif /* DBUS_ARCH_DEPS_H */