summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2012-04-19 15:58:09 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2012-04-19 15:58:09 +0200
commit7ddf494eeb877126b38f86e16bb19f7f4029bc1a (patch)
tree1e0f6885510ee33d60d8c421a7bba830fb1d7901 /include
parentf0976392659e6c7a3675e4bf6b6c3f284809fa82 (diff)
downloadneard-7ddf494eeb877126b38f86e16bb19f7f4029bc1a.tar.gz
neard-7ddf494eeb877126b38f86e16bb19f7f4029bc1a.tar.bz2
neard-7ddf494eeb877126b38f86e16bb19f7f4029bc1a.zip
device: Initial commit
The device layer will define the NFC devices (in peer to peer mode at first) structure and operations.
Diffstat (limited to 'include')
-rw-r--r--include/device.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/device.h b/include/device.h
new file mode 100644
index 0000000..349fdef
--- /dev/null
+++ b/include/device.h
@@ -0,0 +1,29 @@
+/*
+ *
+ * neard - Near Field Communication manager
+ *
+ * Copyright (C) 2012 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 __NEAR_DEVICE_H
+#define __NEAR_DEVICE_H
+
+#include <stdint.h>
+
+#include <glib.h>
+
+#endif