From 3a9960f34c14ba86eafba2db8cff6aa7555b55df Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Mon, 6 Jun 2011 16:04:58 +0200 Subject: [PATCH] target: Add missing header --- include/target.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 include/target.h diff --git a/include/target.h b/include/target.h new file mode 100644 index 0000000..66ea225 --- /dev/null +++ b/include/target.h @@ -0,0 +1,33 @@ +/* + * + * neard - Near Field Communication manager + * + * 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 __NEAR_TARGET_H +#define __NEAR_TARGET_H + +#include + +#include + +#include + +struct near_tag *near_target_get_tag(uint32_t target_idx, size_t data_length); + +#endif -- 2.7.4