Blame lib/pin.h

Packit Service fc05fa
/*
Packit Service fc05fa
 *
Packit Service fc05fa
 *  BlueZ - Bluetooth protocol stack for Linux
Packit Service fc05fa
 *
Packit Service fc05fa
 *  Copyright (C) 2009  Bastien Nocera <hadess@hadess.net>
Packit Service fc05fa
 *
Packit Service fc05fa
 *
Packit Service fc05fa
 *  This program is free software; you can redistribute it and/or modify
Packit Service fc05fa
 *  it under the terms of the GNU General Public License as published by
Packit Service fc05fa
 *  the Free Software Foundation; either version 2 of the License, or
Packit Service fc05fa
 *  (at your option) any later version.
Packit Service fc05fa
 *
Packit Service fc05fa
 *  This program is distributed in the hope that it will be useful,
Packit Service fc05fa
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fc05fa
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service fc05fa
 *  GNU General Public License for more details.
Packit Service fc05fa
 *
Packit Service fc05fa
 *  You should have received a copy of the GNU General Public License
Packit Service fc05fa
 *  along with this program; if not, write to the Free Software
Packit Service fc05fa
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Packit Service fc05fa
 *
Packit Service fc05fa
 */
Packit Service fc05fa
Packit Service fc05fa
#include <glib.h>
Packit Service fc05fa
Packit Service fc05fa
#define PIN_NUM_DIGITS 6
Packit Service fc05fa
Packit Service fc05fa
char *oui_to_vendor (const char *oui);
Packit Service fc05fa
char *get_pincode_for_device (guint       type,
Packit Service fc05fa
			      const char *address,
Packit Service fc05fa
			      const char *name,
Packit Service fc05fa
			      guint      *max_digits,
Packit Service fc05fa
			      gboolean   *confirm);
Packit Service fc05fa