mirror of
				https://github.com/mer-hybris/ofono-binder-plugin
				synced 2025-11-04 06:45:38 +08:00 
			
		
		
		
	The logic is based on ofono-ril-plugin. Only interfaces up to and including IRadio@1.2 are fully supported, although bits and pieces of IRadio@1.4 are already there. Full support for IRadio@1.4 will be added later as a separate task. For now, only the standard (as in "defined by Google") IRadio interfaces are used. Support for vendor-specific extensions is planned and will be added later.
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 *  oFono - Open Source Telephony - binder based adaptation
 | 
						|
 *
 | 
						|
 *  Copyright (C) 2021-2022 Jolla Ltd.
 | 
						|
 *
 | 
						|
 *  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.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef BINDER_NETREG_H
 | 
						|
#define BINDER_NETREG_H
 | 
						|
 | 
						|
#include "binder_types.h"
 | 
						|
 | 
						|
#include <ofono/netreg.h>
 | 
						|
 | 
						|
void
 | 
						|
binder_netreg_init(void)
 | 
						|
    BINDER_INTERNAL;
 | 
						|
 | 
						|
void
 | 
						|
binder_netreg_cleanup(void)
 | 
						|
    BINDER_INTERNAL;
 | 
						|
 | 
						|
enum ofono_netreg_status
 | 
						|
binder_netreg_check_if_really_roaming(
 | 
						|
    struct ofono_netreg* reg,
 | 
						|
    enum ofono_netreg_status status)
 | 
						|
    BINDER_INTERNAL;
 | 
						|
 | 
						|
#endif /* BINDER_NETREG_H */
 | 
						|
 | 
						|
/*
 | 
						|
 * Local Variables:
 | 
						|
 * mode: C
 | 
						|
 * c-basic-offset: 4
 | 
						|
 * indent-tabs-mode: nil
 | 
						|
 * End:
 | 
						|
 */
 |