2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 using System.Runtime.InteropServices;
21 /// Partial Interop Class
23 internal static partial class Interop
28 internal static partial class Sim
30 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_icc_id")]
31 internal static extern Telephony.TelephonyError GetIccId(IntPtr handle, out string iccId);
33 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_operator")]
34 internal static extern Telephony.TelephonyError GetOperator(IntPtr handle, out string simOperator);
36 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_msin")]
37 internal static extern Telephony.TelephonyError GetMsin(IntPtr handle, out string msin);
39 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_spn")]
40 internal static extern Telephony.TelephonyError GetSpn(IntPtr handle, out string spn);
42 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_is_changed")]
43 internal static extern Telephony.TelephonyError IsChanged(IntPtr handle, out int isChanged);
45 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_state")]
46 internal static extern Telephony.TelephonyError GetState(IntPtr handle, out Tizen.Telephony.Sim.State simState);
48 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_application_list")]
49 internal static extern Telephony.TelephonyError GetApplicationList(IntPtr handle, out uint appList);
51 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_subscriber_number")]
52 internal static extern Telephony.TelephonyError GetSubscriberNumber(IntPtr handle, out string subscriberNumber);
54 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_subscriber_id")]
55 internal static extern Telephony.TelephonyError GetSubscriberId(IntPtr handle, out string subscriberId);
57 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_lock_state")]
58 internal static extern Telephony.TelephonyError GetLockState(IntPtr handle, out Tizen.Telephony.Sim.LockState lockState);
60 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_group_id1")]
61 internal static extern Telephony.TelephonyError GetGroupId1(IntPtr handle, out string gid1);
63 [DllImport(Libraries.Telephony, EntryPoint = "telephony_sim_get_call_forwarding_indicator_state")]
64 internal static extern Telephony.TelephonyError GetCallForwardingIndicatorState(IntPtr handle, out bool state);