From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============3026360489574863185==" MIME-Version: 1.0 From: Philippe Nunes Subject: [PATCH v2 01/12] cdma-providers: add driver APIs header Date: Thu, 08 Dec 2011 15:49:52 +0100 Message-ID: <1323355803-22096-2-git-send-email-philippe.nunes@linux.intel.com> In-Reply-To: <1323355803-22096-1-git-send-email-philippe.nunes@linux.intel.com> List-Id: To: ofono@ofono.org --===============3026360489574863185== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable --- include/cdma-providers.h | 44 ++++++++++++++++++++++++++++++++++++++++++= ++ 1 files changed, 44 insertions(+), 0 deletions(-) create mode 100644 include/cdma-providers.h diff --git a/include/cdma-providers.h b/include/cdma-providers.h new file mode 100644 index 0000000..6878087 --- /dev/null +++ b/include/cdma-providers.h @@ -0,0 +1,44 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-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 __OFONO_CDMA_PROVIDERS_H +#define __OFONO_CDMA_PROVIDERS_H + +#ifdef __cplusplus +extern "C" { +#endif + +struct ofono_cdma_providers_driver { + const char *name; + int priority; + int (*get_provider_name)(const char *sid, char **name); +}; + +int ofono_cdma_providers_driver_register( + const struct ofono_cdma_providers_driver *driver); +void ofono_cdma_providers_driver_unregister( + const struct ofono_cdma_providers_driver *driver); + +#ifdef __cplusplus +} +#endif + +#endif /* __OFONO_CDMA_PROVIDERS_H */ -- = 1.7.1 --===============3026360489574863185==--