summaryrefslogtreecommitdiff
path: root/gobex/gobex-defs.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2011-06-28 23:32:53 +0300
committerMarcel Holtmann <marcel@holtmann.org>2012-12-04 22:21:57 +0100
commitb105277b9726903f1eea33d6b0046e832406d539 (patch)
tree2f05b9316ac456cfd955a84c81b85c1a624e42af /gobex/gobex-defs.h
parentf9e824c0e6495ee16903c0033f7cd4a2c7228dea (diff)
downloadbluez-b105277b9726903f1eea33d6b0046e832406d539.tar.gz
gobex: Split gobex.c into multiple modules
Diffstat (limited to 'gobex/gobex-defs.h')
-rw-r--r--gobex/gobex-defs.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/gobex/gobex-defs.h b/gobex/gobex-defs.h
new file mode 100644
index 000000000..ad8b046fd
--- /dev/null
+++ b/gobex/gobex-defs.h
@@ -0,0 +1,31 @@
+/*
+ *
+ * OBEX library with GLib integration
+ *
+ * Copyright (C) 2011 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __GOBEX_DEFS_H
+#define __GOBEX_DEFS_H
+
+typedef enum {
+ G_OBEX_DATA_INHERIT,
+ G_OBEX_DATA_COPY,
+ G_OBEX_DATA_REF,
+} GObexDataPolicy;
+
+#endif /* __GOBEX_DEFS_H */