~ubuntu-branches/ubuntu/utopic/ofono/utopic-proposed

« back to all changes in this revision

Viewing changes to drivers/qmimodem/util.h

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-08-22 19:59:08 UTC
  • mfrom: (1.4.3)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20120822195908-20ccett2uhgcz7f6
Tags: upstream-1.9
ImportĀ upstreamĀ versionĀ 1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  oFono - Open Source Telephony
 
4
 *
 
5
 *  Copyright (C) 2011-2012  Intel Corporation. All rights reserved.
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License version 2 as
 
9
 *  published by the Free Software Foundation.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 *
 
20
 */
 
21
 
 
22
#include <glib.h>
 
23
 
 
24
struct cb_data {
 
25
        void *cb;
 
26
        void *data;
 
27
        void *user;
 
28
};
 
29
 
 
30
static inline struct cb_data *cb_data_new(void *cb, void *data)
 
31
{
 
32
        struct cb_data *ret;
 
33
 
 
34
        ret = g_new0(struct cb_data, 1);
 
35
        ret->cb = cb;
 
36
        ret->data = data;
 
37
        ret->user = NULL;
 
38
 
 
39
        return ret;
 
40
}
 
41
 
 
42
#define CALLBACK_WITH_FAILURE(cb, args...)              \
 
43
        do {                                            \
 
44
                struct ofono_error cb_e;                \
 
45
                cb_e.type = OFONO_ERROR_TYPE_FAILURE;   \
 
46
                cb_e.error = 0;                         \
 
47
                                                        \
 
48
                cb(&cb_e, ##args);                      \
 
49
        } while (0)                                     \
 
50
 
 
51
#define CALLBACK_WITH_SUCCESS(f, args...)               \
 
52
        do {                                            \
 
53
                struct ofono_error e;                   \
 
54
                e.type = OFONO_ERROR_TYPE_NO_ERROR;     \
 
55
                e.error = 0;                            \
 
56
                f(&e, ##args);                          \
 
57
        } while (0)