mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2025-01-22 20:35:57 +08:00
c8e98708ea
This adds support to dealing with FULLNAME (FN) and the filter application parameter.
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/*
|
|
* OBEX Server
|
|
*
|
|
* Copyright (C) 2008-2010 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 as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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
|
|
*
|
|
*/
|
|
|
|
enum phonebook_number_type {
|
|
TEL_TYPE_HOME,
|
|
TEL_TYPE_MOBILE,
|
|
TEL_TYPE_FAX,
|
|
TEL_TYPE_WORK,
|
|
TEL_TYPE_OTHER,
|
|
};
|
|
|
|
void phonebook_add_entry(GString *vcards, const char *number, int type,
|
|
const char *name, const char *fullname,
|
|
const char *email, uint64_t filter);
|