File: grl-sync-priv.h

package info (click to toggle)
grilo 0.1.19-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,632 kB
  • sloc: ansic: 13,303; sh: 11,334; xml: 2,327; makefile: 481; python: 289
file content (37 lines) | stat: -rw-r--r-- 1,086 bytes parent folder | download | duplicates (7)
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
32
33
34
35
36
37
/*
 * Copyright (C) 2010 Igalia S.L.
 *
 * Contact: Iago Toral Quiroga <itoral@igalia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef _GRL_SYNC_PRIV_H_
#define _GRL_SYNC_PRIV_H_

#include <glib.h>

typedef struct {
  gboolean complete;
  gpointer data;
  GError *error;
} GrlDataSync;

void
grl_wait_for_async_operation_complete (GrlDataSync *ds);

#endif /* _GRL_SYNC_PRIV_H_ */