diff --git a/src/frameworks/CMakeLists.txt b/src/frameworks/CMakeLists.txt index 861ea0263b..f9d6c353cb 100644 --- a/src/frameworks/CMakeLists.txt +++ b/src/frameworks/CMakeLists.txt @@ -22,6 +22,7 @@ add_subdirectory(CoreMIDI) add_subdirectory(CoreMedia) add_subdirectory(CoreMediaIO) add_subdirectory(CoreServices) +add_subdirectory(CoreTelephony) add_subdirectory(CoreVideo) add_subdirectory(CoreWLAN) add_subdirectory(CryptoTokenKit) diff --git a/src/frameworks/CoreTelephony/CMakeLists.txt b/src/frameworks/CoreTelephony/CMakeLists.txt new file mode 100644 index 0000000000..a4f512eaa8 --- /dev/null +++ b/src/frameworks/CoreTelephony/CMakeLists.txt @@ -0,0 +1,99 @@ +project(CoreTelephony) + +set(DYLIB_COMPAT_VERSION "1.0.0") +set(DYLIB_CURRENT_VERSION "0.0.0") + +add_framework(CoreTelephony + FAT + CURRENT_VERSION + VERSION "A" + + SOURCES + src/CoreTelephony.m + src/CTIMSRegistrationStatus.m + src/CTAsciiAddress.m + src/CTRadioAccessTechnology.m + src/CTBundle.m + src/CTMessage.m + src/CTSimLabel.m + src/CTPhoneNumber.m + src/CTSupportedMaxDataRates.m + src/CTRegistrationDisplayStatus.m + src/CTCallCapabilities.m + src/CTMmsRegistrationFailureInfoType.m + src/CTDataStatus.m + src/CTMessageCenter.m + src/CTMmsEncoder.m + src/CTEncryptionStatusInfo.m + src/CTMessagePart.m + src/CTIMSRegistrationTransportInfo.m + src/CTCallCenter.m + src/CTPhoneBookEntry.m + src/CTSuppServicesNotificationData.m + src/CTCallForwardingValue.m + src/CTMessageStatus.m + src/CTVoicemailInfoType.m + src/CTTelephonyNetworkInfo.m + src/CTEmailAddress.m + src/CTEmergencyMode.m + src/CTMobileEquipmentInfo.m + src/CTMobileEquipmentInfoList.m + src/CTSubscriberInfo.m + src/CTEmergencyModeResult.m + src/CTXPCServiceSubscriptionContext.m + src/CTXPCServiceSubscriptionInfo.m + src/CTXPCSimLessContextInfo.m + src/CTXPCSimLessContexts.m + src/CTXPCContextInfo.m + src/CTXPCContexts.m + src/CTDataSettings.m + src/CTAudioCodecInfo.m + src/CTCarrier.m + src/CTSignalStrengthInfo.m + src/CTSignalStrengthMeasurements.m + src/CTCellInfo.m + src/CTCall.m + src/CTCellIdInfo.m + src/CTBinarySMS.m + src/CTDataConnectionAvailabilityStatus.m + src/CTDataUsage.m + src/CTDataUsed.m + src/CTAppDataUsage.m + src/CTPerAppDataUsage.m + src/CTDeviceDataUsage.m + src/CTServiceDescriptor.m + src/CTServiceDescriptorContainer.m + src/CTCellularPlanProvisioningRequest.m + src/CTVoiceLinkQualityMetric.m + src/CTEnhancedLinkQualityMetric.m + src/CTEnhancedDataLinkQualityMetric.m + src/CoreTelephonyClientRemoteAsyncProxy.m + src/CTNetworkList.m + src/CoreTelephonyClientDelegateProxy.m + src/CTXPCError.m + src/CTNetwork.m + src/CTDataConnectionStatus.m + src/CTPNRDataType.m + src/CTPNRRequestType.m + src/CTPNRRequestSentInfo.m + src/CTPNRContextInfo.m + src/MuxNotificationSink.m + src/CoreTelephonyClientMux.m + src/CTSubscriberAlgorithm.m + src/CTSubscriberAlgorithmEAPSIM.m + src/CTSubscriberAlgorithmEAPAKA.m + src/CTSubscriberAuthRequest.m + src/CTSubscriberAuthResult.m + src/CoreTelephonyClient.m + src/CTNetworkSelectionInfo.m + src/CTCellularPlanManagerCameraScanAction.m + src/CTSubscriberAuthDataHolder.m + src/CTPhoneNumberInfo.m + src/CTPriVersion.m + src/CTSMSDataType.m + + DEPENDENCIES + system + objc + Foundation +) diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTAppDataUsage.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTAppDataUsage.h new file mode 100644 index 0000000000..d59cb1dc99 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTAppDataUsage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTAppDataUsage : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTAsciiAddress.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTAsciiAddress.h new file mode 100644 index 0000000000..f454beedc7 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTAsciiAddress.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTAsciiAddress : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTAudioCodecInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTAudioCodecInfo.h new file mode 100644 index 0000000000..0c56e68745 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTAudioCodecInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTAudioCodecInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTBinarySMS.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTBinarySMS.h new file mode 100644 index 0000000000..5d60d8bd9d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTBinarySMS.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTBinarySMS : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTBundle.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTBundle.h new file mode 100644 index 0000000000..03242a334a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTBundle.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTBundle : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCall.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCall.h new file mode 100644 index 0000000000..f114d0dff7 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCall.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCall : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCapabilities.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCapabilities.h new file mode 100644 index 0000000000..75c6d5f7fa --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCapabilities.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCallCapabilities : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCenter.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCenter.h new file mode 100644 index 0000000000..1a44f35b45 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCenter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCallCenter : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallForwardingValue.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallForwardingValue.h new file mode 100644 index 0000000000..c156625423 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCallForwardingValue.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCallForwardingValue : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCarrier.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCarrier.h new file mode 100644 index 0000000000..882013c541 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCarrier.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCarrier : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellIdInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellIdInfo.h new file mode 100644 index 0000000000..6ffcab28ee --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellIdInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCellIdInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellInfo.h new file mode 100644 index 0000000000..97e02a0968 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCellInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanManagerCameraScanAction.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanManagerCameraScanAction.h new file mode 100644 index 0000000000..f8b06852ef --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanManagerCameraScanAction.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCellularPlanManagerCameraScanAction : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanProvisioningRequest.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanProvisioningRequest.h new file mode 100644 index 0000000000..c8e16392b8 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanProvisioningRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTCellularPlanProvisioningRequest : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionAvailabilityStatus.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionAvailabilityStatus.h new file mode 100644 index 0000000000..24e239317d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionAvailabilityStatus.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDataConnectionAvailabilityStatus : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionStatus.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionStatus.h new file mode 100644 index 0000000000..1e2cd674f6 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionStatus.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDataConnectionStatus : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataSettings.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataSettings.h new file mode 100644 index 0000000000..b73905f9c3 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataSettings.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDataSettings : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataStatus.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataStatus.h new file mode 100644 index 0000000000..54bf5e6834 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataStatus.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDataStatus : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsage.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsage.h new file mode 100644 index 0000000000..c070fdfebd --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDataUsage : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsed.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsed.h new file mode 100644 index 0000000000..a3085e7ef0 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsed.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDataUsed : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTDeviceDataUsage.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDeviceDataUsage.h new file mode 100644 index 0000000000..614138bb68 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTDeviceDataUsage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTDeviceDataUsage : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmailAddress.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmailAddress.h new file mode 100644 index 0000000000..d34bca5576 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmailAddress.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTEmailAddress : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyMode.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyMode.h new file mode 100644 index 0000000000..778f4ce0c4 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyMode.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTEmergencyMode : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyModeResult.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyModeResult.h new file mode 100644 index 0000000000..ebe9114333 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyModeResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTEmergencyModeResult : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTEncryptionStatusInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEncryptionStatusInfo.h new file mode 100644 index 0000000000..d49198e9ca --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEncryptionStatusInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTEncryptionStatusInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedDataLinkQualityMetric.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedDataLinkQualityMetric.h new file mode 100644 index 0000000000..805c0917ee --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedDataLinkQualityMetric.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTEnhancedDataLinkQualityMetric : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedLinkQualityMetric.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedLinkQualityMetric.h new file mode 100644 index 0000000000..481aee7b10 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedLinkQualityMetric.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTEnhancedLinkQualityMetric : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationStatus.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationStatus.h new file mode 100644 index 0000000000..4872e6f407 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationStatus.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTIMSRegistrationStatus : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationTransportInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationTransportInfo.h new file mode 100644 index 0000000000..850e682678 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationTransportInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTIMSRegistrationTransportInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessage.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessage.h new file mode 100644 index 0000000000..94348ece88 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMessage : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageAddress.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageAddress.h new file mode 100644 index 0000000000..0cbb7be032 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageAddress.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTMessageAddress + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageCenter.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageCenter.h new file mode 100644 index 0000000000..0abd067389 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageCenter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMessageCenter : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessagePart.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessagePart.h new file mode 100644 index 0000000000..982113d2a5 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessagePart.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMessagePart : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageStatus.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageStatus.h new file mode 100644 index 0000000000..f1e1c98173 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageStatus.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMessageStatus : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsEncoder.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsEncoder.h new file mode 100644 index 0000000000..d655c804f5 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsEncoder.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMmsEncoder : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsRegistrationFailureInfoType.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsRegistrationFailureInfoType.h new file mode 100644 index 0000000000..385dfbed0a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsRegistrationFailureInfoType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMmsRegistrationFailureInfoType : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfo.h new file mode 100644 index 0000000000..976c449178 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMobileEquipmentInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfoList.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfoList.h new file mode 100644 index 0000000000..039bc16c1a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfoList.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTMobileEquipmentInfoList : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetwork.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetwork.h new file mode 100644 index 0000000000..bf16277812 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetwork.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTNetwork : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkList.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkList.h new file mode 100644 index 0000000000..5fdb0f478c --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkList.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTNetworkList : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkSelectionInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkSelectionInfo.h new file mode 100644 index 0000000000..f6a7d2fdc0 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkSelectionInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTNetworkSelectionInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRContextInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRContextInfo.h new file mode 100644 index 0000000000..a7a039de79 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRContextInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPNRContextInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRDataType.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRDataType.h new file mode 100644 index 0000000000..6d8b5a75ba --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRDataType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPNRDataType : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestSentInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestSentInfo.h new file mode 100644 index 0000000000..f4687ef396 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestSentInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPNRRequestSentInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestType.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestType.h new file mode 100644 index 0000000000..1c4212f53e --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPNRRequestType : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPerAppDataUsage.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPerAppDataUsage.h new file mode 100644 index 0000000000..e1fe2e69a3 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPerAppDataUsage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPerAppDataUsage : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneBookEntry.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneBookEntry.h new file mode 100644 index 0000000000..21c4891f17 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneBookEntry.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPhoneBookEntry : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumber.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumber.h new file mode 100644 index 0000000000..1c1aafbf35 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumber.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPhoneNumber : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumberInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumberInfo.h new file mode 100644 index 0000000000..0a711277c8 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumberInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPhoneNumberInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTPriVersion.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPriVersion.h new file mode 100644 index 0000000000..fdb168ee46 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTPriVersion.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTPriVersion : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTRadioAccessTechnology.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTRadioAccessTechnology.h new file mode 100644 index 0000000000..a16d8bee82 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTRadioAccessTechnology.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTRadioAccessTechnology : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTRegistrationDisplayStatus.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTRegistrationDisplayStatus.h new file mode 100644 index 0000000000..3e5ddc654a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTRegistrationDisplayStatus.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTRegistrationDisplayStatus : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSMSDataType.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSMSDataType.h new file mode 100644 index 0000000000..04c44315e6 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSMSDataType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSMSDataType : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptor.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptor.h new file mode 100644 index 0000000000..2638a19f14 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptor.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTServiceDescriptor : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptorContainer.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptorContainer.h new file mode 100644 index 0000000000..0aecf43b2a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptorContainer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTServiceDescriptorContainer : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthInfo.h new file mode 100644 index 0000000000..6348adbb0d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSignalStrengthInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthMeasurements.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthMeasurements.h new file mode 100644 index 0000000000..9163f9a368 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthMeasurements.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSignalStrengthMeasurements : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSimLabel.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSimLabel.h new file mode 100644 index 0000000000..52ed9ad40d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSimLabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSimLabel : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithm.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithm.h new file mode 100644 index 0000000000..3338e78929 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithm.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberAlgorithm : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPAKA.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPAKA.h new file mode 100644 index 0000000000..275a076204 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPAKA.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberAlgorithmEAPAKA : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPSIM.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPSIM.h new file mode 100644 index 0000000000..31fcc2164a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPSIM.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberAlgorithmEAPSIM : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthDataHolder.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthDataHolder.h new file mode 100644 index 0000000000..60618e8c99 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthDataHolder.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberAuthDataHolder : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthRequest.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthRequest.h new file mode 100644 index 0000000000..85efdd0630 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberAuthRequest : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthResult.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthResult.h new file mode 100644 index 0000000000..8dc2ed627f --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberAuthResult : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberInfo.h new file mode 100644 index 0000000000..1fb9caaa91 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSubscriberInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSuppServicesNotificationData.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSuppServicesNotificationData.h new file mode 100644 index 0000000000..366ae0400c --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSuppServicesNotificationData.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSuppServicesNotificationData : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTSupportedMaxDataRates.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSupportedMaxDataRates.h new file mode 100644 index 0000000000..03ad9c4175 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTSupportedMaxDataRates.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTSupportedMaxDataRates : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTTelephonyNetworkInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTTelephonyNetworkInfo.h new file mode 100644 index 0000000000..960259242c --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTTelephonyNetworkInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTTelephonyNetworkInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTVoiceLinkQualityMetric.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTVoiceLinkQualityMetric.h new file mode 100644 index 0000000000..44b520e3fb --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTVoiceLinkQualityMetric.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTVoiceLinkQualityMetric : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTVoicemailInfoType.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTVoicemailInfoType.h new file mode 100644 index 0000000000..a8818afe8b --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTVoicemailInfoType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTVoicemailInfoType : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContextInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContextInfo.h new file mode 100644 index 0000000000..fe93c15eac --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContextInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCContextInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContexts.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContexts.h new file mode 100644 index 0000000000..a1b937b43e --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContexts.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCContexts : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCError.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCError.h new file mode 100644 index 0000000000..6fb03df88d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCError.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCError : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceAppDataUsageInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceAppDataUsageInterface.h new file mode 100644 index 0000000000..15cb929920 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceAppDataUsageInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceAppDataUsageInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceBaseInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceBaseInterface.h new file mode 100644 index 0000000000..3137b77c3a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceBaseInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceBaseInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCallInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCallInterface.h new file mode 100644 index 0000000000..40592fdb2a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCallInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCallInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCapabilitiesInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCapabilitiesInterface.h new file mode 100644 index 0000000000..2dcbb4df4b --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCapabilitiesInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCapabilitiesInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierBundleInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierBundleInterface.h new file mode 100644 index 0000000000..6d87459242 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierBundleInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCarrierBundleInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierServicesInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierServicesInterface.h new file mode 100644 index 0000000000..f2b57375ba --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierServicesInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCarrierServicesInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellMonitorInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellMonitorInterface.h new file mode 100644 index 0000000000..69596f45f1 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellMonitorInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCellMonitorInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularPlanManagerInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularPlanManagerInterface.h new file mode 100644 index 0000000000..b6ffc16054 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularPlanManagerInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCellularPlanManagerInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularUsagePolicyInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularUsagePolicyInterface.h new file mode 100644 index 0000000000..27d521b321 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularUsagePolicyInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceCellularUsagePolicyInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDataInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDataInterface.h new file mode 100644 index 0000000000..c85279622c --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDataInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceDataInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDeviceManagementInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDeviceManagementInterface.h new file mode 100644 index 0000000000..c78b03492d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDeviceManagementInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceDeviceManagementInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceEmergencyInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceEmergencyInterface.h new file mode 100644 index 0000000000..eced18e4e1 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceEmergencyInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceEmergencyInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceFTInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceFTInterface.h new file mode 100644 index 0000000000..6ac2b88775 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceFTInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceFTInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceInterface.h new file mode 100644 index 0000000000..11ea4240c9 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePNRInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePNRInterface.h new file mode 100644 index 0000000000..10ab949168 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePNRInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServicePNRInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePhonebookInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePhonebookInterface.h new file mode 100644 index 0000000000..18264bbdb2 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePhonebookInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServicePhonebookInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePostponementInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePostponementInterface.h new file mode 100644 index 0000000000..b0cb1e95f0 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePostponementInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServicePostponementInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRadioInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRadioInterface.h new file mode 100644 index 0000000000..fcf133d971 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRadioInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceRadioInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRegistrationInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRegistrationInterface.h new file mode 100644 index 0000000000..744ad4558c --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRegistrationInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceRegistrationInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSMSInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSMSInterface.h new file mode 100644 index 0000000000..fb2a37caeb --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSMSInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceSMSInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriberInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriberInterface.h new file mode 100644 index 0000000000..0e3a63f99d --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriberInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceSubscriberInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionContext.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionContext.h new file mode 100644 index 0000000000..b302e5aa09 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCServiceSubscriptionContext : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionInfo.h new file mode 100644 index 0000000000..30e294df05 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCServiceSubscriptionInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSuppServicesInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSuppServicesInterface.h new file mode 100644 index 0000000000..052ea2aaa2 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSuppServicesInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceSuppServicesInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceVoicemailInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceVoicemailInterface.h new file mode 100644 index 0000000000..febd811b01 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceVoicemailInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CTXPCServiceVoicemailInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContextInfo.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContextInfo.h new file mode 100644 index 0000000000..b67647d5ac --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContextInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCSimLessContextInfo : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContexts.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContexts.h new file mode 100644 index 0000000000..d562665652 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContexts.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CTXPCSimLessContexts : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephony.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephony.h new file mode 100644 index 0000000000..74a3990c98 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephony.h @@ -0,0 +1,859 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + + +#ifndef _CoreTelephony_H_ +#define _CoreTelephony_H_ + +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +void* CTCallAddressBlocked(void); +void* CTCallAnswer(void); +void* CTCallAnswerEndingActive(void); +void* CTCallAnswerEndingActiveWithSourceIdentifier(void); +void* CTCallAnswerEndingHeld(void); +void* CTCallAnswerWithOptions(void); +void* CTCallAnswerWithSourceIdentifier(void); +void* CTCallCopyAddress(void); +void* CTCallCopyCountryCode(void); +void* CTCallCopyISOCountryCode(void); +void* CTCallCopyName(void); +void* CTCallCopyNetworkCode(void); +void* CTCallCopyUUID(void); +void* CTCallCopyUniqueStringID(void); +void* CTCallCreateCallRef(void); +void* CTCallCreateFromSerializedData(void); +void* CTCallDial(void); +void* CTCallDialAny(void); +void* CTCallDialEmergency(void); +void* CTCallDialService(void); +void* CTCallDialVoicemail(void); +void* CTCallDialWithAssist(void); +void* CTCallDialWithID(void); +void* CTCallDialWithIDAndSourceIdentifier(void); +void* CTCallDialWithOptions(void); +void* CTCallDialWithSourceIdentifier(void); +void* CTCallDidDeviceOriginateEnd(void); +void* CTCallDisconnect(void); +void* CTCallDisconnectWithCauseCode(void); +void* CTCallEndVideoConference(void); +void* CTCallGetCallSubType(void); +void* CTCallGetCallType(void); +void* CTCallGetCauseCode(void); +void* CTCallGetCauseCodeString(void); +void* CTCallGetDuration(void); +void* CTCallGetEmergencyStatus(void); +void* CTCallGetMultiPartyCallCountMax(void); +void* CTCallGetStartTime(void); +void* CTCallGetStatus(void); +void* CTCallGetTypeID(void); +void* CTCallHold(void); +void* CTCallIsAlerting(void); +void* CTCallIsCallHandoffPossible(void); +void* CTCallIsConferenced(void); +void* CTCallIsOutgoing(void); +void* CTCallIsToVoicemail(void); +void* CTCallIsWaiting(void); +void* CTCallJoinConference(void); +void* CTCallLeaveConference(void); +void* CTCallListDisconnect(void); +void* CTCallListDisconnectAll(void); +void* CTCallMediaStatusIsActive(void); +void* CTCallPhoneNumberIsMmiOrUssd(void); +void* CTCallPullCallFromOtherDevice(void); +void* CTCallResume(void); +void* CTCallSetCallEndTime(void); +void* CTCallSetCallInfo(void); +void* CTCallSetCallStartTime(void); +void* CTCallSetCallStatus(void); +void* CTCallShouldPlayAudioTone(void); +void* CTCallShouldSetupAudioInterruption(void); +void* CTCallStartVideoConference(void); +void* CTCallSwap(void); +void* CTCallSwitchCallSource(void); +void* CTCallSwitchCallSourceAll(void); +void* CTCellularDataPlanAccountUpdated(void); +void* CTCellularDataPlanActivationFailed(void); +void* CTCellularDataPlanCopyAccountUrlString(void); +void* CTCellularDataPlanCopyDeviceInfo(void); +void* CTCellularDataPlanGetIsEnabled(void); +void* CTCellularDataPlanSetIsEnabled(void); +void* CTCellularDataPlanSetWebsheetVisibility(void); +void* CTCopyCallManagementState(void); +void* CTCopyCurrentCalls(void); +void* CTCopyCurrentCallsWithTypes(void); +void* CTCreateCallInfoForHandoffCall(void); +void* CTDTMFCancelHardPause(void); +void* CTDTMFCopyHardPauseDigits(void); +void* CTDTMFPlayStart(void); +void* CTDTMFPlayStop(void); +void* CTDTMFSendDigitsNow(void); +void* CTDataRateAsString(void); +void* CTEmergencyModeTypeAsString(void); +void* CTEnhancedLQMIndicationTypeAsString(void); +void* CTEsimCapabilityAsString(void); +void* CTGetCurrentCallCount(void); +void* CTGetCurrentCallCountWithTypes(void); +void* CTGetEmergencyWiFiConfig(void); +void* CTGetSignalStrength(void); +void* CTIndicatorsCopyVoicemailStatus(void); +void* CTIndicatorsGetSignalStrength(void); +void* CTNetworkSelectionModeAsString(void); +void* CTNetworkSelectionStateAsString(void); +void* CTRegistrationAutomaticallySelectNetwork(void); +void* CTRegistrationCellularDataPlanAccountUpdated(void); +void* CTRegistrationCopyAbbreviatedOperatorName(void); +void* CTRegistrationCopyDataStatus(void); +void* CTRegistrationCopyISOCountryCodeForMobileCountryCode(void); +void* CTRegistrationCopyLocalizedOperatorName(void); +void* CTRegistrationCopyManualNetworkSelection(void); +void* CTRegistrationCopyOperatorName(void); +void* CTRegistrationCopySupportedDataRates(void); +void* CTRegistrationDataCounterGetLastResetTime(void); +void* CTRegistrationGetCDMAInternationalRoaming(void); +void* CTRegistrationGetCurrentMaxAllowedDataRate(void); +void* CTRegistrationGetDataAttached(void); +void* CTRegistrationGetDataContextActive(void); +void* CTRegistrationGetDataIndicator(void); +void* CTRegistrationGetEULocalBreakOutEnabled(void); +void* CTRegistrationGetEmergencyCallBackMode(void); +void* CTRegistrationGetInternationalDataAccessStatus(void); +void* CTRegistrationGetNetworkSelectionMode(void); +void* CTRegistrationGetNetworkSelectionState(void); +void* CTRegistrationGetStatus(void); +void* CTRegistrationIsCDMAInternationalRoamingSettingAllowed(void); +void* CTRegistrationIsEULocalBreakOutAvailable(void); +void* CTRegistrationIsInE911OverLTEMode(void); +void* CTRegistrationManuallySelectNetwork(void); +void* CTRegistrationNetworkSelectionMenuAvailable(void); +void* CTRegistrationRequestNetworkList(void); +void* CTRegistrationSetCDMAInternationalRoaming(void); +void* CTRegistrationSetDataContextActive(void); +void* CTRegistrationSetEULocalBreakOutEnabled(void); +void* CTRegistrationSetInternationalDataAccessStatus(void); +void* CTSIMSupportCopyMobileSubscriberCountryCode(void); +void* CTSIMSupportCopyMobileSubscriberIdentity(void); +void* CTSIMSupportCopyMobileSubscriberNetworkCode(void); +void* CTSIMSupportGetRemainingPINAttempts(void); +void* CTSIMSupportGetRemainingPUKAttempts(void); +void* CTSIMSupportGetSIMStatus(void); +void* CTSIMSupportPINUnlock(void); +void* CTSIMSupportPUKUnlock(void); +void* CTServerConnectionDualSimCapabilityAsString(void); +void* CTSettingCopyDualIPBringUp(void); +void* CTSettingCopyEPDGAddress(void); +void* CTSettingCopyEffectiveSimInfo(void); +void* CTSettingCopyFakePrimaryDNSKey(void); +void* CTSettingCopyFakeSecondaryDNSKey(void); +void* CTSettingCopyMyPhoneNumber(void); +void* CTSettingCopyMyPhoneNumberExtended(void); +void* CTSettingCopyPCSCFAddress(void); +void* CTSettingCopyShowVoLTEStatusIndicator(void); +void* CTSettingCopyVerifyAPN(void); +void* CTSettingCopyVerifyCarrierBundles(void); +void* CTSettingCopyWiFiCallingInCallHandover(void); +void* CTSettingRequest(void); +void* CTSettingSave(void); +void* CTSettingSetDualIPBringUp(void); +void* CTSettingSetEPDGAddress(void); +void* CTSettingSetFakePrimaryDNSKey(void); +void* CTSettingSetFakeSecondaryDNSKey(void); +void* CTSettingSetIMSIOverride(void); +void* CTSettingSetPCSCFAddress(void); +void* CTSettingSetShowVoLTEStatusIndicator(void); +void* CTSettingSetVerifyAPN(void); +void* CTSettingSetVerifyCarrierBundles(void); +void* CTSettingSetWiFiCallingInCallHandover(void); +void* CTSettingsCopyiWlanGatewayAddress(void); +void* CTStartManualOTASP(void); +void* CTStartOTASP(void); +void* CTSubscriptionSlotAsString(void); +void* CTSubscriptionSlotAsUUID(void); +void* CTSweetgumConvertDataUnits(void); +void* CTSweetgumDataUnitsAsString(void); +void* CTSweetgumDeviceTypeAsString(void); +void* CTSweetgumPlanCategoryAsString(void); +void* CTSweetgumPlanPurchaseStatusAsString(void); +void* CTSweetgumPlanStatusAsString(void); +void* CTSweetgumRegistrationStatusAsString(void); +void* CTTelephonyCenterAddObserver(void); +void* CTTelephonyCenterGetDefault(void); +void* CTTelephonyCenterGetRunLoop(void); +void* CTTelephonyCenterRemoveEveryObserver(void); +void* CTTelephonyCenterRemoveObserver(void); +void* CTTelephonyCenterSendBarrier(void); +void* CTTelephonyCenterSetDefaultDispatchQueue(void); +void* CTTelephonyCenterSetDefaultDispatchQueuePermanently(void); +void* CTTelephonyCenterSetDefaultRunloop(void); +void* CTTelephonyCenterSetDefaultRunloopPermanently(void); +void* CTUSSDSessionCancel(void); +void* CTUSSDSessionSendResponse(void); +void* ConvertAccountQueryTypesToMask(void); +void* GetCarrierEntitlementNameById(void); +void* GetCarrierEntitlementResultString(void); +void* HexToString(void); +void* VMCopyDictionaryForNotificationString(void); +void* _CFDataCreateFromHexString(void); +void* _CFStringCopyMCCMNCFromIMSI(void); +void* _CFStringCreateHexFromBinary(void); +void* _CFStringGetMobileUser(void); +void* _CFStringGetOrCreateCString(void); +void* _CFStringGetWirelessUser(void); +void* _CFStringHasPrefixCaseInsensitive(void); +void* _CTCallCopyCurrentCalls(void); +void* _CTCallHistoryStoreCallTimersGetAll(void); +void* _CTCallHistoryStoreGetCountOfMissedCallSince(void); +void* _CTCallHistoryStoreGetCountOfMissedCallWithTypesSince(void); +void* _CTServerConnectionAddIdentifierException(void); +void* _CTServerConnectionAddToRunLoop(void); +void* _CTServerConnectionAddVictimFreq(void); +void* _CTServerConnectionAudioSampleRateSwitchDidComplete(void); +void* _CTServerConnectionAutomaticallySelectNetwork(void); +void* _CTServerConnectionBlockBBFreqReport(void); +void* _CTServerConnectionCanSetCapability(void); +void* _CTServerConnectionCanSetCapabilityExtended(void); +void* _CTServerConnectionCarrierSettingsCopyValue(void); +void* _CTServerConnectionCarrierSettingsCopyValueForPreferredDataSIM(void); +void* _CTServerConnectionCellMonitorCopyCellInfo(void); +void* _CTServerConnectionCellMonitorGetCellCount(void); +void* _CTServerConnectionCellMonitorGetCellInfo(void); +void* _CTServerConnectionCellMonitorGetUmtsCellCount(void); +void* _CTServerConnectionCellMonitorGetUmtsCellInfo(void); +void* _CTServerConnectionCellMonitorStart(void); +void* _CTServerConnectionCellMonitorStop(void); +void* _CTServerConnectionCellularDataPlanAccountUpdated(void); +void* _CTServerConnectionCellularDataPlanActivationFailed(void); +void* _CTServerConnectionCleanBasebandLogs(void); +void* _CTServerConnectionClearVictimFreq(void); +void* _CTServerConnectionConfigAndCopyTxController(void); +void* _CTServerConnectionConfigMaxRadioPower(void); +void* _CTServerConnectionConfigMaxTransmitPower(void); +void* _CTServerConnectionConfigureLogging(void); +void* _CTServerConnectionCopyAbbreviatedOperatorName(void); +void* _CTServerConnectionCopyAccountInformation(void); +void* _CTServerConnectionCopyActiveAndSupportedBands(void); +void* _CTServerConnectionCopyAudioVocoderInfo(void); +void* _CTServerConnectionCopyBandInfo(void); +void* _CTServerConnectionCopyBasebandSettings(void); +void* _CTServerConnectionCopyBasebandThumbprint(void); +void* _CTServerConnectionCopyCallManagementState(void); +void* _CTServerConnectionCopyCarrierBundleInfoArray(void); +void* _CTServerConnectionCopyCellBroadcastAlertTypes(void); +void* _CTServerConnectionCopyCellularTransmitState(void); +void* _CTServerConnectionCopyCellularUsagePolicy(void); +void* _CTServerConnectionCopyCellularUsageWorkspaceInfo(void); +void* _CTServerConnectionCopyCompanionPhoneNumber(void); +void* _CTServerConnectionCopyCountryCode(void); +void* _CTServerConnectionCopyCurrentMTU(void); +void* _CTServerConnectionCopyDataActivityAssertionProcesses(void); +void* _CTServerConnectionCopyDataStatus(void); +void* _CTServerConnectionCopyDataUsageForSubscriber(void); +void* _CTServerConnectionCopyDualSimCapability(void); +void* _CTServerConnectionCopyEffectiveSimInfo(void); +void* _CTServerConnectionCopyFirmwareBaselineVersion(void); +void* _CTServerConnectionCopyFirmwareManifestData(void); +void* _CTServerConnectionCopyFirmwareManifestStatus(void); +void* _CTServerConnectionCopyFirmwareNonce(void); +void* _CTServerConnectionCopyFirmwarePreflightInfo(void); +void* _CTServerConnectionCopyFirmwareSecurityInfo(void); +void* _CTServerConnectionCopyFirmwareUpdateInfo(void); +void* _CTServerConnectionCopyFirmwareVersion(void); +void* _CTServerConnectionCopyISOForMCC(void); +void* _CTServerConnectionCopyLastKnownCountryCode(void); +void* _CTServerConnectionCopyLastKnownMobileCountryCode(void); +void* _CTServerConnectionCopyLastKnownMobileSubscriberCountryCode(void); +void* _CTServerConnectionCopyListVictimFreq(void); +void* _CTServerConnectionCopyLocalizedOperatorName(void); +void* _CTServerConnectionCopyManualNetworkSelection(void); +void* _CTServerConnectionCopyMobileCountryCode(void); +void* _CTServerConnectionCopyMobileEquipmentInfo(void); +void* _CTServerConnectionCopyMobileNetworkCode(void); +void* _CTServerConnectionCopyMobileSubscriberAndIsoCountryCodes(void); +void* _CTServerConnectionCopyMobileSubscriberCountryCode(void); +void* _CTServerConnectionCopyMobileSubscriberHomeCountryList(void); +void* _CTServerConnectionCopyMobileSubscriberIdentity(void); +void* _CTServerConnectionCopyMobileSubscriberNetworkCode(void); +void* _CTServerConnectionCopyNetworkCode(void); +void* _CTServerConnectionCopyNetworkList(void); +void* _CTServerConnectionCopyNextCall(void); +void* _CTServerConnectionCopyNumericNetworkCode(void); +void* _CTServerConnectionCopyOperatorName(void); +void* _CTServerConnectionCopyPacketContextInterfaceName(void); +void* _CTServerConnectionCopyPacketContextInterfaceNameByServiceType(void); +void* _CTServerConnectionCopyPhoneBookEntry(void); +void* _CTServerConnectionCopyPhoneNumber(void); +void* _CTServerConnectionCopyPhoneNumberSignature(void); +void* _CTServerConnectionCopyPhoneServiceDeviceList(void); +void* _CTServerConnectionCopyPostponementStatus(void); +void* _CTServerConnectionCopyProviderNameUsingCarrierBundle(void); +void* _CTServerConnectionCopyRegistrationInfo(void); +void* _CTServerConnectionCopyReliableNetworkFallbackSettings(void); +void* _CTServerConnectionCopySIMIdentity(void); +void* _CTServerConnectionCopySIMToolkitList(void); +void* _CTServerConnectionCopySIMToolkitMenu(void); +void* _CTServerConnectionCopyServiceCenterAddressValue(void); +void* _CTServerConnectionCopyServingPLMN(void); +void* _CTServerConnectionCopyStartDateOfCellularDataUsageRecords(void); +void* _CTServerConnectionCopySupportedDataRates(void); +void* _CTServerConnectionCopySystemCapabilities(void); +void* _CTServerConnectionCopyTraceProperty(void); +void* _CTServerConnectionCopyUSSDString(void); +void* _CTServerConnectionCopyUsageAlertParameters(void); +void* _CTServerConnectionCopyVoiceCarrierBundleValue(void); +void* _CTServerConnectionCopyVoiceMailInfo(void); +void* _CTServerConnectionCreate(void); +void* _CTServerConnectionCreateAndLaunchWithIdentifier(void); +void* _CTServerConnectionCreateEncryptedIdentity(void); +void* _CTServerConnectionCreateOnRunLoop(void); +void* _CTServerConnectionCreateOnTargetQueue(void); +void* _CTServerConnectionCreateWithIdentifier(void); +void* _CTServerConnectionDataActivationPopupAssertionCreate(void); +void* _CTServerConnectionDeviceManagementUpdate(void); +void* _CTServerConnectionDisablePCMChannel(void); +void* _CTServerConnectionDisableRegistration(void); +void* _CTServerConnectionDoCSIPropertyOperation(void); +void* _CTServerConnectionDoModuleOperation(void); +void* _CTServerConnectionDormancySuspendAssertionCreate(void); +void* _CTServerConnectionDormancySuspendAssertionCreateWithExpirationCB(void); +void* _CTServerConnectionDropIPPackets(void); +void* _CTServerConnectionDumpBasebandState(void); +void* _CTServerConnectionDumpMemory(void); +void* _CTServerConnectionDumpState(void); +void* _CTServerConnectionEchoCancelationAndNoiseReduction(void); +void* _CTServerConnectionEnableEmergencyCallBackMode(void); +void* _CTServerConnectionEnableHAC(void); +void* _CTServerConnectionEnableMediaToDownlink(void); +void* _CTServerConnectionEnablePCMChannel(void); +void* _CTServerConnectionEnableRegistration(void); +void* _CTServerConnectionEnableRemoteDiagnostics(void); +void* _CTServerConnectionEnableVoicePrivacy(void); +void* _CTServerConnectionEntitlementsClearSecondaryIccids(void); +void* _CTServerConnectionEntitlementsGetPreferredRoamingNetworks(void); +void* _CTServerConnectionEntitlementsGetSIMStatus(void); +void* _CTServerConnectionEntitlementsSetPreferredRoamingNetworks(void); +void* _CTServerConnectionEntitlementsSetSecondaryIccids(void); +void* _CTServerConnectionEntitlementsSignUpSIMService(void); +void* _CTServerConnectionEraseAllUserProfiles(void); +void* _CTServerConnectionEraseBasebandSettings(void); +void* _CTServerConnectionEraseCellularDataUsageRecords(void); +void* _CTServerConnectionEraseCellularDataUsageRecordsEx(void); +void* _CTServerConnectionEraseCommCentersPreferences(void); +void* _CTServerConnectionEraseNetworkSettings(void); +void* _CTServerConnectionEvaluateMobileSubscriberIdentity(void); +void* _CTServerConnectionExecuteCommand(void); +void* _CTServerConnectionFetchNetworkList(void); +void* _CTServerConnectionFetchPhonebook(void); +void* _CTServerConnectionFetchTimeFromNetwork(void); +void* _CTServerConnectionGetAPNConfiguration(void); +void* _CTServerConnectionGetActiveWirelessTechnology(void); +void* _CTServerConnectionGetAllowedRadioMode(void); +void* _CTServerConnectionGetAttachAPNSettings(void); +void* _CTServerConnectionGetAudioLoggingEnabled(void); +void* _CTServerConnectionGetCDMAInternationalRoaming(void); +void* _CTServerConnectionGetCDRXWithLTEState(void); +void* _CTServerConnectionGetCapabilityStatus(void); +void* _CTServerConnectionGetCapabilityStatusExtended(void); +void* _CTServerConnectionGetCarrierEntitlements(void); +void* _CTServerConnectionGetCarrierSpaceUpdates(void); +void* _CTServerConnectionGetCellBroadcastSettingForAlertType(void); +void* _CTServerConnectionGetCellID(void); +void* _CTServerConnectionGetCellularDataIsDisallowed(void); +void* _CTServerConnectionGetCellularDataIsEnabled(void); +void* _CTServerConnectionGetCellularDataIsEnabledEx(void); +void* _CTServerConnectionGetCellularDataSettings(void); +void* _CTServerConnectionGetCellularUsagePolicyEx(void); +void* _CTServerConnectionGetCellularUsagePolicyMirroring(void); +void* _CTServerConnectionGetCellularUsageWorkspaceInfoEx(void); +void* _CTServerConnectionGetCommCenterInitializationState(void); +void* _CTServerConnectionGetCurrentMaxAllowedDataRate(void); +void* _CTServerConnectionGetDTMFType(void); +void* _CTServerConnectionGetDataServiceAvailability(void); +void* _CTServerConnectionGetDisallowTelephonyFeature(void); +void* _CTServerConnectionGetE911OverLTEModeStatus(void); +void* _CTServerConnectionGetE911OverWifiModeStatus(void); +void* _CTServerConnectionGetEMBMSSAIListInfo(void); +void* _CTServerConnectionGetEMBMSSigInfo(void); +void* _CTServerConnectionGetEMBMSStatus(void); +void* _CTServerConnectionGetEmergencyCallBackMode(void); +void* _CTServerConnectionGetEmergencyCallStatus(void); +void* _CTServerConnectionGetEnableOnlyHomeNetwork(void); +void* _CTServerConnectionGetEnhancedVoiceLinkQualityMetric(void); +void* _CTServerConnectionGetHACState(void); +void* _CTServerConnectionGetInterfaceFamilies(void); +void* _CTServerConnectionGetInternationalDataAccessStatus(void); +void* _CTServerConnectionGetLocationAreaCode(void); +void* _CTServerConnectionGetManagedCellularProfile(void); +void* _CTServerConnectionGetMultiPartyCallCountMaximum(void); +void* _CTServerConnectionGetNATTKeepAliveOverCell(void); +void* _CTServerConnectionGetNetworkSelectionMode(void); +void* _CTServerConnectionGetNetworkSelectionState(void); +void* _CTServerConnectionGetOTAServerOverride(void); +void* _CTServerConnectionGetPLMNPriorityInfo(void); +void* _CTServerConnectionGetPacketContextActive(void); +void* _CTServerConnectionGetPacketContextActiveByServiceType(void); +void* _CTServerConnectionGetPacketContextActiveByServiceTypeExtended(void); +void* _CTServerConnectionGetPacketContextCount(void); +void* _CTServerConnectionGetPacketContextStatistics(void); +void* _CTServerConnectionGetPacketDataLoadInfo(void); +void* _CTServerConnectionGetPhonebookEntryCount(void); +void* _CTServerConnectionGetRATSelection(void); +void* _CTServerConnectionGetRadioAccessTechnology(void); +void* _CTServerConnectionGetRadioAccessTechnologyForPreferredDataSIM(void); +void* _CTServerConnectionGetRadioModuleIsDead(void); +void* _CTServerConnectionGetRadioState(void); +void* _CTServerConnectionGetRegistrationCauseCode(void); +void* _CTServerConnectionGetRegistrationStatus(void); +void* _CTServerConnectionGetRemainingPINAttemptCount(void); +void* _CTServerConnectionGetRemainingPUKAttemptCount(void); +void* _CTServerConnectionGetRemoteBundleInfo(void); +void* _CTServerConnectionGetRemoteServerURL(void); +void* _CTServerConnectionGetResetCellularAccountSettingsIsAllowed(void); +void* _CTServerConnectionGetResetState(void); +void* _CTServerConnectionGetSIMStatus(void); +void* _CTServerConnectionGetSIMTrayStatus(void); +void* _CTServerConnectionGetShowUsageAlert(void); +void* _CTServerConnectionGetSignalStrength(void); +void* _CTServerConnectionGetSignalStrengthDisplayValue(void); +void* _CTServerConnectionGetSupportedEnhancedLinkQualityMetric(void); +void* _CTServerConnectionGetTTYMode(void); +void* _CTServerConnectionGetTemperature(void); +void* _CTServerConnectionGetTestModeFunction(void); +void* _CTServerConnectionGetThumperName(void); +void* _CTServerConnectionGetTypeID(void); +void* _CTServerConnectionGetUIConfiguredApns(void); +void* _CTServerConnectionGetUpdatedCarrierBundle(void); +void* _CTServerConnectionGetUplinkFreq(void); +void* _CTServerConnectionGetVoiceLinkQualityMetric(void); +void* _CTServerConnectionGetVoiceMailAvailable(void); +void* _CTServerConnectionGetVoiceMute(void); +void* _CTServerConnectionGetVoicePrivacy(void); +void* _CTServerConnectionGetXpcConnection(void); +void* _CTServerConnectionHandleReply(void); +void* _CTServerConnectionHideDataIndicator(void); +void* _CTServerConnectionHideRatIndicator(void); +void* _CTServerConnectionICloudAccountReset(void); +void* _CTServerConnectionInjectCellBroadcastMessage(void); +void* _CTServerConnectionInjectCellBroadcastMessageWithWac(void); +void* _CTServerConnectionInstallCarrierBundle(void); +void* _CTServerConnectionIsAnyCallActiveOrHeld(void); +void* _CTServerConnectionIsCDMAInternationalRoamingSettingAllowed(void); +void* _CTServerConnectionIsDataAttached(void); +void* _CTServerConnectionIsDataAttachedForPreferredDataSIM(void); +void* _CTServerConnectionIsDefaultConnection(void); +void* _CTServerConnectionIsEmergencyNumber(void); +void* _CTServerConnectionIsEmergencyNumberWithWhitelistIncluded(void); +void* _CTServerConnectionIsEncryptedIdentitySupported(void); +void* _CTServerConnectionIsInHomeCountry(void); +void* _CTServerConnectionIsInHomeCountryForPreferredDataSIM(void); +void* _CTServerConnectionIsPhoneNumberCredentialValid(void); +void* _CTServerConnectionIsPhoneNumberRegistrationSupported(void); +void* _CTServerConnectionIsServiceOverPublicInternet(void); +void* _CTServerConnectionIsSilenceAssertionBarred(void); +void* _CTServerConnectionIsUserIdentityModuleRequired(void); +void* _CTServerConnectionIsValidEmergencyNumber(void); +void* _CTServerConnectionKeepAliveAssertionCreate(void); +void* _CTServerConnectionLoadManagedCellularProfile(void); +void* _CTServerConnectionLockPostponementTicket(void); +void* _CTServerConnectionModifyAttachAPNSettings(void); +void* _CTServerConnectionNetworkMonitorCreateLogChannel(void); +void* _CTServerConnectionNetworkSelectionMenuAvailable(void); +void* _CTServerConnectionOTAActivationAssertionCreate(void); +void* _CTServerConnectionPINUnlock(void); +void* _CTServerConnectionPUKUnlock(void); +void* _CTServerConnectionPacketContextAssertionCreate(void); +void* _CTServerConnectionPerformInternalVinylOperation(void); +void* _CTServerConnectionPerformMigration(void); +void* _CTServerConnectionPhoneServicesAccountStatusChanged(void); +void* _CTServerConnectionPhoneServicesAddDevice(void); +void* _CTServerConnectionPhoneServicesDisableDevice(void); +void* _CTServerConnectionPhoneServicesEnableDevice(void); +void* _CTServerConnectionPhoneServicesGetDeviceInfo(void); +void* _CTServerConnectionPhoneServicesGetDeviceList(void); +void* _CTServerConnectionPhoneServicesRemoveDevice(void); +void* _CTServerConnectionQueryAccountInformation(void); +void* _CTServerConnectionQueryEnhancedLinkQualityMetric(void); +void* _CTServerConnectionRegisterBlockForNotification(void); +void* _CTServerConnectionRegisterForEvent(void); +void* _CTServerConnectionRegisterForNotification(void); +void* _CTServerConnectionRegisterSilentHoursCallback(void); +void* _CTServerConnectionRegisterSupportedEnhancedLinkQualityMetric(void); +void* _CTServerConnectionRegistrationNotificationAssertionCreate(void); +void* _CTServerConnectionReleaseQOS(void); +void* _CTServerConnectionRemoveVictimFreq(void); +void* _CTServerConnectionRequestQOS(void); +void* _CTServerConnectionResetCarrierBundle(void); +void* _CTServerConnectionResetModem(void); +void* _CTServerConnectionResetModemWithCrashLogs(void); +void* _CTServerConnectionResetPacketContextSettings(void); +void* _CTServerConnectionResetPacketContextStatistics(void); +void* _CTServerConnectionResetUIConfiguredApns(void); +void* _CTServerConnectionResumePacketContextSettings(void); +void* _CTServerConnectionSIMToolkitDisplayReady(void); +void* _CTServerConnectionSavePhonebookEntry(void); +void* _CTServerConnectionSelectNetwork(void); +void* _CTServerConnectionSelectPhonebook(void); +void* _CTServerConnectionSelectSIMToolkitListItem(void); +void* _CTServerConnectionSelectSIMToolkitMenuItem(void); +void* _CTServerConnectionSendAwdQueriableMetric(void); +void* _CTServerConnectionSendBarrier(void); +void* _CTServerConnectionSendEnhancedLinkQualityTrafficInfo(void); +void* _CTServerConnectionSendRemoteRestoreToDefault(void); +void* _CTServerConnectionSendSIMToolkitBooleanResponse(void); +void* _CTServerConnectionSendSIMToolkitResponse(void); +void* _CTServerConnectionSendSIMToolkitStringResponse(void); +void* _CTServerConnectionSendUSSDResponse(void); +void* _CTServerConnectionSendUserActivity(void); +void* _CTServerConnectionSetActiveAudioSystemConfiguration(void); +void* _CTServerConnectionSetAudioLoggingEnabled(void); +void* _CTServerConnectionSetAudioPath(void); +void* _CTServerConnectionSetBandInfo(void); +void* _CTServerConnectionSetBasebandSettings(void); +void* _CTServerConnectionSetCDMAInternationalRoaming(void); +void* _CTServerConnectionSetCampOnlyMode(void); +void* _CTServerConnectionSetCapability(void); +void* _CTServerConnectionSetCapabilityExtended(void); +void* _CTServerConnectionSetCellBroadcastSettingForAlertType(void); +void* _CTServerConnectionSetCellularDataIsDisallowed(void); +void* _CTServerConnectionSetCellularDataIsEnabled(void); +void* _CTServerConnectionSetCellularDataIsEnabledEx(void); +void* _CTServerConnectionSetCellularUsagePolicy(void); +void* _CTServerConnectionSetCellularUsagePolicyEx(void); +void* _CTServerConnectionSetCellularUsagePolicyMirroring(void); +void* _CTServerConnectionSetCellularUsagePolicyOsVersion(void); +void* _CTServerConnectionSetChannelMute(void); +void* _CTServerConnectionSetCivicInfoBasedOnCurrentLocation(void); +void* _CTServerConnectionSetDTMFType(void); +void* _CTServerConnectionSetDefaultConnection(void); +void* _CTServerConnectionSetDisallowTelephonyFeature(void); +void* _CTServerConnectionSetEMBMSActive(void); +void* _CTServerConnectionSetEMBMSSAIInterestedInfo(void); +void* _CTServerConnectionSetEnableOnlyHomeNetwork(void); +void* _CTServerConnectionSetI2SFormat(void); +void* _CTServerConnectionSetInternalManagedState(void); +void* _CTServerConnectionSetInternationalDataAccessStatus(void); +void* _CTServerConnectionSetMasterMute(void); +void* _CTServerConnectionSetMaxAllowedDataRate(void); +void* _CTServerConnectionSetMaxTemperature(void); +void* _CTServerConnectionSetMaxTransmitPower(void); +void* _CTServerConnectionSetMixState(void); +void* _CTServerConnectionSetOTAServerOverride(void); +void* _CTServerConnectionSetPacketContextActive(void); +void* _CTServerConnectionSetPacketContextActiveByServiceType(void); +void* _CTServerConnectionSetPacketNotificationFilter(void); +void* _CTServerConnectionSetPacketProtocolActiveByInterface(void); +void* _CTServerConnectionSetPacketProtocolActiveByServiceType(void); +void* _CTServerConnectionSetPeriodicTemperatureUpdate(void); +void* _CTServerConnectionSetPostponementTicket(void); +void* _CTServerConnectionSetRATSelection(void); +void* _CTServerConnectionSetReliableNetworkFallbackToCellular(void); +void* _CTServerConnectionSetShowUsageAlert(void); +void* _CTServerConnectionSetSourceGain(void); +void* _CTServerConnectionSetTTYMode(void); +void* _CTServerConnectionSetTargetQueue(void); +void* _CTServerConnectionSetTestModeFunction(void); +void* _CTServerConnectionSetTimeCacheValidityPeriod(void); +void* _CTServerConnectionSetTraceProperty(void); +void* _CTServerConnectionSetUIConfiguredApns(void); +void* _CTServerConnectionSetUsageAlertParameters(void); +void* _CTServerConnectionSetVibratorState(void); +void* _CTServerConnectionSetVoiceMute(void); +void* _CTServerConnectionShouldDiscourageDisableLteDataRate(void); +void* _CTServerConnectionShouldWarnDisabledLteMayImpactService(void); +void* _CTServerConnectionSilenceAssertionCreate(void); +void* _CTServerConnectionSimRefresh(void); +void* _CTServerConnectionStartAudioTone(void); +void* _CTServerConnectionStopAudioTone(void); +void* _CTServerConnectionSuspendPacketContextSettings(void); +void* _CTServerConnectionTetheringAssertionCreate(void); +void* _CTServerConnectionUIMAuthenticate(void); +void* _CTServerConnectionUnloadManagedCellularProfile(void); +void* _CTServerConnectionUnlockPostponementTicket(void); +void* _CTServerConnectionUnregisterForAllNotifications(void); +void* _CTServerConnectionUnregisterForEvent(void); +void* _CTServerConnectionUnregisterForNotification(void); +void* _CTServerConnectionUnregisterSilentHoursCallback(void); +void* _CTServerConnectionUpdateAccountWithFeatureOrService(void); +void* _CTServerConnectionUpdateCarrierPushToken(void); +void* _CTServerConnectionUpdateProtocolQualityOfService(void); +void* _CTServerConnectionUpdateQualityOfService(void); +void* _CTServerConnectionVerifyCarrierEntitlements(void); +void* _CTServerEnableFastDormancy(void); +void* _CTServerForceFastDormancy(void); +void* _CTServerIsFastDormancyEnabled(void); +void* _CTServerSetSupportsVoiceCall(void); +void* _ConvertBinaryToHex(void); +void* _CreateDirectoriesToPath(void); +void* _GetMobileUserDirectory(void); +void* _GetMobileUserGID(void); +void* _GetMobileUserUID(void); +void* _GetWirelessUserDirectory(void); +void* _GetWirelessUserGID(void); +void* _GetWirelessUserUID(void); +void* _SynchronizeCommCenterPreferences(void); +void* _Z10asCFString24EntitlementAuthTokenType(void); +void* _Z10createPLMNRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_(void); +void* _Z10createPLMNii(void); +void* _Z10createPLMNiib(void); +void* _Z12createCFPLMNRK3MCCRK3MNC(void); +void* _Z15TTYTypeAsString7TTYType(void); +void* _Z17isEmergencyNumberRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(void); +void* _Z18EmCallTypeAsString23CTCallEmergencyCallType(void); +void* _Z22CTGetRootVersionStringv(void); +void* _Z22callSourceModeAsString16CCCallSourceMode(void); +void* _Z8asString20EntitlementTopicType(void); +void* _Z8asString24EntitlementAuthTokenType(void); +void* _Z8asStringN19NetworkNotification16NotificationTypeE(void); +void* _Z8formPLMNRK3MCCRK3MNC(void); +void* _ZN14CSIPhoneNumber13setBaseNumberEPKc(void); +void* _ZN14CSIPhoneNumber13setBaseNumberERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN14CSIPhoneNumber13setDtmfStringERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN14CSIPhoneNumber15setTypeOfNumberE15PhoneNumberType(void); +void* _ZN14CSIPhoneNumber16setTypeOfAddressEi(void); +void* _ZN14CSIPhoneNumber19setCLIRRequestStateE16CLIRRequestState(void); +void* _ZN14CSIPhoneNumber20setEmergencyCategoryEj(void); +void* _ZN14CSIPhoneNumber22setIsListedAsEmergencyEb(void); +void* _ZN14CSIPhoneNumber23setIsEmSMSTextSupportedEb(void); +void* _ZN14CSIPhoneNumber27convertLettersToPhoneNumberEv(void); +void* _ZN14CSIPhoneNumberC1EPKc(void); +void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void); +void* _ZN14CSIPhoneNumberC1EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN14CSIPhoneNumberC1Ev(void); +void* _ZN14CSIPhoneNumberC2EPKc(void); +void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void); +void* _ZN14CSIPhoneNumberC2EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN14CSIPhoneNumberC2Ev(void); +void* _ZN19NetworkNotification14_ConvertToBoolEPK10__CFStringRPKv(void); +void* _ZN19NetworkNotification14_ConvertToDateEPK10__CFStringRPKv(void); +void* _ZN19NetworkNotification14setValueForKeyEPK10__CFStringS2_NS_24NotificationTrackChangesE(void); +void* _ZN19NetworkNotification15_GetTypeForNameEPK10__CFString(void); +void* _ZN19NetworkNotification16_ConvertToNumberEPK10__CFStringRPKv(void); +void* _ZN19NetworkNotification18notificationStringEv(void); +void* _ZN19NetworkNotification18parsedNotificationEv(void); +void* _ZN19NetworkNotification21_GetFinalFormForValueEPK10__CFStringS2_RPKv(void); +void* _ZN19NetworkNotification24_parseNotificationStringEv(void); +void* _ZN19NetworkNotification30_NotificationKeyIsValidForTypeEPK10__CFString(void); +void* _ZN19NetworkNotification3urlEv(void); +void* _ZN19NetworkNotification4nameEv(void); +void* _ZN19NetworkNotification4typeEv(void); +void* _ZN19NetworkNotificationC1EPK10__CFString(void); +void* _ZN19NetworkNotificationC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN19NetworkNotificationC2EPK10__CFString(void); +void* _ZN19NetworkNotificationC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN19NetworkNotificationD1Ev(void); +void* _ZN19NetworkNotificationD2Ev(void); +void* _ZN3MCC5clearEv(void); +void* _ZN3MCCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MCCC1Et(void); +void* _ZN3MCCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MCCC1Ev(void); +void* _ZN3MCCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MCCC2Et(void); +void* _ZN3MCCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MCCC2Ev(void); +void* _ZN3MCCaSERKS_(void); +void* _ZN3MNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MNCC1EtRK3MCC(void); +void* _ZN3MNCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MNCC1Ev(void); +void* _ZN3MNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MNCC2EtRK3MCC(void); +void* _ZN3MNCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN3MNCC2Ev(void); +void* _ZN9MCCAndMNCC1ERK3MCCRK3MNC(void); +void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void); +void* _ZN9MCCAndMNCC1Ett(void); +void* _ZN9MCCAndMNCC1Ev(void); +void* _ZN9MCCAndMNCC2ERK3MCCRK3MNC(void); +void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void); +void* _ZN9MCCAndMNCC2Ett(void); +void* _ZN9MCCAndMNCC2Ev(void); +void* _ZNK14CSIPhoneNumber12getFormattedEv(void); +void* _ZNK14CSIPhoneNumber13getBaseNumberEv(void); +void* _ZNK14CSIPhoneNumber13getDtmfStringEv(void); +void* _ZNK14CSIPhoneNumber13getFullNumberEv(void); +void* _ZNK14CSIPhoneNumber15getTypeOfNumberEv(void); +void* _ZNK14CSIPhoneNumber16getTypeOfAddressEv(void); +void* _ZNK14CSIPhoneNumber17hasSameBaseNumberERKS_(void); +void* _ZNK14CSIPhoneNumber19getCLIRRequestStateEv(void); +void* _ZNK14CSIPhoneNumber19getFullNumberHelperENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); +void* _ZNK14CSIPhoneNumber20getEmergencyCategoryEv(void); +void* _ZNK14CSIPhoneNumber21getFullOriginalNumberEv(void); +void* _ZNK14CSIPhoneNumber22getIsListedAsEmergencyEv(void); +void* _ZNK14CSIPhoneNumber23getIsEmSMSTextSupportedEv(void); +void* _ZNK14CSIPhoneNumber23hasEmergencyCategorySetEv(void); +void* _ZNK14CSIPhoneNumber26getBaseNumberNoPauseDigitsEv(void); +void* _ZNK14CSIPhoneNumber26getFullNumberNoPauseDigitsEv(void); +void* _ZNK14CSIPhoneNumber8getIsMMIEv(void); +void* _ZNK14CSIPhoneNumber9getIsUSSDEv(void); +void* _ZNK14CSIPhoneNumbereqERKS_(void); +void* _ZNK14CSIPhoneNumberneERKS_(void); +void* _ZNK19NetworkNotification24copyUnparsedNotificationEv(void); +void* _ZNK3MCC11getIntValueEv(void); +void* _ZNK3MCC14getStringValueEv(void); +void* _ZNK3MCC5validEv(void); +void* _ZNK3MCCeqERKS_(void); +void* _ZNK3MCCgtERKS_(void); +void* _ZNK3MCCltERKS_(void); +void* _ZNK3MCCneERKS_(void); +void* _ZNK3MNC12isThreeDigitEv(void); +void* _ZNK3MNC15getIntegerWidthEv(void); +void* _ZNK9MCCAndMNC14getStringValueEv(void); +void* _ZNK9MCCAndMNC6getMccEv(void); +void* _ZNK9MCCAndMNC6getMncEv(void); +void* _ZNK9MCCAndMNCeqERKS_(void); +void* _ZNK9MCCAndMNCltERKS_(void); +void* _ZNK9MCCAndMNCneERKS_(void); +void* _ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERK9MCCAndMNC(void); +void* _is3DigitMNCWithIMSI(void); +void* _is3DigitMNCWithMCC(void); +void* asString(void); +void* createUuidBytes(void); +void* getClientKeyForEntitlementType(void); +void* getEntitlementTypeFromClientKey(void); +void* kCTDataConnectionServiceTypeFromIndex(void); +void* kCTDataConnectionTypeFromString(void); +void* radioStateAsString(void); + +#endif diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClient.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClient.h new file mode 100644 index 0000000000..1651d09fad --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClient.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CoreTelephonyClient : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCallDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCallDelegateInternal.h new file mode 100644 index 0000000000..c7020b9047 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCallDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientCallDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCapabilitiesDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCapabilitiesDelegateInternal.h new file mode 100644 index 0000000000..f463db95ff --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCapabilitiesDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientCapabilitiesDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierBundleDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierBundleDelegateInternal.h new file mode 100644 index 0000000000..084292d806 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierBundleDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientCarrierBundleDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierServicesDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierServicesDelegateInternal.h new file mode 100644 index 0000000000..2414fa5ec0 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierServicesDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientCarrierServicesDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCellularUsagePolicyDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCellularUsagePolicyDelegateInternal.h new file mode 100644 index 0000000000..7be1b2cbe5 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCellularUsagePolicyDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientCellularUsagePolicyDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDataDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDataDelegateInternal.h new file mode 100644 index 0000000000..8a434de3c2 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDataDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientDataDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateInternal.h new file mode 100644 index 0000000000..75a6b3c8ef --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxy.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxy.h new file mode 100644 index 0000000000..c39973fe3a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CoreTelephonyClientDelegateProxy : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxyInterface.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxyInterface.h new file mode 100644 index 0000000000..3bcaaacb1c --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxyInterface.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientDelegateProxyInterface + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientEmergencyDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientEmergencyDelegateInternal.h new file mode 100644 index 0000000000..937095673a --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientEmergencyDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientEmergencyDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientMux.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientMux.h new file mode 100644 index 0000000000..d38061568b --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientMux.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CoreTelephonyClientMux : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientPNRDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientPNRDelegateInternal.h new file mode 100644 index 0000000000..6be5ca5c88 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientPNRDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientPNRDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRegistrationDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRegistrationDelegateInternal.h new file mode 100644 index 0000000000..defd0ce7de --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRegistrationDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientRegistrationDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRemoteAsyncProxy.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRemoteAsyncProxy.h new file mode 100644 index 0000000000..54bd8f7472 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRemoteAsyncProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface CoreTelephonyClientRemoteAsyncProxy : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSMSDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSMSDelegateInternal.h new file mode 100644 index 0000000000..9cca7636e9 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSMSDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientSMSDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSubscriberDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSubscriberDelegateInternal.h new file mode 100644 index 0000000000..643e1ce0ab --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSubscriberDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientSubscriberDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSuppServicesDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSuppServicesDelegateInternal.h new file mode 100644 index 0000000000..78a64ee294 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSuppServicesDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientSuppServicesDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientVoicemailDelegateInternal.h b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientVoicemailDelegateInternal.h new file mode 100644 index 0000000000..54622b9c21 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientVoicemailDelegateInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol CoreTelephonyClientVoicemailDelegateInternal + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSink.h b/src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSink.h new file mode 100644 index 0000000000..e8064d32e2 --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSink.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@interface MuxNotificationSink : NSObject + +@end diff --git a/src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSinkDelegate.h b/src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSinkDelegate.h new file mode 100644 index 0000000000..08ccba29ce --- /dev/null +++ b/src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSinkDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#include + +@protocol MuxNotificationSinkDelegate + +@end diff --git a/src/frameworks/CoreTelephony/src/CTAppDataUsage.m b/src/frameworks/CoreTelephony/src/CTAppDataUsage.m new file mode 100644 index 0000000000..4333fba137 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTAppDataUsage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTAppDataUsage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTAsciiAddress.m b/src/frameworks/CoreTelephony/src/CTAsciiAddress.m new file mode 100644 index 0000000000..e2b6b0b66d --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTAsciiAddress.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTAsciiAddress + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTAudioCodecInfo.m b/src/frameworks/CoreTelephony/src/CTAudioCodecInfo.m new file mode 100644 index 0000000000..96643504e9 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTAudioCodecInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTAudioCodecInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTBinarySMS.m b/src/frameworks/CoreTelephony/src/CTBinarySMS.m new file mode 100644 index 0000000000..37190b003f --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTBinarySMS.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTBinarySMS + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTBundle.m b/src/frameworks/CoreTelephony/src/CTBundle.m new file mode 100644 index 0000000000..27c5e69a5c --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTBundle.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTBundle + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCall.m b/src/frameworks/CoreTelephony/src/CTCall.m new file mode 100644 index 0000000000..b634bd3653 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCall.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCall + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCallCapabilities.m b/src/frameworks/CoreTelephony/src/CTCallCapabilities.m new file mode 100644 index 0000000000..a45c9d4510 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCallCapabilities.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCallCapabilities + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCallCenter.m b/src/frameworks/CoreTelephony/src/CTCallCenter.m new file mode 100644 index 0000000000..45ae73a838 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCallCenter.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCallCenter + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCallForwardingValue.m b/src/frameworks/CoreTelephony/src/CTCallForwardingValue.m new file mode 100644 index 0000000000..0b89dab617 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCallForwardingValue.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCallForwardingValue + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCarrier.m b/src/frameworks/CoreTelephony/src/CTCarrier.m new file mode 100644 index 0000000000..7bebe0255a --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCarrier.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCarrier + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCellIdInfo.m b/src/frameworks/CoreTelephony/src/CTCellIdInfo.m new file mode 100644 index 0000000000..fe0f502397 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCellIdInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCellIdInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCellInfo.m b/src/frameworks/CoreTelephony/src/CTCellInfo.m new file mode 100644 index 0000000000..c38cf42a92 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCellInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCellInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCellularPlanManagerCameraScanAction.m b/src/frameworks/CoreTelephony/src/CTCellularPlanManagerCameraScanAction.m new file mode 100644 index 0000000000..1a95dbc632 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCellularPlanManagerCameraScanAction.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCellularPlanManagerCameraScanAction + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTCellularPlanProvisioningRequest.m b/src/frameworks/CoreTelephony/src/CTCellularPlanProvisioningRequest.m new file mode 100644 index 0000000000..ccb9813a63 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTCellularPlanProvisioningRequest.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTCellularPlanProvisioningRequest + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDataConnectionAvailabilityStatus.m b/src/frameworks/CoreTelephony/src/CTDataConnectionAvailabilityStatus.m new file mode 100644 index 0000000000..35e3c846c8 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDataConnectionAvailabilityStatus.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDataConnectionAvailabilityStatus + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDataConnectionStatus.m b/src/frameworks/CoreTelephony/src/CTDataConnectionStatus.m new file mode 100644 index 0000000000..08b7f8888e --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDataConnectionStatus.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDataConnectionStatus + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDataSettings.m b/src/frameworks/CoreTelephony/src/CTDataSettings.m new file mode 100644 index 0000000000..679e97cd6e --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDataSettings.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDataSettings + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDataStatus.m b/src/frameworks/CoreTelephony/src/CTDataStatus.m new file mode 100644 index 0000000000..57fa6a8792 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDataStatus.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDataStatus + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDataUsage.m b/src/frameworks/CoreTelephony/src/CTDataUsage.m new file mode 100644 index 0000000000..9a2ed975e0 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDataUsage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDataUsage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDataUsed.m b/src/frameworks/CoreTelephony/src/CTDataUsed.m new file mode 100644 index 0000000000..6eedffdd31 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDataUsed.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDataUsed + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTDeviceDataUsage.m b/src/frameworks/CoreTelephony/src/CTDeviceDataUsage.m new file mode 100644 index 0000000000..dac2500ebc --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTDeviceDataUsage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTDeviceDataUsage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTEmailAddress.m b/src/frameworks/CoreTelephony/src/CTEmailAddress.m new file mode 100644 index 0000000000..f8a83ed832 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTEmailAddress.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTEmailAddress + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTEmergencyMode.m b/src/frameworks/CoreTelephony/src/CTEmergencyMode.m new file mode 100644 index 0000000000..f3f88675a8 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTEmergencyMode.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTEmergencyMode + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTEmergencyModeResult.m b/src/frameworks/CoreTelephony/src/CTEmergencyModeResult.m new file mode 100644 index 0000000000..c4ea137b33 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTEmergencyModeResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTEmergencyModeResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTEncryptionStatusInfo.m b/src/frameworks/CoreTelephony/src/CTEncryptionStatusInfo.m new file mode 100644 index 0000000000..51f2646c41 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTEncryptionStatusInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTEncryptionStatusInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTEnhancedDataLinkQualityMetric.m b/src/frameworks/CoreTelephony/src/CTEnhancedDataLinkQualityMetric.m new file mode 100644 index 0000000000..ae4caa4fa4 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTEnhancedDataLinkQualityMetric.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTEnhancedDataLinkQualityMetric + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTEnhancedLinkQualityMetric.m b/src/frameworks/CoreTelephony/src/CTEnhancedLinkQualityMetric.m new file mode 100644 index 0000000000..01a89d38dc --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTEnhancedLinkQualityMetric.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTEnhancedLinkQualityMetric + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTIMSRegistrationStatus.m b/src/frameworks/CoreTelephony/src/CTIMSRegistrationStatus.m new file mode 100644 index 0000000000..7bc1b1d7f8 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTIMSRegistrationStatus.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTIMSRegistrationStatus + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTIMSRegistrationTransportInfo.m b/src/frameworks/CoreTelephony/src/CTIMSRegistrationTransportInfo.m new file mode 100644 index 0000000000..585ad9ae58 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTIMSRegistrationTransportInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTIMSRegistrationTransportInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMessage.m b/src/frameworks/CoreTelephony/src/CTMessage.m new file mode 100644 index 0000000000..fe2b5c5fa8 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMessage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMessage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMessageCenter.m b/src/frameworks/CoreTelephony/src/CTMessageCenter.m new file mode 100644 index 0000000000..e811be6909 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMessageCenter.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMessageCenter + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMessagePart.m b/src/frameworks/CoreTelephony/src/CTMessagePart.m new file mode 100644 index 0000000000..6654daa0f9 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMessagePart.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMessagePart + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMessageStatus.m b/src/frameworks/CoreTelephony/src/CTMessageStatus.m new file mode 100644 index 0000000000..abd9d7c38d --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMessageStatus.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMessageStatus + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMmsEncoder.m b/src/frameworks/CoreTelephony/src/CTMmsEncoder.m new file mode 100644 index 0000000000..e1fb8419d4 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMmsEncoder.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMmsEncoder + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMmsRegistrationFailureInfoType.m b/src/frameworks/CoreTelephony/src/CTMmsRegistrationFailureInfoType.m new file mode 100644 index 0000000000..35396107b8 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMmsRegistrationFailureInfoType.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMmsRegistrationFailureInfoType + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMobileEquipmentInfo.m b/src/frameworks/CoreTelephony/src/CTMobileEquipmentInfo.m new file mode 100644 index 0000000000..8f0c004a9e --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMobileEquipmentInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMobileEquipmentInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTMobileEquipmentInfoList.m b/src/frameworks/CoreTelephony/src/CTMobileEquipmentInfoList.m new file mode 100644 index 0000000000..efa991ac75 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTMobileEquipmentInfoList.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTMobileEquipmentInfoList + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTNetwork.m b/src/frameworks/CoreTelephony/src/CTNetwork.m new file mode 100644 index 0000000000..c74fe00bc9 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTNetwork.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTNetwork + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTNetworkList.m b/src/frameworks/CoreTelephony/src/CTNetworkList.m new file mode 100644 index 0000000000..9e24ae5691 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTNetworkList.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTNetworkList + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTNetworkSelectionInfo.m b/src/frameworks/CoreTelephony/src/CTNetworkSelectionInfo.m new file mode 100644 index 0000000000..296d6196ce --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTNetworkSelectionInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTNetworkSelectionInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPNRContextInfo.m b/src/frameworks/CoreTelephony/src/CTPNRContextInfo.m new file mode 100644 index 0000000000..a25d43652d --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPNRContextInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPNRContextInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPNRDataType.m b/src/frameworks/CoreTelephony/src/CTPNRDataType.m new file mode 100644 index 0000000000..7491dd9ce8 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPNRDataType.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPNRDataType + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPNRRequestSentInfo.m b/src/frameworks/CoreTelephony/src/CTPNRRequestSentInfo.m new file mode 100644 index 0000000000..762e2b5fd4 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPNRRequestSentInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPNRRequestSentInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPNRRequestType.m b/src/frameworks/CoreTelephony/src/CTPNRRequestType.m new file mode 100644 index 0000000000..a9e11167fd --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPNRRequestType.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPNRRequestType + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPerAppDataUsage.m b/src/frameworks/CoreTelephony/src/CTPerAppDataUsage.m new file mode 100644 index 0000000000..ef29cea8b6 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPerAppDataUsage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPerAppDataUsage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPhoneBookEntry.m b/src/frameworks/CoreTelephony/src/CTPhoneBookEntry.m new file mode 100644 index 0000000000..6bfa222fb3 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPhoneBookEntry.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPhoneBookEntry + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPhoneNumber.m b/src/frameworks/CoreTelephony/src/CTPhoneNumber.m new file mode 100644 index 0000000000..e73a0ccdff --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPhoneNumber.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPhoneNumber + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPhoneNumberInfo.m b/src/frameworks/CoreTelephony/src/CTPhoneNumberInfo.m new file mode 100644 index 0000000000..0c8158b05f --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPhoneNumberInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPhoneNumberInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTPriVersion.m b/src/frameworks/CoreTelephony/src/CTPriVersion.m new file mode 100644 index 0000000000..cdf028dc32 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTPriVersion.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTPriVersion + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTRadioAccessTechnology.m b/src/frameworks/CoreTelephony/src/CTRadioAccessTechnology.m new file mode 100644 index 0000000000..a20efe2757 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTRadioAccessTechnology.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTRadioAccessTechnology + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTRegistrationDisplayStatus.m b/src/frameworks/CoreTelephony/src/CTRegistrationDisplayStatus.m new file mode 100644 index 0000000000..fa8eb86033 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTRegistrationDisplayStatus.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTRegistrationDisplayStatus + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSMSDataType.m b/src/frameworks/CoreTelephony/src/CTSMSDataType.m new file mode 100644 index 0000000000..35ce647e07 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSMSDataType.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSMSDataType + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTServiceDescriptor.m b/src/frameworks/CoreTelephony/src/CTServiceDescriptor.m new file mode 100644 index 0000000000..5e2af2c6e7 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTServiceDescriptor.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTServiceDescriptor + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTServiceDescriptorContainer.m b/src/frameworks/CoreTelephony/src/CTServiceDescriptorContainer.m new file mode 100644 index 0000000000..06f67841db --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTServiceDescriptorContainer.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTServiceDescriptorContainer + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSignalStrengthInfo.m b/src/frameworks/CoreTelephony/src/CTSignalStrengthInfo.m new file mode 100644 index 0000000000..e184dbc812 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSignalStrengthInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSignalStrengthInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSignalStrengthMeasurements.m b/src/frameworks/CoreTelephony/src/CTSignalStrengthMeasurements.m new file mode 100644 index 0000000000..34c3de57e6 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSignalStrengthMeasurements.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSignalStrengthMeasurements + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSimLabel.m b/src/frameworks/CoreTelephony/src/CTSimLabel.m new file mode 100644 index 0000000000..cd56f9dbdb --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSimLabel.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSimLabel + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithm.m b/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithm.m new file mode 100644 index 0000000000..bccda4011d --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithm.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberAlgorithm + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithmEAPAKA.m b/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithmEAPAKA.m new file mode 100644 index 0000000000..5236672f64 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithmEAPAKA.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberAlgorithmEAPAKA + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithmEAPSIM.m b/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithmEAPSIM.m new file mode 100644 index 0000000000..71a1f7edfe --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberAlgorithmEAPSIM.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberAlgorithmEAPSIM + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberAuthDataHolder.m b/src/frameworks/CoreTelephony/src/CTSubscriberAuthDataHolder.m new file mode 100644 index 0000000000..780c02374b --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberAuthDataHolder.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberAuthDataHolder + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberAuthRequest.m b/src/frameworks/CoreTelephony/src/CTSubscriberAuthRequest.m new file mode 100644 index 0000000000..b24b27e1ad --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberAuthRequest.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberAuthRequest + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberAuthResult.m b/src/frameworks/CoreTelephony/src/CTSubscriberAuthResult.m new file mode 100644 index 0000000000..26f8fdd446 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberAuthResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberAuthResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSubscriberInfo.m b/src/frameworks/CoreTelephony/src/CTSubscriberInfo.m new file mode 100644 index 0000000000..ecd74e4b13 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSubscriberInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSubscriberInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSuppServicesNotificationData.m b/src/frameworks/CoreTelephony/src/CTSuppServicesNotificationData.m new file mode 100644 index 0000000000..4874b41777 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSuppServicesNotificationData.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSuppServicesNotificationData + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTSupportedMaxDataRates.m b/src/frameworks/CoreTelephony/src/CTSupportedMaxDataRates.m new file mode 100644 index 0000000000..21bbafbbec --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTSupportedMaxDataRates.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTSupportedMaxDataRates + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTTelephonyNetworkInfo.m b/src/frameworks/CoreTelephony/src/CTTelephonyNetworkInfo.m new file mode 100644 index 0000000000..c3025f4f3c --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTTelephonyNetworkInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTTelephonyNetworkInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTVoiceLinkQualityMetric.m b/src/frameworks/CoreTelephony/src/CTVoiceLinkQualityMetric.m new file mode 100644 index 0000000000..18a7138276 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTVoiceLinkQualityMetric.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTVoiceLinkQualityMetric + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTVoicemailInfoType.m b/src/frameworks/CoreTelephony/src/CTVoicemailInfoType.m new file mode 100644 index 0000000000..ddffef79e5 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTVoicemailInfoType.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTVoicemailInfoType + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCContextInfo.m b/src/frameworks/CoreTelephony/src/CTXPCContextInfo.m new file mode 100644 index 0000000000..c299dfe473 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCContextInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCContextInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCContexts.m b/src/frameworks/CoreTelephony/src/CTXPCContexts.m new file mode 100644 index 0000000000..a5e00dd254 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCContexts.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCContexts + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCError.m b/src/frameworks/CoreTelephony/src/CTXPCError.m new file mode 100644 index 0000000000..f0e2e2b8a5 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCError.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCError + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCServiceSubscriptionContext.m b/src/frameworks/CoreTelephony/src/CTXPCServiceSubscriptionContext.m new file mode 100644 index 0000000000..2cd5e8a62d --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCServiceSubscriptionContext.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCServiceSubscriptionContext + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCServiceSubscriptionInfo.m b/src/frameworks/CoreTelephony/src/CTXPCServiceSubscriptionInfo.m new file mode 100644 index 0000000000..a1b502a55f --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCServiceSubscriptionInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCServiceSubscriptionInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCSimLessContextInfo.m b/src/frameworks/CoreTelephony/src/CTXPCSimLessContextInfo.m new file mode 100644 index 0000000000..71c9e3a671 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCSimLessContextInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCSimLessContextInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CTXPCSimLessContexts.m b/src/frameworks/CoreTelephony/src/CTXPCSimLessContexts.m new file mode 100644 index 0000000000..f838b71176 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CTXPCSimLessContexts.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CTXPCSimLessContexts + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CoreTelephony.m b/src/frameworks/CoreTelephony/src/CoreTelephony.m new file mode 100644 index 0000000000..b8dea09da0 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CoreTelephony.m @@ -0,0 +1,4290 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + + +#include +#include +#include + +static int verbose = 0; + +__attribute__((constructor)) +static void initme(void) { + verbose = getenv("STUB_VERBOSE") != NULL; +} + +void* CTCallAddressBlocked(void) +{ + if (verbose) puts("STUB: CTCallAddressBlocked called"); + return NULL; +} + +void* CTCallAnswer(void) +{ + if (verbose) puts("STUB: CTCallAnswer called"); + return NULL; +} + +void* CTCallAnswerEndingActive(void) +{ + if (verbose) puts("STUB: CTCallAnswerEndingActive called"); + return NULL; +} + +void* CTCallAnswerEndingActiveWithSourceIdentifier(void) +{ + if (verbose) puts("STUB: CTCallAnswerEndingActiveWithSourceIdentifier called"); + return NULL; +} + +void* CTCallAnswerEndingHeld(void) +{ + if (verbose) puts("STUB: CTCallAnswerEndingHeld called"); + return NULL; +} + +void* CTCallAnswerWithOptions(void) +{ + if (verbose) puts("STUB: CTCallAnswerWithOptions called"); + return NULL; +} + +void* CTCallAnswerWithSourceIdentifier(void) +{ + if (verbose) puts("STUB: CTCallAnswerWithSourceIdentifier called"); + return NULL; +} + +void* CTCallCopyAddress(void) +{ + if (verbose) puts("STUB: CTCallCopyAddress called"); + return NULL; +} + +void* CTCallCopyCountryCode(void) +{ + if (verbose) puts("STUB: CTCallCopyCountryCode called"); + return NULL; +} + +void* CTCallCopyISOCountryCode(void) +{ + if (verbose) puts("STUB: CTCallCopyISOCountryCode called"); + return NULL; +} + +void* CTCallCopyName(void) +{ + if (verbose) puts("STUB: CTCallCopyName called"); + return NULL; +} + +void* CTCallCopyNetworkCode(void) +{ + if (verbose) puts("STUB: CTCallCopyNetworkCode called"); + return NULL; +} + +void* CTCallCopyUUID(void) +{ + if (verbose) puts("STUB: CTCallCopyUUID called"); + return NULL; +} + +void* CTCallCopyUniqueStringID(void) +{ + if (verbose) puts("STUB: CTCallCopyUniqueStringID called"); + return NULL; +} + +void* CTCallCreateCallRef(void) +{ + if (verbose) puts("STUB: CTCallCreateCallRef called"); + return NULL; +} + +void* CTCallCreateFromSerializedData(void) +{ + if (verbose) puts("STUB: CTCallCreateFromSerializedData called"); + return NULL; +} + +void* CTCallDial(void) +{ + if (verbose) puts("STUB: CTCallDial called"); + return NULL; +} + +void* CTCallDialAny(void) +{ + if (verbose) puts("STUB: CTCallDialAny called"); + return NULL; +} + +void* CTCallDialEmergency(void) +{ + if (verbose) puts("STUB: CTCallDialEmergency called"); + return NULL; +} + +void* CTCallDialService(void) +{ + if (verbose) puts("STUB: CTCallDialService called"); + return NULL; +} + +void* CTCallDialVoicemail(void) +{ + if (verbose) puts("STUB: CTCallDialVoicemail called"); + return NULL; +} + +void* CTCallDialWithAssist(void) +{ + if (verbose) puts("STUB: CTCallDialWithAssist called"); + return NULL; +} + +void* CTCallDialWithID(void) +{ + if (verbose) puts("STUB: CTCallDialWithID called"); + return NULL; +} + +void* CTCallDialWithIDAndSourceIdentifier(void) +{ + if (verbose) puts("STUB: CTCallDialWithIDAndSourceIdentifier called"); + return NULL; +} + +void* CTCallDialWithOptions(void) +{ + if (verbose) puts("STUB: CTCallDialWithOptions called"); + return NULL; +} + +void* CTCallDialWithSourceIdentifier(void) +{ + if (verbose) puts("STUB: CTCallDialWithSourceIdentifier called"); + return NULL; +} + +void* CTCallDidDeviceOriginateEnd(void) +{ + if (verbose) puts("STUB: CTCallDidDeviceOriginateEnd called"); + return NULL; +} + +void* CTCallDisconnect(void) +{ + if (verbose) puts("STUB: CTCallDisconnect called"); + return NULL; +} + +void* CTCallDisconnectWithCauseCode(void) +{ + if (verbose) puts("STUB: CTCallDisconnectWithCauseCode called"); + return NULL; +} + +void* CTCallEndVideoConference(void) +{ + if (verbose) puts("STUB: CTCallEndVideoConference called"); + return NULL; +} + +void* CTCallGetCallSubType(void) +{ + if (verbose) puts("STUB: CTCallGetCallSubType called"); + return NULL; +} + +void* CTCallGetCallType(void) +{ + if (verbose) puts("STUB: CTCallGetCallType called"); + return NULL; +} + +void* CTCallGetCauseCode(void) +{ + if (verbose) puts("STUB: CTCallGetCauseCode called"); + return NULL; +} + +void* CTCallGetCauseCodeString(void) +{ + if (verbose) puts("STUB: CTCallGetCauseCodeString called"); + return NULL; +} + +void* CTCallGetDuration(void) +{ + if (verbose) puts("STUB: CTCallGetDuration called"); + return NULL; +} + +void* CTCallGetEmergencyStatus(void) +{ + if (verbose) puts("STUB: CTCallGetEmergencyStatus called"); + return NULL; +} + +void* CTCallGetMultiPartyCallCountMax(void) +{ + if (verbose) puts("STUB: CTCallGetMultiPartyCallCountMax called"); + return NULL; +} + +void* CTCallGetStartTime(void) +{ + if (verbose) puts("STUB: CTCallGetStartTime called"); + return NULL; +} + +void* CTCallGetStatus(void) +{ + if (verbose) puts("STUB: CTCallGetStatus called"); + return NULL; +} + +void* CTCallGetTypeID(void) +{ + if (verbose) puts("STUB: CTCallGetTypeID called"); + return NULL; +} + +void* CTCallHold(void) +{ + if (verbose) puts("STUB: CTCallHold called"); + return NULL; +} + +void* CTCallIsAlerting(void) +{ + if (verbose) puts("STUB: CTCallIsAlerting called"); + return NULL; +} + +void* CTCallIsCallHandoffPossible(void) +{ + if (verbose) puts("STUB: CTCallIsCallHandoffPossible called"); + return NULL; +} + +void* CTCallIsConferenced(void) +{ + if (verbose) puts("STUB: CTCallIsConferenced called"); + return NULL; +} + +void* CTCallIsOutgoing(void) +{ + if (verbose) puts("STUB: CTCallIsOutgoing called"); + return NULL; +} + +void* CTCallIsToVoicemail(void) +{ + if (verbose) puts("STUB: CTCallIsToVoicemail called"); + return NULL; +} + +void* CTCallIsWaiting(void) +{ + if (verbose) puts("STUB: CTCallIsWaiting called"); + return NULL; +} + +void* CTCallJoinConference(void) +{ + if (verbose) puts("STUB: CTCallJoinConference called"); + return NULL; +} + +void* CTCallLeaveConference(void) +{ + if (verbose) puts("STUB: CTCallLeaveConference called"); + return NULL; +} + +void* CTCallListDisconnect(void) +{ + if (verbose) puts("STUB: CTCallListDisconnect called"); + return NULL; +} + +void* CTCallListDisconnectAll(void) +{ + if (verbose) puts("STUB: CTCallListDisconnectAll called"); + return NULL; +} + +void* CTCallMediaStatusIsActive(void) +{ + if (verbose) puts("STUB: CTCallMediaStatusIsActive called"); + return NULL; +} + +void* CTCallPhoneNumberIsMmiOrUssd(void) +{ + if (verbose) puts("STUB: CTCallPhoneNumberIsMmiOrUssd called"); + return NULL; +} + +void* CTCallPullCallFromOtherDevice(void) +{ + if (verbose) puts("STUB: CTCallPullCallFromOtherDevice called"); + return NULL; +} + +void* CTCallResume(void) +{ + if (verbose) puts("STUB: CTCallResume called"); + return NULL; +} + +void* CTCallSetCallEndTime(void) +{ + if (verbose) puts("STUB: CTCallSetCallEndTime called"); + return NULL; +} + +void* CTCallSetCallInfo(void) +{ + if (verbose) puts("STUB: CTCallSetCallInfo called"); + return NULL; +} + +void* CTCallSetCallStartTime(void) +{ + if (verbose) puts("STUB: CTCallSetCallStartTime called"); + return NULL; +} + +void* CTCallSetCallStatus(void) +{ + if (verbose) puts("STUB: CTCallSetCallStatus called"); + return NULL; +} + +void* CTCallShouldPlayAudioTone(void) +{ + if (verbose) puts("STUB: CTCallShouldPlayAudioTone called"); + return NULL; +} + +void* CTCallShouldSetupAudioInterruption(void) +{ + if (verbose) puts("STUB: CTCallShouldSetupAudioInterruption called"); + return NULL; +} + +void* CTCallStartVideoConference(void) +{ + if (verbose) puts("STUB: CTCallStartVideoConference called"); + return NULL; +} + +void* CTCallSwap(void) +{ + if (verbose) puts("STUB: CTCallSwap called"); + return NULL; +} + +void* CTCallSwitchCallSource(void) +{ + if (verbose) puts("STUB: CTCallSwitchCallSource called"); + return NULL; +} + +void* CTCallSwitchCallSourceAll(void) +{ + if (verbose) puts("STUB: CTCallSwitchCallSourceAll called"); + return NULL; +} + +void* CTCellularDataPlanAccountUpdated(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanAccountUpdated called"); + return NULL; +} + +void* CTCellularDataPlanActivationFailed(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanActivationFailed called"); + return NULL; +} + +void* CTCellularDataPlanCopyAccountUrlString(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanCopyAccountUrlString called"); + return NULL; +} + +void* CTCellularDataPlanCopyDeviceInfo(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanCopyDeviceInfo called"); + return NULL; +} + +void* CTCellularDataPlanGetIsEnabled(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanGetIsEnabled called"); + return NULL; +} + +void* CTCellularDataPlanSetIsEnabled(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanSetIsEnabled called"); + return NULL; +} + +void* CTCellularDataPlanSetWebsheetVisibility(void) +{ + if (verbose) puts("STUB: CTCellularDataPlanSetWebsheetVisibility called"); + return NULL; +} + +void* CTCopyCallManagementState(void) +{ + if (verbose) puts("STUB: CTCopyCallManagementState called"); + return NULL; +} + +void* CTCopyCurrentCalls(void) +{ + if (verbose) puts("STUB: CTCopyCurrentCalls called"); + return NULL; +} + +void* CTCopyCurrentCallsWithTypes(void) +{ + if (verbose) puts("STUB: CTCopyCurrentCallsWithTypes called"); + return NULL; +} + +void* CTCreateCallInfoForHandoffCall(void) +{ + if (verbose) puts("STUB: CTCreateCallInfoForHandoffCall called"); + return NULL; +} + +void* CTDTMFCancelHardPause(void) +{ + if (verbose) puts("STUB: CTDTMFCancelHardPause called"); + return NULL; +} + +void* CTDTMFCopyHardPauseDigits(void) +{ + if (verbose) puts("STUB: CTDTMFCopyHardPauseDigits called"); + return NULL; +} + +void* CTDTMFPlayStart(void) +{ + if (verbose) puts("STUB: CTDTMFPlayStart called"); + return NULL; +} + +void* CTDTMFPlayStop(void) +{ + if (verbose) puts("STUB: CTDTMFPlayStop called"); + return NULL; +} + +void* CTDTMFSendDigitsNow(void) +{ + if (verbose) puts("STUB: CTDTMFSendDigitsNow called"); + return NULL; +} + +void* CTDataRateAsString(void) +{ + if (verbose) puts("STUB: CTDataRateAsString called"); + return NULL; +} + +void* CTEmergencyModeTypeAsString(void) +{ + if (verbose) puts("STUB: CTEmergencyModeTypeAsString called"); + return NULL; +} + +void* CTEnhancedLQMIndicationTypeAsString(void) +{ + if (verbose) puts("STUB: CTEnhancedLQMIndicationTypeAsString called"); + return NULL; +} + +void* CTEsimCapabilityAsString(void) +{ + if (verbose) puts("STUB: CTEsimCapabilityAsString called"); + return NULL; +} + +void* CTGetCurrentCallCount(void) +{ + if (verbose) puts("STUB: CTGetCurrentCallCount called"); + return NULL; +} + +void* CTGetCurrentCallCountWithTypes(void) +{ + if (verbose) puts("STUB: CTGetCurrentCallCountWithTypes called"); + return NULL; +} + +void* CTGetEmergencyWiFiConfig(void) +{ + if (verbose) puts("STUB: CTGetEmergencyWiFiConfig called"); + return NULL; +} + +void* CTGetSignalStrength(void) +{ + if (verbose) puts("STUB: CTGetSignalStrength called"); + return NULL; +} + +void* CTIndicatorsCopyVoicemailStatus(void) +{ + if (verbose) puts("STUB: CTIndicatorsCopyVoicemailStatus called"); + return NULL; +} + +void* CTIndicatorsGetSignalStrength(void) +{ + if (verbose) puts("STUB: CTIndicatorsGetSignalStrength called"); + return NULL; +} + +void* CTNetworkSelectionModeAsString(void) +{ + if (verbose) puts("STUB: CTNetworkSelectionModeAsString called"); + return NULL; +} + +void* CTNetworkSelectionStateAsString(void) +{ + if (verbose) puts("STUB: CTNetworkSelectionStateAsString called"); + return NULL; +} + +void* CTRegistrationAutomaticallySelectNetwork(void) +{ + if (verbose) puts("STUB: CTRegistrationAutomaticallySelectNetwork called"); + return NULL; +} + +void* CTRegistrationCellularDataPlanAccountUpdated(void) +{ + if (verbose) puts("STUB: CTRegistrationCellularDataPlanAccountUpdated called"); + return NULL; +} + +void* CTRegistrationCopyAbbreviatedOperatorName(void) +{ + if (verbose) puts("STUB: CTRegistrationCopyAbbreviatedOperatorName called"); + return NULL; +} + +void* CTRegistrationCopyDataStatus(void) +{ + if (verbose) puts("STUB: CTRegistrationCopyDataStatus called"); + return NULL; +} + +void* CTRegistrationCopyISOCountryCodeForMobileCountryCode(void) +{ + if (verbose) puts("STUB: CTRegistrationCopyISOCountryCodeForMobileCountryCode called"); + return NULL; +} + +void* CTRegistrationCopyLocalizedOperatorName(void) +{ + if (verbose) puts("STUB: CTRegistrationCopyLocalizedOperatorName called"); + return NULL; +} + +void* CTRegistrationCopyManualNetworkSelection(void) +{ + if (verbose) puts("STUB: CTRegistrationCopyManualNetworkSelection called"); + return NULL; +} + +void* CTRegistrationCopyOperatorName(void) +{ + if (verbose) puts("STUB: CTRegistrationCopyOperatorName called"); + return NULL; +} + +void* CTRegistrationCopySupportedDataRates(void) +{ + if (verbose) puts("STUB: CTRegistrationCopySupportedDataRates called"); + return NULL; +} + +void* CTRegistrationDataCounterGetLastResetTime(void) +{ + if (verbose) puts("STUB: CTRegistrationDataCounterGetLastResetTime called"); + return NULL; +} + +void* CTRegistrationGetCDMAInternationalRoaming(void) +{ + if (verbose) puts("STUB: CTRegistrationGetCDMAInternationalRoaming called"); + return NULL; +} + +void* CTRegistrationGetCurrentMaxAllowedDataRate(void) +{ + if (verbose) puts("STUB: CTRegistrationGetCurrentMaxAllowedDataRate called"); + return NULL; +} + +void* CTRegistrationGetDataAttached(void) +{ + if (verbose) puts("STUB: CTRegistrationGetDataAttached called"); + return NULL; +} + +void* CTRegistrationGetDataContextActive(void) +{ + if (verbose) puts("STUB: CTRegistrationGetDataContextActive called"); + return NULL; +} + +void* CTRegistrationGetDataIndicator(void) +{ + if (verbose) puts("STUB: CTRegistrationGetDataIndicator called"); + return NULL; +} + +void* CTRegistrationGetEULocalBreakOutEnabled(void) +{ + if (verbose) puts("STUB: CTRegistrationGetEULocalBreakOutEnabled called"); + return NULL; +} + +void* CTRegistrationGetEmergencyCallBackMode(void) +{ + if (verbose) puts("STUB: CTRegistrationGetEmergencyCallBackMode called"); + return NULL; +} + +void* CTRegistrationGetInternationalDataAccessStatus(void) +{ + if (verbose) puts("STUB: CTRegistrationGetInternationalDataAccessStatus called"); + return NULL; +} + +void* CTRegistrationGetNetworkSelectionMode(void) +{ + if (verbose) puts("STUB: CTRegistrationGetNetworkSelectionMode called"); + return NULL; +} + +void* CTRegistrationGetNetworkSelectionState(void) +{ + if (verbose) puts("STUB: CTRegistrationGetNetworkSelectionState called"); + return NULL; +} + +void* CTRegistrationGetStatus(void) +{ + if (verbose) puts("STUB: CTRegistrationGetStatus called"); + return NULL; +} + +void* CTRegistrationIsCDMAInternationalRoamingSettingAllowed(void) +{ + if (verbose) puts("STUB: CTRegistrationIsCDMAInternationalRoamingSettingAllowed called"); + return NULL; +} + +void* CTRegistrationIsEULocalBreakOutAvailable(void) +{ + if (verbose) puts("STUB: CTRegistrationIsEULocalBreakOutAvailable called"); + return NULL; +} + +void* CTRegistrationIsInE911OverLTEMode(void) +{ + if (verbose) puts("STUB: CTRegistrationIsInE911OverLTEMode called"); + return NULL; +} + +void* CTRegistrationManuallySelectNetwork(void) +{ + if (verbose) puts("STUB: CTRegistrationManuallySelectNetwork called"); + return NULL; +} + +void* CTRegistrationNetworkSelectionMenuAvailable(void) +{ + if (verbose) puts("STUB: CTRegistrationNetworkSelectionMenuAvailable called"); + return NULL; +} + +void* CTRegistrationRequestNetworkList(void) +{ + if (verbose) puts("STUB: CTRegistrationRequestNetworkList called"); + return NULL; +} + +void* CTRegistrationSetCDMAInternationalRoaming(void) +{ + if (verbose) puts("STUB: CTRegistrationSetCDMAInternationalRoaming called"); + return NULL; +} + +void* CTRegistrationSetDataContextActive(void) +{ + if (verbose) puts("STUB: CTRegistrationSetDataContextActive called"); + return NULL; +} + +void* CTRegistrationSetEULocalBreakOutEnabled(void) +{ + if (verbose) puts("STUB: CTRegistrationSetEULocalBreakOutEnabled called"); + return NULL; +} + +void* CTRegistrationSetInternationalDataAccessStatus(void) +{ + if (verbose) puts("STUB: CTRegistrationSetInternationalDataAccessStatus called"); + return NULL; +} + +void* CTSIMSupportCopyMobileSubscriberCountryCode(void) +{ + if (verbose) puts("STUB: CTSIMSupportCopyMobileSubscriberCountryCode called"); + return NULL; +} + +void* CTSIMSupportCopyMobileSubscriberIdentity(void) +{ + if (verbose) puts("STUB: CTSIMSupportCopyMobileSubscriberIdentity called"); + return NULL; +} + +void* CTSIMSupportCopyMobileSubscriberNetworkCode(void) +{ + if (verbose) puts("STUB: CTSIMSupportCopyMobileSubscriberNetworkCode called"); + return NULL; +} + +void* CTSIMSupportGetRemainingPINAttempts(void) +{ + if (verbose) puts("STUB: CTSIMSupportGetRemainingPINAttempts called"); + return NULL; +} + +void* CTSIMSupportGetRemainingPUKAttempts(void) +{ + if (verbose) puts("STUB: CTSIMSupportGetRemainingPUKAttempts called"); + return NULL; +} + +void* CTSIMSupportGetSIMStatus(void) +{ + if (verbose) puts("STUB: CTSIMSupportGetSIMStatus called"); + return NULL; +} + +void* CTSIMSupportPINUnlock(void) +{ + if (verbose) puts("STUB: CTSIMSupportPINUnlock called"); + return NULL; +} + +void* CTSIMSupportPUKUnlock(void) +{ + if (verbose) puts("STUB: CTSIMSupportPUKUnlock called"); + return NULL; +} + +void* CTServerConnectionDualSimCapabilityAsString(void) +{ + if (verbose) puts("STUB: CTServerConnectionDualSimCapabilityAsString called"); + return NULL; +} + +void* CTSettingCopyDualIPBringUp(void) +{ + if (verbose) puts("STUB: CTSettingCopyDualIPBringUp called"); + return NULL; +} + +void* CTSettingCopyEPDGAddress(void) +{ + if (verbose) puts("STUB: CTSettingCopyEPDGAddress called"); + return NULL; +} + +void* CTSettingCopyEffectiveSimInfo(void) +{ + if (verbose) puts("STUB: CTSettingCopyEffectiveSimInfo called"); + return NULL; +} + +void* CTSettingCopyFakePrimaryDNSKey(void) +{ + if (verbose) puts("STUB: CTSettingCopyFakePrimaryDNSKey called"); + return NULL; +} + +void* CTSettingCopyFakeSecondaryDNSKey(void) +{ + if (verbose) puts("STUB: CTSettingCopyFakeSecondaryDNSKey called"); + return NULL; +} + +void* CTSettingCopyMyPhoneNumber(void) +{ + if (verbose) puts("STUB: CTSettingCopyMyPhoneNumber called"); + return NULL; +} + +void* CTSettingCopyMyPhoneNumberExtended(void) +{ + if (verbose) puts("STUB: CTSettingCopyMyPhoneNumberExtended called"); + return NULL; +} + +void* CTSettingCopyPCSCFAddress(void) +{ + if (verbose) puts("STUB: CTSettingCopyPCSCFAddress called"); + return NULL; +} + +void* CTSettingCopyShowVoLTEStatusIndicator(void) +{ + if (verbose) puts("STUB: CTSettingCopyShowVoLTEStatusIndicator called"); + return NULL; +} + +void* CTSettingCopyVerifyAPN(void) +{ + if (verbose) puts("STUB: CTSettingCopyVerifyAPN called"); + return NULL; +} + +void* CTSettingCopyVerifyCarrierBundles(void) +{ + if (verbose) puts("STUB: CTSettingCopyVerifyCarrierBundles called"); + return NULL; +} + +void* CTSettingCopyWiFiCallingInCallHandover(void) +{ + if (verbose) puts("STUB: CTSettingCopyWiFiCallingInCallHandover called"); + return NULL; +} + +void* CTSettingRequest(void) +{ + if (verbose) puts("STUB: CTSettingRequest called"); + return NULL; +} + +void* CTSettingSave(void) +{ + if (verbose) puts("STUB: CTSettingSave called"); + return NULL; +} + +void* CTSettingSetDualIPBringUp(void) +{ + if (verbose) puts("STUB: CTSettingSetDualIPBringUp called"); + return NULL; +} + +void* CTSettingSetEPDGAddress(void) +{ + if (verbose) puts("STUB: CTSettingSetEPDGAddress called"); + return NULL; +} + +void* CTSettingSetFakePrimaryDNSKey(void) +{ + if (verbose) puts("STUB: CTSettingSetFakePrimaryDNSKey called"); + return NULL; +} + +void* CTSettingSetFakeSecondaryDNSKey(void) +{ + if (verbose) puts("STUB: CTSettingSetFakeSecondaryDNSKey called"); + return NULL; +} + +void* CTSettingSetIMSIOverride(void) +{ + if (verbose) puts("STUB: CTSettingSetIMSIOverride called"); + return NULL; +} + +void* CTSettingSetPCSCFAddress(void) +{ + if (verbose) puts("STUB: CTSettingSetPCSCFAddress called"); + return NULL; +} + +void* CTSettingSetShowVoLTEStatusIndicator(void) +{ + if (verbose) puts("STUB: CTSettingSetShowVoLTEStatusIndicator called"); + return NULL; +} + +void* CTSettingSetVerifyAPN(void) +{ + if (verbose) puts("STUB: CTSettingSetVerifyAPN called"); + return NULL; +} + +void* CTSettingSetVerifyCarrierBundles(void) +{ + if (verbose) puts("STUB: CTSettingSetVerifyCarrierBundles called"); + return NULL; +} + +void* CTSettingSetWiFiCallingInCallHandover(void) +{ + if (verbose) puts("STUB: CTSettingSetWiFiCallingInCallHandover called"); + return NULL; +} + +void* CTSettingsCopyiWlanGatewayAddress(void) +{ + if (verbose) puts("STUB: CTSettingsCopyiWlanGatewayAddress called"); + return NULL; +} + +void* CTStartManualOTASP(void) +{ + if (verbose) puts("STUB: CTStartManualOTASP called"); + return NULL; +} + +void* CTStartOTASP(void) +{ + if (verbose) puts("STUB: CTStartOTASP called"); + return NULL; +} + +void* CTSubscriptionSlotAsString(void) +{ + if (verbose) puts("STUB: CTSubscriptionSlotAsString called"); + return NULL; +} + +void* CTSubscriptionSlotAsUUID(void) +{ + if (verbose) puts("STUB: CTSubscriptionSlotAsUUID called"); + return NULL; +} + +void* CTSweetgumConvertDataUnits(void) +{ + if (verbose) puts("STUB: CTSweetgumConvertDataUnits called"); + return NULL; +} + +void* CTSweetgumDataUnitsAsString(void) +{ + if (verbose) puts("STUB: CTSweetgumDataUnitsAsString called"); + return NULL; +} + +void* CTSweetgumDeviceTypeAsString(void) +{ + if (verbose) puts("STUB: CTSweetgumDeviceTypeAsString called"); + return NULL; +} + +void* CTSweetgumPlanCategoryAsString(void) +{ + if (verbose) puts("STUB: CTSweetgumPlanCategoryAsString called"); + return NULL; +} + +void* CTSweetgumPlanPurchaseStatusAsString(void) +{ + if (verbose) puts("STUB: CTSweetgumPlanPurchaseStatusAsString called"); + return NULL; +} + +void* CTSweetgumPlanStatusAsString(void) +{ + if (verbose) puts("STUB: CTSweetgumPlanStatusAsString called"); + return NULL; +} + +void* CTSweetgumRegistrationStatusAsString(void) +{ + if (verbose) puts("STUB: CTSweetgumRegistrationStatusAsString called"); + return NULL; +} + +void* CTTelephonyCenterAddObserver(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterAddObserver called"); + return NULL; +} + +void* CTTelephonyCenterGetDefault(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterGetDefault called"); + return NULL; +} + +void* CTTelephonyCenterGetRunLoop(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterGetRunLoop called"); + return NULL; +} + +void* CTTelephonyCenterRemoveEveryObserver(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterRemoveEveryObserver called"); + return NULL; +} + +void* CTTelephonyCenterRemoveObserver(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterRemoveObserver called"); + return NULL; +} + +void* CTTelephonyCenterSendBarrier(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterSendBarrier called"); + return NULL; +} + +void* CTTelephonyCenterSetDefaultDispatchQueue(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultDispatchQueue called"); + return NULL; +} + +void* CTTelephonyCenterSetDefaultDispatchQueuePermanently(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultDispatchQueuePermanently called"); + return NULL; +} + +void* CTTelephonyCenterSetDefaultRunloop(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultRunloop called"); + return NULL; +} + +void* CTTelephonyCenterSetDefaultRunloopPermanently(void) +{ + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultRunloopPermanently called"); + return NULL; +} + +void* CTUSSDSessionCancel(void) +{ + if (verbose) puts("STUB: CTUSSDSessionCancel called"); + return NULL; +} + +void* CTUSSDSessionSendResponse(void) +{ + if (verbose) puts("STUB: CTUSSDSessionSendResponse called"); + return NULL; +} + +void* ConvertAccountQueryTypesToMask(void) +{ + if (verbose) puts("STUB: ConvertAccountQueryTypesToMask called"); + return NULL; +} + +void* GetCarrierEntitlementNameById(void) +{ + if (verbose) puts("STUB: GetCarrierEntitlementNameById called"); + return NULL; +} + +void* GetCarrierEntitlementResultString(void) +{ + if (verbose) puts("STUB: GetCarrierEntitlementResultString called"); + return NULL; +} + +void* HexToString(void) +{ + if (verbose) puts("STUB: HexToString called"); + return NULL; +} + +void* VMCopyDictionaryForNotificationString(void) +{ + if (verbose) puts("STUB: VMCopyDictionaryForNotificationString called"); + return NULL; +} + +void* _CFDataCreateFromHexString(void) +{ + if (verbose) puts("STUB: _CFDataCreateFromHexString called"); + return NULL; +} + +void* _CFStringCopyMCCMNCFromIMSI(void) +{ + if (verbose) puts("STUB: _CFStringCopyMCCMNCFromIMSI called"); + return NULL; +} + +void* _CFStringCreateHexFromBinary(void) +{ + if (verbose) puts("STUB: _CFStringCreateHexFromBinary called"); + return NULL; +} + +void* _CFStringGetMobileUser(void) +{ + if (verbose) puts("STUB: _CFStringGetMobileUser called"); + return NULL; +} + +void* _CFStringGetOrCreateCString(void) +{ + if (verbose) puts("STUB: _CFStringGetOrCreateCString called"); + return NULL; +} + +void* _CFStringGetWirelessUser(void) +{ + if (verbose) puts("STUB: _CFStringGetWirelessUser called"); + return NULL; +} + +void* _CFStringHasPrefixCaseInsensitive(void) +{ + if (verbose) puts("STUB: _CFStringHasPrefixCaseInsensitive called"); + return NULL; +} + +void* _CTCallCopyCurrentCalls(void) +{ + if (verbose) puts("STUB: _CTCallCopyCurrentCalls called"); + return NULL; +} + +void* _CTCallHistoryStoreCallTimersGetAll(void) +{ + if (verbose) puts("STUB: _CTCallHistoryStoreCallTimersGetAll called"); + return NULL; +} + +void* _CTCallHistoryStoreGetCountOfMissedCallSince(void) +{ + if (verbose) puts("STUB: _CTCallHistoryStoreGetCountOfMissedCallSince called"); + return NULL; +} + +void* _CTCallHistoryStoreGetCountOfMissedCallWithTypesSince(void) +{ + if (verbose) puts("STUB: _CTCallHistoryStoreGetCountOfMissedCallWithTypesSince called"); + return NULL; +} + +void* _CTServerConnectionAddIdentifierException(void) +{ + if (verbose) puts("STUB: _CTServerConnectionAddIdentifierException called"); + return NULL; +} + +void* _CTServerConnectionAddToRunLoop(void) +{ + if (verbose) puts("STUB: _CTServerConnectionAddToRunLoop called"); + return NULL; +} + +void* _CTServerConnectionAddVictimFreq(void) +{ + if (verbose) puts("STUB: _CTServerConnectionAddVictimFreq called"); + return NULL; +} + +void* _CTServerConnectionAudioSampleRateSwitchDidComplete(void) +{ + if (verbose) puts("STUB: _CTServerConnectionAudioSampleRateSwitchDidComplete called"); + return NULL; +} + +void* _CTServerConnectionAutomaticallySelectNetwork(void) +{ + if (verbose) puts("STUB: _CTServerConnectionAutomaticallySelectNetwork called"); + return NULL; +} + +void* _CTServerConnectionBlockBBFreqReport(void) +{ + if (verbose) puts("STUB: _CTServerConnectionBlockBBFreqReport called"); + return NULL; +} + +void* _CTServerConnectionCanSetCapability(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCanSetCapability called"); + return NULL; +} + +void* _CTServerConnectionCanSetCapabilityExtended(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCanSetCapabilityExtended called"); + return NULL; +} + +void* _CTServerConnectionCarrierSettingsCopyValue(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCarrierSettingsCopyValue called"); + return NULL; +} + +void* _CTServerConnectionCarrierSettingsCopyValueForPreferredDataSIM(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCarrierSettingsCopyValueForPreferredDataSIM called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorCopyCellInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorCopyCellInfo called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorGetCellCount(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetCellCount called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorGetCellInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetCellInfo called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorGetUmtsCellCount(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetUmtsCellCount called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorGetUmtsCellInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetUmtsCellInfo called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorStart(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorStart called"); + return NULL; +} + +void* _CTServerConnectionCellMonitorStop(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellMonitorStop called"); + return NULL; +} + +void* _CTServerConnectionCellularDataPlanAccountUpdated(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellularDataPlanAccountUpdated called"); + return NULL; +} + +void* _CTServerConnectionCellularDataPlanActivationFailed(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCellularDataPlanActivationFailed called"); + return NULL; +} + +void* _CTServerConnectionCleanBasebandLogs(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCleanBasebandLogs called"); + return NULL; +} + +void* _CTServerConnectionClearVictimFreq(void) +{ + if (verbose) puts("STUB: _CTServerConnectionClearVictimFreq called"); + return NULL; +} + +void* _CTServerConnectionConfigAndCopyTxController(void) +{ + if (verbose) puts("STUB: _CTServerConnectionConfigAndCopyTxController called"); + return NULL; +} + +void* _CTServerConnectionConfigMaxRadioPower(void) +{ + if (verbose) puts("STUB: _CTServerConnectionConfigMaxRadioPower called"); + return NULL; +} + +void* _CTServerConnectionConfigMaxTransmitPower(void) +{ + if (verbose) puts("STUB: _CTServerConnectionConfigMaxTransmitPower called"); + return NULL; +} + +void* _CTServerConnectionConfigureLogging(void) +{ + if (verbose) puts("STUB: _CTServerConnectionConfigureLogging called"); + return NULL; +} + +void* _CTServerConnectionCopyAbbreviatedOperatorName(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyAbbreviatedOperatorName called"); + return NULL; +} + +void* _CTServerConnectionCopyAccountInformation(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyAccountInformation called"); + return NULL; +} + +void* _CTServerConnectionCopyActiveAndSupportedBands(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyActiveAndSupportedBands called"); + return NULL; +} + +void* _CTServerConnectionCopyAudioVocoderInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyAudioVocoderInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyBandInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyBandInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyBasebandSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyBasebandSettings called"); + return NULL; +} + +void* _CTServerConnectionCopyBasebandThumbprint(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyBasebandThumbprint called"); + return NULL; +} + +void* _CTServerConnectionCopyCallManagementState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCallManagementState called"); + return NULL; +} + +void* _CTServerConnectionCopyCarrierBundleInfoArray(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCarrierBundleInfoArray called"); + return NULL; +} + +void* _CTServerConnectionCopyCellBroadcastAlertTypes(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCellBroadcastAlertTypes called"); + return NULL; +} + +void* _CTServerConnectionCopyCellularTransmitState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCellularTransmitState called"); + return NULL; +} + +void* _CTServerConnectionCopyCellularUsagePolicy(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCellularUsagePolicy called"); + return NULL; +} + +void* _CTServerConnectionCopyCellularUsageWorkspaceInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCellularUsageWorkspaceInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyCompanionPhoneNumber(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCompanionPhoneNumber called"); + return NULL; +} + +void* _CTServerConnectionCopyCountryCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCountryCode called"); + return NULL; +} + +void* _CTServerConnectionCopyCurrentMTU(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyCurrentMTU called"); + return NULL; +} + +void* _CTServerConnectionCopyDataActivityAssertionProcesses(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyDataActivityAssertionProcesses called"); + return NULL; +} + +void* _CTServerConnectionCopyDataStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyDataStatus called"); + return NULL; +} + +void* _CTServerConnectionCopyDataUsageForSubscriber(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyDataUsageForSubscriber called"); + return NULL; +} + +void* _CTServerConnectionCopyDualSimCapability(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyDualSimCapability called"); + return NULL; +} + +void* _CTServerConnectionCopyEffectiveSimInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyEffectiveSimInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareBaselineVersion(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareBaselineVersion called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareManifestData(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareManifestData called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareManifestStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareManifestStatus called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareNonce(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareNonce called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwarePreflightInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwarePreflightInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareSecurityInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareSecurityInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareUpdateInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareUpdateInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyFirmwareVersion(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareVersion called"); + return NULL; +} + +void* _CTServerConnectionCopyISOForMCC(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyISOForMCC called"); + return NULL; +} + +void* _CTServerConnectionCopyLastKnownCountryCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyLastKnownCountryCode called"); + return NULL; +} + +void* _CTServerConnectionCopyLastKnownMobileCountryCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyLastKnownMobileCountryCode called"); + return NULL; +} + +void* _CTServerConnectionCopyLastKnownMobileSubscriberCountryCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyLastKnownMobileSubscriberCountryCode called"); + return NULL; +} + +void* _CTServerConnectionCopyListVictimFreq(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyListVictimFreq called"); + return NULL; +} + +void* _CTServerConnectionCopyLocalizedOperatorName(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyLocalizedOperatorName called"); + return NULL; +} + +void* _CTServerConnectionCopyManualNetworkSelection(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyManualNetworkSelection called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileCountryCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileCountryCode called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileEquipmentInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileEquipmentInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileNetworkCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileNetworkCode called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileSubscriberAndIsoCountryCodes(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberAndIsoCountryCodes called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileSubscriberCountryCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberCountryCode called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileSubscriberHomeCountryList(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberHomeCountryList called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileSubscriberIdentity(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberIdentity called"); + return NULL; +} + +void* _CTServerConnectionCopyMobileSubscriberNetworkCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberNetworkCode called"); + return NULL; +} + +void* _CTServerConnectionCopyNetworkCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyNetworkCode called"); + return NULL; +} + +void* _CTServerConnectionCopyNetworkList(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyNetworkList called"); + return NULL; +} + +void* _CTServerConnectionCopyNextCall(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyNextCall called"); + return NULL; +} + +void* _CTServerConnectionCopyNumericNetworkCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyNumericNetworkCode called"); + return NULL; +} + +void* _CTServerConnectionCopyOperatorName(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyOperatorName called"); + return NULL; +} + +void* _CTServerConnectionCopyPacketContextInterfaceName(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPacketContextInterfaceName called"); + return NULL; +} + +void* _CTServerConnectionCopyPacketContextInterfaceNameByServiceType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPacketContextInterfaceNameByServiceType called"); + return NULL; +} + +void* _CTServerConnectionCopyPhoneBookEntry(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneBookEntry called"); + return NULL; +} + +void* _CTServerConnectionCopyPhoneNumber(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneNumber called"); + return NULL; +} + +void* _CTServerConnectionCopyPhoneNumberSignature(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneNumberSignature called"); + return NULL; +} + +void* _CTServerConnectionCopyPhoneServiceDeviceList(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneServiceDeviceList called"); + return NULL; +} + +void* _CTServerConnectionCopyPostponementStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyPostponementStatus called"); + return NULL; +} + +void* _CTServerConnectionCopyProviderNameUsingCarrierBundle(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyProviderNameUsingCarrierBundle called"); + return NULL; +} + +void* _CTServerConnectionCopyRegistrationInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyRegistrationInfo called"); + return NULL; +} + +void* _CTServerConnectionCopyReliableNetworkFallbackSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyReliableNetworkFallbackSettings called"); + return NULL; +} + +void* _CTServerConnectionCopySIMIdentity(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopySIMIdentity called"); + return NULL; +} + +void* _CTServerConnectionCopySIMToolkitList(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopySIMToolkitList called"); + return NULL; +} + +void* _CTServerConnectionCopySIMToolkitMenu(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopySIMToolkitMenu called"); + return NULL; +} + +void* _CTServerConnectionCopyServiceCenterAddressValue(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyServiceCenterAddressValue called"); + return NULL; +} + +void* _CTServerConnectionCopyServingPLMN(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyServingPLMN called"); + return NULL; +} + +void* _CTServerConnectionCopyStartDateOfCellularDataUsageRecords(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyStartDateOfCellularDataUsageRecords called"); + return NULL; +} + +void* _CTServerConnectionCopySupportedDataRates(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopySupportedDataRates called"); + return NULL; +} + +void* _CTServerConnectionCopySystemCapabilities(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopySystemCapabilities called"); + return NULL; +} + +void* _CTServerConnectionCopyTraceProperty(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyTraceProperty called"); + return NULL; +} + +void* _CTServerConnectionCopyUSSDString(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyUSSDString called"); + return NULL; +} + +void* _CTServerConnectionCopyUsageAlertParameters(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyUsageAlertParameters called"); + return NULL; +} + +void* _CTServerConnectionCopyVoiceCarrierBundleValue(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyVoiceCarrierBundleValue called"); + return NULL; +} + +void* _CTServerConnectionCopyVoiceMailInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCopyVoiceMailInfo called"); + return NULL; +} + +void* _CTServerConnectionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCreate called"); + return NULL; +} + +void* _CTServerConnectionCreateAndLaunchWithIdentifier(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCreateAndLaunchWithIdentifier called"); + return NULL; +} + +void* _CTServerConnectionCreateEncryptedIdentity(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCreateEncryptedIdentity called"); + return NULL; +} + +void* _CTServerConnectionCreateOnRunLoop(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCreateOnRunLoop called"); + return NULL; +} + +void* _CTServerConnectionCreateOnTargetQueue(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCreateOnTargetQueue called"); + return NULL; +} + +void* _CTServerConnectionCreateWithIdentifier(void) +{ + if (verbose) puts("STUB: _CTServerConnectionCreateWithIdentifier called"); + return NULL; +} + +void* _CTServerConnectionDataActivationPopupAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDataActivationPopupAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionDeviceManagementUpdate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDeviceManagementUpdate called"); + return NULL; +} + +void* _CTServerConnectionDisablePCMChannel(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDisablePCMChannel called"); + return NULL; +} + +void* _CTServerConnectionDisableRegistration(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDisableRegistration called"); + return NULL; +} + +void* _CTServerConnectionDoCSIPropertyOperation(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDoCSIPropertyOperation called"); + return NULL; +} + +void* _CTServerConnectionDoModuleOperation(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDoModuleOperation called"); + return NULL; +} + +void* _CTServerConnectionDormancySuspendAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDormancySuspendAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionDormancySuspendAssertionCreateWithExpirationCB(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDormancySuspendAssertionCreateWithExpirationCB called"); + return NULL; +} + +void* _CTServerConnectionDropIPPackets(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDropIPPackets called"); + return NULL; +} + +void* _CTServerConnectionDumpBasebandState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDumpBasebandState called"); + return NULL; +} + +void* _CTServerConnectionDumpMemory(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDumpMemory called"); + return NULL; +} + +void* _CTServerConnectionDumpState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionDumpState called"); + return NULL; +} + +void* _CTServerConnectionEchoCancelationAndNoiseReduction(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEchoCancelationAndNoiseReduction called"); + return NULL; +} + +void* _CTServerConnectionEnableEmergencyCallBackMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnableEmergencyCallBackMode called"); + return NULL; +} + +void* _CTServerConnectionEnableHAC(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnableHAC called"); + return NULL; +} + +void* _CTServerConnectionEnableMediaToDownlink(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnableMediaToDownlink called"); + return NULL; +} + +void* _CTServerConnectionEnablePCMChannel(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnablePCMChannel called"); + return NULL; +} + +void* _CTServerConnectionEnableRegistration(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnableRegistration called"); + return NULL; +} + +void* _CTServerConnectionEnableRemoteDiagnostics(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnableRemoteDiagnostics called"); + return NULL; +} + +void* _CTServerConnectionEnableVoicePrivacy(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEnableVoicePrivacy called"); + return NULL; +} + +void* _CTServerConnectionEntitlementsClearSecondaryIccids(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEntitlementsClearSecondaryIccids called"); + return NULL; +} + +void* _CTServerConnectionEntitlementsGetPreferredRoamingNetworks(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEntitlementsGetPreferredRoamingNetworks called"); + return NULL; +} + +void* _CTServerConnectionEntitlementsGetSIMStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEntitlementsGetSIMStatus called"); + return NULL; +} + +void* _CTServerConnectionEntitlementsSetPreferredRoamingNetworks(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEntitlementsSetPreferredRoamingNetworks called"); + return NULL; +} + +void* _CTServerConnectionEntitlementsSetSecondaryIccids(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEntitlementsSetSecondaryIccids called"); + return NULL; +} + +void* _CTServerConnectionEntitlementsSignUpSIMService(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEntitlementsSignUpSIMService called"); + return NULL; +} + +void* _CTServerConnectionEraseAllUserProfiles(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEraseAllUserProfiles called"); + return NULL; +} + +void* _CTServerConnectionEraseBasebandSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEraseBasebandSettings called"); + return NULL; +} + +void* _CTServerConnectionEraseCellularDataUsageRecords(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEraseCellularDataUsageRecords called"); + return NULL; +} + +void* _CTServerConnectionEraseCellularDataUsageRecordsEx(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEraseCellularDataUsageRecordsEx called"); + return NULL; +} + +void* _CTServerConnectionEraseCommCentersPreferences(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEraseCommCentersPreferences called"); + return NULL; +} + +void* _CTServerConnectionEraseNetworkSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEraseNetworkSettings called"); + return NULL; +} + +void* _CTServerConnectionEvaluateMobileSubscriberIdentity(void) +{ + if (verbose) puts("STUB: _CTServerConnectionEvaluateMobileSubscriberIdentity called"); + return NULL; +} + +void* _CTServerConnectionExecuteCommand(void) +{ + if (verbose) puts("STUB: _CTServerConnectionExecuteCommand called"); + return NULL; +} + +void* _CTServerConnectionFetchNetworkList(void) +{ + if (verbose) puts("STUB: _CTServerConnectionFetchNetworkList called"); + return NULL; +} + +void* _CTServerConnectionFetchPhonebook(void) +{ + if (verbose) puts("STUB: _CTServerConnectionFetchPhonebook called"); + return NULL; +} + +void* _CTServerConnectionFetchTimeFromNetwork(void) +{ + if (verbose) puts("STUB: _CTServerConnectionFetchTimeFromNetwork called"); + return NULL; +} + +void* _CTServerConnectionGetAPNConfiguration(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetAPNConfiguration called"); + return NULL; +} + +void* _CTServerConnectionGetActiveWirelessTechnology(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetActiveWirelessTechnology called"); + return NULL; +} + +void* _CTServerConnectionGetAllowedRadioMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetAllowedRadioMode called"); + return NULL; +} + +void* _CTServerConnectionGetAttachAPNSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetAttachAPNSettings called"); + return NULL; +} + +void* _CTServerConnectionGetAudioLoggingEnabled(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetAudioLoggingEnabled called"); + return NULL; +} + +void* _CTServerConnectionGetCDMAInternationalRoaming(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCDMAInternationalRoaming called"); + return NULL; +} + +void* _CTServerConnectionGetCDRXWithLTEState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCDRXWithLTEState called"); + return NULL; +} + +void* _CTServerConnectionGetCapabilityStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCapabilityStatus called"); + return NULL; +} + +void* _CTServerConnectionGetCapabilityStatusExtended(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCapabilityStatusExtended called"); + return NULL; +} + +void* _CTServerConnectionGetCarrierEntitlements(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCarrierEntitlements called"); + return NULL; +} + +void* _CTServerConnectionGetCarrierSpaceUpdates(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCarrierSpaceUpdates called"); + return NULL; +} + +void* _CTServerConnectionGetCellBroadcastSettingForAlertType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellBroadcastSettingForAlertType called"); + return NULL; +} + +void* _CTServerConnectionGetCellID(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellID called"); + return NULL; +} + +void* _CTServerConnectionGetCellularDataIsDisallowed(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataIsDisallowed called"); + return NULL; +} + +void* _CTServerConnectionGetCellularDataIsEnabled(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataIsEnabled called"); + return NULL; +} + +void* _CTServerConnectionGetCellularDataIsEnabledEx(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataIsEnabledEx called"); + return NULL; +} + +void* _CTServerConnectionGetCellularDataSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataSettings called"); + return NULL; +} + +void* _CTServerConnectionGetCellularUsagePolicyEx(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularUsagePolicyEx called"); + return NULL; +} + +void* _CTServerConnectionGetCellularUsagePolicyMirroring(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularUsagePolicyMirroring called"); + return NULL; +} + +void* _CTServerConnectionGetCellularUsageWorkspaceInfoEx(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCellularUsageWorkspaceInfoEx called"); + return NULL; +} + +void* _CTServerConnectionGetCommCenterInitializationState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCommCenterInitializationState called"); + return NULL; +} + +void* _CTServerConnectionGetCurrentMaxAllowedDataRate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetCurrentMaxAllowedDataRate called"); + return NULL; +} + +void* _CTServerConnectionGetDTMFType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetDTMFType called"); + return NULL; +} + +void* _CTServerConnectionGetDataServiceAvailability(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetDataServiceAvailability called"); + return NULL; +} + +void* _CTServerConnectionGetDisallowTelephonyFeature(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetDisallowTelephonyFeature called"); + return NULL; +} + +void* _CTServerConnectionGetE911OverLTEModeStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetE911OverLTEModeStatus called"); + return NULL; +} + +void* _CTServerConnectionGetE911OverWifiModeStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetE911OverWifiModeStatus called"); + return NULL; +} + +void* _CTServerConnectionGetEMBMSSAIListInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEMBMSSAIListInfo called"); + return NULL; +} + +void* _CTServerConnectionGetEMBMSSigInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEMBMSSigInfo called"); + return NULL; +} + +void* _CTServerConnectionGetEMBMSStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEMBMSStatus called"); + return NULL; +} + +void* _CTServerConnectionGetEmergencyCallBackMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEmergencyCallBackMode called"); + return NULL; +} + +void* _CTServerConnectionGetEmergencyCallStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEmergencyCallStatus called"); + return NULL; +} + +void* _CTServerConnectionGetEnableOnlyHomeNetwork(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEnableOnlyHomeNetwork called"); + return NULL; +} + +void* _CTServerConnectionGetEnhancedVoiceLinkQualityMetric(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetEnhancedVoiceLinkQualityMetric called"); + return NULL; +} + +void* _CTServerConnectionGetHACState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetHACState called"); + return NULL; +} + +void* _CTServerConnectionGetInterfaceFamilies(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetInterfaceFamilies called"); + return NULL; +} + +void* _CTServerConnectionGetInternationalDataAccessStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetInternationalDataAccessStatus called"); + return NULL; +} + +void* _CTServerConnectionGetLocationAreaCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetLocationAreaCode called"); + return NULL; +} + +void* _CTServerConnectionGetManagedCellularProfile(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetManagedCellularProfile called"); + return NULL; +} + +void* _CTServerConnectionGetMultiPartyCallCountMaximum(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetMultiPartyCallCountMaximum called"); + return NULL; +} + +void* _CTServerConnectionGetNATTKeepAliveOverCell(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetNATTKeepAliveOverCell called"); + return NULL; +} + +void* _CTServerConnectionGetNetworkSelectionMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetNetworkSelectionMode called"); + return NULL; +} + +void* _CTServerConnectionGetNetworkSelectionState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetNetworkSelectionState called"); + return NULL; +} + +void* _CTServerConnectionGetOTAServerOverride(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetOTAServerOverride called"); + return NULL; +} + +void* _CTServerConnectionGetPLMNPriorityInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPLMNPriorityInfo called"); + return NULL; +} + +void* _CTServerConnectionGetPacketContextActive(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextActive called"); + return NULL; +} + +void* _CTServerConnectionGetPacketContextActiveByServiceType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextActiveByServiceType called"); + return NULL; +} + +void* _CTServerConnectionGetPacketContextActiveByServiceTypeExtended(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextActiveByServiceTypeExtended called"); + return NULL; +} + +void* _CTServerConnectionGetPacketContextCount(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextCount called"); + return NULL; +} + +void* _CTServerConnectionGetPacketContextStatistics(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextStatistics called"); + return NULL; +} + +void* _CTServerConnectionGetPacketDataLoadInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPacketDataLoadInfo called"); + return NULL; +} + +void* _CTServerConnectionGetPhonebookEntryCount(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetPhonebookEntryCount called"); + return NULL; +} + +void* _CTServerConnectionGetRATSelection(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRATSelection called"); + return NULL; +} + +void* _CTServerConnectionGetRadioAccessTechnology(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRadioAccessTechnology called"); + return NULL; +} + +void* _CTServerConnectionGetRadioAccessTechnologyForPreferredDataSIM(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRadioAccessTechnologyForPreferredDataSIM called"); + return NULL; +} + +void* _CTServerConnectionGetRadioModuleIsDead(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRadioModuleIsDead called"); + return NULL; +} + +void* _CTServerConnectionGetRadioState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRadioState called"); + return NULL; +} + +void* _CTServerConnectionGetRegistrationCauseCode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRegistrationCauseCode called"); + return NULL; +} + +void* _CTServerConnectionGetRegistrationStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRegistrationStatus called"); + return NULL; +} + +void* _CTServerConnectionGetRemainingPINAttemptCount(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRemainingPINAttemptCount called"); + return NULL; +} + +void* _CTServerConnectionGetRemainingPUKAttemptCount(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRemainingPUKAttemptCount called"); + return NULL; +} + +void* _CTServerConnectionGetRemoteBundleInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRemoteBundleInfo called"); + return NULL; +} + +void* _CTServerConnectionGetRemoteServerURL(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetRemoteServerURL called"); + return NULL; +} + +void* _CTServerConnectionGetResetCellularAccountSettingsIsAllowed(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetResetCellularAccountSettingsIsAllowed called"); + return NULL; +} + +void* _CTServerConnectionGetResetState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetResetState called"); + return NULL; +} + +void* _CTServerConnectionGetSIMStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetSIMStatus called"); + return NULL; +} + +void* _CTServerConnectionGetSIMTrayStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetSIMTrayStatus called"); + return NULL; +} + +void* _CTServerConnectionGetShowUsageAlert(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetShowUsageAlert called"); + return NULL; +} + +void* _CTServerConnectionGetSignalStrength(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetSignalStrength called"); + return NULL; +} + +void* _CTServerConnectionGetSignalStrengthDisplayValue(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetSignalStrengthDisplayValue called"); + return NULL; +} + +void* _CTServerConnectionGetSupportedEnhancedLinkQualityMetric(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetSupportedEnhancedLinkQualityMetric called"); + return NULL; +} + +void* _CTServerConnectionGetTTYMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetTTYMode called"); + return NULL; +} + +void* _CTServerConnectionGetTemperature(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetTemperature called"); + return NULL; +} + +void* _CTServerConnectionGetTestModeFunction(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetTestModeFunction called"); + return NULL; +} + +void* _CTServerConnectionGetThumperName(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetThumperName called"); + return NULL; +} + +void* _CTServerConnectionGetTypeID(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetTypeID called"); + return NULL; +} + +void* _CTServerConnectionGetUIConfiguredApns(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetUIConfiguredApns called"); + return NULL; +} + +void* _CTServerConnectionGetUpdatedCarrierBundle(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetUpdatedCarrierBundle called"); + return NULL; +} + +void* _CTServerConnectionGetUplinkFreq(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetUplinkFreq called"); + return NULL; +} + +void* _CTServerConnectionGetVoiceLinkQualityMetric(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetVoiceLinkQualityMetric called"); + return NULL; +} + +void* _CTServerConnectionGetVoiceMailAvailable(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetVoiceMailAvailable called"); + return NULL; +} + +void* _CTServerConnectionGetVoiceMute(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetVoiceMute called"); + return NULL; +} + +void* _CTServerConnectionGetVoicePrivacy(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetVoicePrivacy called"); + return NULL; +} + +void* _CTServerConnectionGetXpcConnection(void) +{ + if (verbose) puts("STUB: _CTServerConnectionGetXpcConnection called"); + return NULL; +} + +void* _CTServerConnectionHandleReply(void) +{ + if (verbose) puts("STUB: _CTServerConnectionHandleReply called"); + return NULL; +} + +void* _CTServerConnectionHideDataIndicator(void) +{ + if (verbose) puts("STUB: _CTServerConnectionHideDataIndicator called"); + return NULL; +} + +void* _CTServerConnectionHideRatIndicator(void) +{ + if (verbose) puts("STUB: _CTServerConnectionHideRatIndicator called"); + return NULL; +} + +void* _CTServerConnectionICloudAccountReset(void) +{ + if (verbose) puts("STUB: _CTServerConnectionICloudAccountReset called"); + return NULL; +} + +void* _CTServerConnectionInjectCellBroadcastMessage(void) +{ + if (verbose) puts("STUB: _CTServerConnectionInjectCellBroadcastMessage called"); + return NULL; +} + +void* _CTServerConnectionInjectCellBroadcastMessageWithWac(void) +{ + if (verbose) puts("STUB: _CTServerConnectionInjectCellBroadcastMessageWithWac called"); + return NULL; +} + +void* _CTServerConnectionInstallCarrierBundle(void) +{ + if (verbose) puts("STUB: _CTServerConnectionInstallCarrierBundle called"); + return NULL; +} + +void* _CTServerConnectionIsAnyCallActiveOrHeld(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsAnyCallActiveOrHeld called"); + return NULL; +} + +void* _CTServerConnectionIsCDMAInternationalRoamingSettingAllowed(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsCDMAInternationalRoamingSettingAllowed called"); + return NULL; +} + +void* _CTServerConnectionIsDataAttached(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsDataAttached called"); + return NULL; +} + +void* _CTServerConnectionIsDataAttachedForPreferredDataSIM(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsDataAttachedForPreferredDataSIM called"); + return NULL; +} + +void* _CTServerConnectionIsDefaultConnection(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsDefaultConnection called"); + return NULL; +} + +void* _CTServerConnectionIsEmergencyNumber(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsEmergencyNumber called"); + return NULL; +} + +void* _CTServerConnectionIsEmergencyNumberWithWhitelistIncluded(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsEmergencyNumberWithWhitelistIncluded called"); + return NULL; +} + +void* _CTServerConnectionIsEncryptedIdentitySupported(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsEncryptedIdentitySupported called"); + return NULL; +} + +void* _CTServerConnectionIsInHomeCountry(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsInHomeCountry called"); + return NULL; +} + +void* _CTServerConnectionIsInHomeCountryForPreferredDataSIM(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsInHomeCountryForPreferredDataSIM called"); + return NULL; +} + +void* _CTServerConnectionIsPhoneNumberCredentialValid(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsPhoneNumberCredentialValid called"); + return NULL; +} + +void* _CTServerConnectionIsPhoneNumberRegistrationSupported(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsPhoneNumberRegistrationSupported called"); + return NULL; +} + +void* _CTServerConnectionIsServiceOverPublicInternet(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsServiceOverPublicInternet called"); + return NULL; +} + +void* _CTServerConnectionIsSilenceAssertionBarred(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsSilenceAssertionBarred called"); + return NULL; +} + +void* _CTServerConnectionIsUserIdentityModuleRequired(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsUserIdentityModuleRequired called"); + return NULL; +} + +void* _CTServerConnectionIsValidEmergencyNumber(void) +{ + if (verbose) puts("STUB: _CTServerConnectionIsValidEmergencyNumber called"); + return NULL; +} + +void* _CTServerConnectionKeepAliveAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionKeepAliveAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionLoadManagedCellularProfile(void) +{ + if (verbose) puts("STUB: _CTServerConnectionLoadManagedCellularProfile called"); + return NULL; +} + +void* _CTServerConnectionLockPostponementTicket(void) +{ + if (verbose) puts("STUB: _CTServerConnectionLockPostponementTicket called"); + return NULL; +} + +void* _CTServerConnectionModifyAttachAPNSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionModifyAttachAPNSettings called"); + return NULL; +} + +void* _CTServerConnectionNetworkMonitorCreateLogChannel(void) +{ + if (verbose) puts("STUB: _CTServerConnectionNetworkMonitorCreateLogChannel called"); + return NULL; +} + +void* _CTServerConnectionNetworkSelectionMenuAvailable(void) +{ + if (verbose) puts("STUB: _CTServerConnectionNetworkSelectionMenuAvailable called"); + return NULL; +} + +void* _CTServerConnectionOTAActivationAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionOTAActivationAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionPINUnlock(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPINUnlock called"); + return NULL; +} + +void* _CTServerConnectionPUKUnlock(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPUKUnlock called"); + return NULL; +} + +void* _CTServerConnectionPacketContextAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPacketContextAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionPerformInternalVinylOperation(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPerformInternalVinylOperation called"); + return NULL; +} + +void* _CTServerConnectionPerformMigration(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPerformMigration called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesAccountStatusChanged(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesAccountStatusChanged called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesAddDevice(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesAddDevice called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesDisableDevice(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesDisableDevice called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesEnableDevice(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesEnableDevice called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesGetDeviceInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesGetDeviceInfo called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesGetDeviceList(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesGetDeviceList called"); + return NULL; +} + +void* _CTServerConnectionPhoneServicesRemoveDevice(void) +{ + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesRemoveDevice called"); + return NULL; +} + +void* _CTServerConnectionQueryAccountInformation(void) +{ + if (verbose) puts("STUB: _CTServerConnectionQueryAccountInformation called"); + return NULL; +} + +void* _CTServerConnectionQueryEnhancedLinkQualityMetric(void) +{ + if (verbose) puts("STUB: _CTServerConnectionQueryEnhancedLinkQualityMetric called"); + return NULL; +} + +void* _CTServerConnectionRegisterBlockForNotification(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRegisterBlockForNotification called"); + return NULL; +} + +void* _CTServerConnectionRegisterForEvent(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRegisterForEvent called"); + return NULL; +} + +void* _CTServerConnectionRegisterForNotification(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRegisterForNotification called"); + return NULL; +} + +void* _CTServerConnectionRegisterSilentHoursCallback(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRegisterSilentHoursCallback called"); + return NULL; +} + +void* _CTServerConnectionRegisterSupportedEnhancedLinkQualityMetric(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRegisterSupportedEnhancedLinkQualityMetric called"); + return NULL; +} + +void* _CTServerConnectionRegistrationNotificationAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRegistrationNotificationAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionReleaseQOS(void) +{ + if (verbose) puts("STUB: _CTServerConnectionReleaseQOS called"); + return NULL; +} + +void* _CTServerConnectionRemoveVictimFreq(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRemoveVictimFreq called"); + return NULL; +} + +void* _CTServerConnectionRequestQOS(void) +{ + if (verbose) puts("STUB: _CTServerConnectionRequestQOS called"); + return NULL; +} + +void* _CTServerConnectionResetCarrierBundle(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResetCarrierBundle called"); + return NULL; +} + +void* _CTServerConnectionResetModem(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResetModem called"); + return NULL; +} + +void* _CTServerConnectionResetModemWithCrashLogs(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResetModemWithCrashLogs called"); + return NULL; +} + +void* _CTServerConnectionResetPacketContextSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResetPacketContextSettings called"); + return NULL; +} + +void* _CTServerConnectionResetPacketContextStatistics(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResetPacketContextStatistics called"); + return NULL; +} + +void* _CTServerConnectionResetUIConfiguredApns(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResetUIConfiguredApns called"); + return NULL; +} + +void* _CTServerConnectionResumePacketContextSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionResumePacketContextSettings called"); + return NULL; +} + +void* _CTServerConnectionSIMToolkitDisplayReady(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSIMToolkitDisplayReady called"); + return NULL; +} + +void* _CTServerConnectionSavePhonebookEntry(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSavePhonebookEntry called"); + return NULL; +} + +void* _CTServerConnectionSelectNetwork(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSelectNetwork called"); + return NULL; +} + +void* _CTServerConnectionSelectPhonebook(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSelectPhonebook called"); + return NULL; +} + +void* _CTServerConnectionSelectSIMToolkitListItem(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSelectSIMToolkitListItem called"); + return NULL; +} + +void* _CTServerConnectionSelectSIMToolkitMenuItem(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSelectSIMToolkitMenuItem called"); + return NULL; +} + +void* _CTServerConnectionSendAwdQueriableMetric(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendAwdQueriableMetric called"); + return NULL; +} + +void* _CTServerConnectionSendBarrier(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendBarrier called"); + return NULL; +} + +void* _CTServerConnectionSendEnhancedLinkQualityTrafficInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendEnhancedLinkQualityTrafficInfo called"); + return NULL; +} + +void* _CTServerConnectionSendRemoteRestoreToDefault(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendRemoteRestoreToDefault called"); + return NULL; +} + +void* _CTServerConnectionSendSIMToolkitBooleanResponse(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendSIMToolkitBooleanResponse called"); + return NULL; +} + +void* _CTServerConnectionSendSIMToolkitResponse(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendSIMToolkitResponse called"); + return NULL; +} + +void* _CTServerConnectionSendSIMToolkitStringResponse(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendSIMToolkitStringResponse called"); + return NULL; +} + +void* _CTServerConnectionSendUSSDResponse(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendUSSDResponse called"); + return NULL; +} + +void* _CTServerConnectionSendUserActivity(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSendUserActivity called"); + return NULL; +} + +void* _CTServerConnectionSetActiveAudioSystemConfiguration(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetActiveAudioSystemConfiguration called"); + return NULL; +} + +void* _CTServerConnectionSetAudioLoggingEnabled(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetAudioLoggingEnabled called"); + return NULL; +} + +void* _CTServerConnectionSetAudioPath(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetAudioPath called"); + return NULL; +} + +void* _CTServerConnectionSetBandInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetBandInfo called"); + return NULL; +} + +void* _CTServerConnectionSetBasebandSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetBasebandSettings called"); + return NULL; +} + +void* _CTServerConnectionSetCDMAInternationalRoaming(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCDMAInternationalRoaming called"); + return NULL; +} + +void* _CTServerConnectionSetCampOnlyMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCampOnlyMode called"); + return NULL; +} + +void* _CTServerConnectionSetCapability(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCapability called"); + return NULL; +} + +void* _CTServerConnectionSetCapabilityExtended(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCapabilityExtended called"); + return NULL; +} + +void* _CTServerConnectionSetCellBroadcastSettingForAlertType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellBroadcastSettingForAlertType called"); + return NULL; +} + +void* _CTServerConnectionSetCellularDataIsDisallowed(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularDataIsDisallowed called"); + return NULL; +} + +void* _CTServerConnectionSetCellularDataIsEnabled(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularDataIsEnabled called"); + return NULL; +} + +void* _CTServerConnectionSetCellularDataIsEnabledEx(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularDataIsEnabledEx called"); + return NULL; +} + +void* _CTServerConnectionSetCellularUsagePolicy(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicy called"); + return NULL; +} + +void* _CTServerConnectionSetCellularUsagePolicyEx(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicyEx called"); + return NULL; +} + +void* _CTServerConnectionSetCellularUsagePolicyMirroring(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicyMirroring called"); + return NULL; +} + +void* _CTServerConnectionSetCellularUsagePolicyOsVersion(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicyOsVersion called"); + return NULL; +} + +void* _CTServerConnectionSetChannelMute(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetChannelMute called"); + return NULL; +} + +void* _CTServerConnectionSetCivicInfoBasedOnCurrentLocation(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetCivicInfoBasedOnCurrentLocation called"); + return NULL; +} + +void* _CTServerConnectionSetDTMFType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetDTMFType called"); + return NULL; +} + +void* _CTServerConnectionSetDefaultConnection(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetDefaultConnection called"); + return NULL; +} + +void* _CTServerConnectionSetDisallowTelephonyFeature(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetDisallowTelephonyFeature called"); + return NULL; +} + +void* _CTServerConnectionSetEMBMSActive(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetEMBMSActive called"); + return NULL; +} + +void* _CTServerConnectionSetEMBMSSAIInterestedInfo(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetEMBMSSAIInterestedInfo called"); + return NULL; +} + +void* _CTServerConnectionSetEnableOnlyHomeNetwork(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetEnableOnlyHomeNetwork called"); + return NULL; +} + +void* _CTServerConnectionSetI2SFormat(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetI2SFormat called"); + return NULL; +} + +void* _CTServerConnectionSetInternalManagedState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetInternalManagedState called"); + return NULL; +} + +void* _CTServerConnectionSetInternationalDataAccessStatus(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetInternationalDataAccessStatus called"); + return NULL; +} + +void* _CTServerConnectionSetMasterMute(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetMasterMute called"); + return NULL; +} + +void* _CTServerConnectionSetMaxAllowedDataRate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetMaxAllowedDataRate called"); + return NULL; +} + +void* _CTServerConnectionSetMaxTemperature(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetMaxTemperature called"); + return NULL; +} + +void* _CTServerConnectionSetMaxTransmitPower(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetMaxTransmitPower called"); + return NULL; +} + +void* _CTServerConnectionSetMixState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetMixState called"); + return NULL; +} + +void* _CTServerConnectionSetOTAServerOverride(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetOTAServerOverride called"); + return NULL; +} + +void* _CTServerConnectionSetPacketContextActive(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPacketContextActive called"); + return NULL; +} + +void* _CTServerConnectionSetPacketContextActiveByServiceType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPacketContextActiveByServiceType called"); + return NULL; +} + +void* _CTServerConnectionSetPacketNotificationFilter(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPacketNotificationFilter called"); + return NULL; +} + +void* _CTServerConnectionSetPacketProtocolActiveByInterface(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPacketProtocolActiveByInterface called"); + return NULL; +} + +void* _CTServerConnectionSetPacketProtocolActiveByServiceType(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPacketProtocolActiveByServiceType called"); + return NULL; +} + +void* _CTServerConnectionSetPeriodicTemperatureUpdate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPeriodicTemperatureUpdate called"); + return NULL; +} + +void* _CTServerConnectionSetPostponementTicket(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetPostponementTicket called"); + return NULL; +} + +void* _CTServerConnectionSetRATSelection(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetRATSelection called"); + return NULL; +} + +void* _CTServerConnectionSetReliableNetworkFallbackToCellular(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetReliableNetworkFallbackToCellular called"); + return NULL; +} + +void* _CTServerConnectionSetShowUsageAlert(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetShowUsageAlert called"); + return NULL; +} + +void* _CTServerConnectionSetSourceGain(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetSourceGain called"); + return NULL; +} + +void* _CTServerConnectionSetTTYMode(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetTTYMode called"); + return NULL; +} + +void* _CTServerConnectionSetTargetQueue(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetTargetQueue called"); + return NULL; +} + +void* _CTServerConnectionSetTestModeFunction(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetTestModeFunction called"); + return NULL; +} + +void* _CTServerConnectionSetTimeCacheValidityPeriod(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetTimeCacheValidityPeriod called"); + return NULL; +} + +void* _CTServerConnectionSetTraceProperty(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetTraceProperty called"); + return NULL; +} + +void* _CTServerConnectionSetUIConfiguredApns(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetUIConfiguredApns called"); + return NULL; +} + +void* _CTServerConnectionSetUsageAlertParameters(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetUsageAlertParameters called"); + return NULL; +} + +void* _CTServerConnectionSetVibratorState(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetVibratorState called"); + return NULL; +} + +void* _CTServerConnectionSetVoiceMute(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSetVoiceMute called"); + return NULL; +} + +void* _CTServerConnectionShouldDiscourageDisableLteDataRate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionShouldDiscourageDisableLteDataRate called"); + return NULL; +} + +void* _CTServerConnectionShouldWarnDisabledLteMayImpactService(void) +{ + if (verbose) puts("STUB: _CTServerConnectionShouldWarnDisabledLteMayImpactService called"); + return NULL; +} + +void* _CTServerConnectionSilenceAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSilenceAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionSimRefresh(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSimRefresh called"); + return NULL; +} + +void* _CTServerConnectionStartAudioTone(void) +{ + if (verbose) puts("STUB: _CTServerConnectionStartAudioTone called"); + return NULL; +} + +void* _CTServerConnectionStopAudioTone(void) +{ + if (verbose) puts("STUB: _CTServerConnectionStopAudioTone called"); + return NULL; +} + +void* _CTServerConnectionSuspendPacketContextSettings(void) +{ + if (verbose) puts("STUB: _CTServerConnectionSuspendPacketContextSettings called"); + return NULL; +} + +void* _CTServerConnectionTetheringAssertionCreate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionTetheringAssertionCreate called"); + return NULL; +} + +void* _CTServerConnectionUIMAuthenticate(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUIMAuthenticate called"); + return NULL; +} + +void* _CTServerConnectionUnloadManagedCellularProfile(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUnloadManagedCellularProfile called"); + return NULL; +} + +void* _CTServerConnectionUnlockPostponementTicket(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUnlockPostponementTicket called"); + return NULL; +} + +void* _CTServerConnectionUnregisterForAllNotifications(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUnregisterForAllNotifications called"); + return NULL; +} + +void* _CTServerConnectionUnregisterForEvent(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUnregisterForEvent called"); + return NULL; +} + +void* _CTServerConnectionUnregisterForNotification(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUnregisterForNotification called"); + return NULL; +} + +void* _CTServerConnectionUnregisterSilentHoursCallback(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUnregisterSilentHoursCallback called"); + return NULL; +} + +void* _CTServerConnectionUpdateAccountWithFeatureOrService(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUpdateAccountWithFeatureOrService called"); + return NULL; +} + +void* _CTServerConnectionUpdateCarrierPushToken(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUpdateCarrierPushToken called"); + return NULL; +} + +void* _CTServerConnectionUpdateProtocolQualityOfService(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUpdateProtocolQualityOfService called"); + return NULL; +} + +void* _CTServerConnectionUpdateQualityOfService(void) +{ + if (verbose) puts("STUB: _CTServerConnectionUpdateQualityOfService called"); + return NULL; +} + +void* _CTServerConnectionVerifyCarrierEntitlements(void) +{ + if (verbose) puts("STUB: _CTServerConnectionVerifyCarrierEntitlements called"); + return NULL; +} + +void* _CTServerEnableFastDormancy(void) +{ + if (verbose) puts("STUB: _CTServerEnableFastDormancy called"); + return NULL; +} + +void* _CTServerForceFastDormancy(void) +{ + if (verbose) puts("STUB: _CTServerForceFastDormancy called"); + return NULL; +} + +void* _CTServerIsFastDormancyEnabled(void) +{ + if (verbose) puts("STUB: _CTServerIsFastDormancyEnabled called"); + return NULL; +} + +void* _CTServerSetSupportsVoiceCall(void) +{ + if (verbose) puts("STUB: _CTServerSetSupportsVoiceCall called"); + return NULL; +} + +void* _ConvertBinaryToHex(void) +{ + if (verbose) puts("STUB: _ConvertBinaryToHex called"); + return NULL; +} + +void* _CreateDirectoriesToPath(void) +{ + if (verbose) puts("STUB: _CreateDirectoriesToPath called"); + return NULL; +} + +void* _GetMobileUserDirectory(void) +{ + if (verbose) puts("STUB: _GetMobileUserDirectory called"); + return NULL; +} + +void* _GetMobileUserGID(void) +{ + if (verbose) puts("STUB: _GetMobileUserGID called"); + return NULL; +} + +void* _GetMobileUserUID(void) +{ + if (verbose) puts("STUB: _GetMobileUserUID called"); + return NULL; +} + +void* _GetWirelessUserDirectory(void) +{ + if (verbose) puts("STUB: _GetWirelessUserDirectory called"); + return NULL; +} + +void* _GetWirelessUserGID(void) +{ + if (verbose) puts("STUB: _GetWirelessUserGID called"); + return NULL; +} + +void* _GetWirelessUserUID(void) +{ + if (verbose) puts("STUB: _GetWirelessUserUID called"); + return NULL; +} + +void* _SynchronizeCommCenterPreferences(void) +{ + if (verbose) puts("STUB: _SynchronizeCommCenterPreferences called"); + return NULL; +} + +void* _Z10asCFString24EntitlementAuthTokenType(void) +{ + if (verbose) puts("STUB: _Z10asCFString24EntitlementAuthTokenType called"); + return NULL; +} + +void* _Z10createPLMNRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_(void) +{ + if (verbose) puts("STUB: _Z10createPLMNRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_ called"); + return NULL; +} + +void* _Z10createPLMNii(void) +{ + if (verbose) puts("STUB: _Z10createPLMNii called"); + return NULL; +} + +void* _Z10createPLMNiib(void) +{ + if (verbose) puts("STUB: _Z10createPLMNiib called"); + return NULL; +} + +void* _Z12createCFPLMNRK3MCCRK3MNC(void) +{ + if (verbose) puts("STUB: _Z12createCFPLMNRK3MCCRK3MNC called"); + return NULL; +} + +void* _Z15TTYTypeAsString7TTYType(void) +{ + if (verbose) puts("STUB: _Z15TTYTypeAsString7TTYType called"); + return NULL; +} + +void* _Z17isEmergencyNumberRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _Z17isEmergencyNumberRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE called"); + return NULL; +} + +void* _Z18EmCallTypeAsString23CTCallEmergencyCallType(void) +{ + if (verbose) puts("STUB: _Z18EmCallTypeAsString23CTCallEmergencyCallType called"); + return NULL; +} + +void* _Z22CTGetRootVersionStringv(void) +{ + if (verbose) puts("STUB: _Z22CTGetRootVersionStringv called"); + return NULL; +} + +void* _Z22callSourceModeAsString16CCCallSourceMode(void) +{ + if (verbose) puts("STUB: _Z22callSourceModeAsString16CCCallSourceMode called"); + return NULL; +} + +void* _Z8asString20EntitlementTopicType(void) +{ + if (verbose) puts("STUB: _Z8asString20EntitlementTopicType called"); + return NULL; +} + +void* _Z8asString24EntitlementAuthTokenType(void) +{ + if (verbose) puts("STUB: _Z8asString24EntitlementAuthTokenType called"); + return NULL; +} + +void* _Z8asStringN19NetworkNotification16NotificationTypeE(void) +{ + if (verbose) puts("STUB: _Z8asStringN19NetworkNotification16NotificationTypeE called"); + return NULL; +} + +void* _Z8formPLMNRK3MCCRK3MNC(void) +{ + if (verbose) puts("STUB: _Z8formPLMNRK3MCCRK3MNC called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber13setBaseNumberEPKc(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber13setBaseNumberEPKc called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber13setBaseNumberERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber13setBaseNumberERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber13setDtmfStringERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber13setDtmfStringERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber15setTypeOfNumberE15PhoneNumberType(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber15setTypeOfNumberE15PhoneNumberType called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber16setTypeOfAddressEi(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber16setTypeOfAddressEi called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber19setCLIRRequestStateE16CLIRRequestState(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber19setCLIRRequestStateE16CLIRRequestState called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber20setEmergencyCategoryEj(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber20setEmergencyCategoryEj called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber22setIsListedAsEmergencyEb(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber22setIsListedAsEmergencyEb called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber23setIsEmSMSTextSupportedEb(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber23setIsEmSMSTextSupportedEb called"); + return NULL; +} + +void* _ZN14CSIPhoneNumber27convertLettersToPhoneNumberEv(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumber27convertLettersToPhoneNumberEv called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC1EPKc(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1EPKc called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC1EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC1Ev(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1Ev called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC2EPKc(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2EPKc called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC2EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN14CSIPhoneNumberC2Ev(void) +{ + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2Ev called"); + return NULL; +} + +void* _ZN19NetworkNotification14_ConvertToBoolEPK10__CFStringRPKv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification14_ConvertToBoolEPK10__CFStringRPKv called"); + return NULL; +} + +void* _ZN19NetworkNotification14_ConvertToDateEPK10__CFStringRPKv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification14_ConvertToDateEPK10__CFStringRPKv called"); + return NULL; +} + +void* _ZN19NetworkNotification14setValueForKeyEPK10__CFStringS2_NS_24NotificationTrackChangesE(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification14setValueForKeyEPK10__CFStringS2_NS_24NotificationTrackChangesE called"); + return NULL; +} + +void* _ZN19NetworkNotification15_GetTypeForNameEPK10__CFString(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification15_GetTypeForNameEPK10__CFString called"); + return NULL; +} + +void* _ZN19NetworkNotification16_ConvertToNumberEPK10__CFStringRPKv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification16_ConvertToNumberEPK10__CFStringRPKv called"); + return NULL; +} + +void* _ZN19NetworkNotification18notificationStringEv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification18notificationStringEv called"); + return NULL; +} + +void* _ZN19NetworkNotification18parsedNotificationEv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification18parsedNotificationEv called"); + return NULL; +} + +void* _ZN19NetworkNotification21_GetFinalFormForValueEPK10__CFStringS2_RPKv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification21_GetFinalFormForValueEPK10__CFStringS2_RPKv called"); + return NULL; +} + +void* _ZN19NetworkNotification24_parseNotificationStringEv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification24_parseNotificationStringEv called"); + return NULL; +} + +void* _ZN19NetworkNotification30_NotificationKeyIsValidForTypeEPK10__CFString(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification30_NotificationKeyIsValidForTypeEPK10__CFString called"); + return NULL; +} + +void* _ZN19NetworkNotification3urlEv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification3urlEv called"); + return NULL; +} + +void* _ZN19NetworkNotification4nameEv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification4nameEv called"); + return NULL; +} + +void* _ZN19NetworkNotification4typeEv(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotification4typeEv called"); + return NULL; +} + +void* _ZN19NetworkNotificationC1EPK10__CFString(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotificationC1EPK10__CFString called"); + return NULL; +} + +void* _ZN19NetworkNotificationC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotificationC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN19NetworkNotificationC2EPK10__CFString(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotificationC2EPK10__CFString called"); + return NULL; +} + +void* _ZN19NetworkNotificationC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotificationC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN19NetworkNotificationD1Ev(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotificationD1Ev called"); + return NULL; +} + +void* _ZN19NetworkNotificationD2Ev(void) +{ + if (verbose) puts("STUB: _ZN19NetworkNotificationD2Ev called"); + return NULL; +} + +void* _ZN3MCC5clearEv(void) +{ + if (verbose) puts("STUB: _ZN3MCC5clearEv called"); + return NULL; +} + +void* _ZN3MCCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MCCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MCCC1Et(void) +{ + if (verbose) puts("STUB: _ZN3MCCC1Et called"); + return NULL; +} + +void* _ZN3MCCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MCCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MCCC1Ev(void) +{ + if (verbose) puts("STUB: _ZN3MCCC1Ev called"); + return NULL; +} + +void* _ZN3MCCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MCCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MCCC2Et(void) +{ + if (verbose) puts("STUB: _ZN3MCCC2Et called"); + return NULL; +} + +void* _ZN3MCCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MCCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MCCC2Ev(void) +{ + if (verbose) puts("STUB: _ZN3MCCC2Ev called"); + return NULL; +} + +void* _ZN3MCCaSERKS_(void) +{ + if (verbose) puts("STUB: _ZN3MCCaSERKS_ called"); + return NULL; +} + +void* _ZN3MNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MNCC1EtRK3MCC(void) +{ + if (verbose) puts("STUB: _ZN3MNCC1EtRK3MCC called"); + return NULL; +} + +void* _ZN3MNCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MNCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MNCC1Ev(void) +{ + if (verbose) puts("STUB: _ZN3MNCC1Ev called"); + return NULL; +} + +void* _ZN3MNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MNCC2EtRK3MCC(void) +{ + if (verbose) puts("STUB: _ZN3MNCC2EtRK3MCC called"); + return NULL; +} + +void* _ZN3MNCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN3MNCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN3MNCC2Ev(void) +{ + if (verbose) puts("STUB: _ZN3MNCC2Ev called"); + return NULL; +} + +void* _ZN9MCCAndMNCC1ERK3MCCRK3MNC(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC1ERK3MCCRK3MNC called"); + return NULL; +} + +void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_ called"); + return NULL; +} + +void* _ZN9MCCAndMNCC1Ett(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC1Ett called"); + return NULL; +} + +void* _ZN9MCCAndMNCC1Ev(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC1Ev called"); + return NULL; +} + +void* _ZN9MCCAndMNCC2ERK3MCCRK3MNC(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC2ERK3MCCRK3MNC called"); + return NULL; +} + +void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_ called"); + return NULL; +} + +void* _ZN9MCCAndMNCC2Ett(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC2Ett called"); + return NULL; +} + +void* _ZN9MCCAndMNCC2Ev(void) +{ + if (verbose) puts("STUB: _ZN9MCCAndMNCC2Ev called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber12getFormattedEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber12getFormattedEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber13getBaseNumberEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber13getBaseNumberEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber13getDtmfStringEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber13getDtmfStringEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber13getFullNumberEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber13getFullNumberEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber15getTypeOfNumberEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber15getTypeOfNumberEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber16getTypeOfAddressEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber16getTypeOfAddressEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber17hasSameBaseNumberERKS_(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber17hasSameBaseNumberERKS_ called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber19getCLIRRequestStateEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber19getCLIRRequestStateEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber19getFullNumberHelperENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber19getFullNumberHelperENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber20getEmergencyCategoryEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber20getEmergencyCategoryEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber21getFullOriginalNumberEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber21getFullOriginalNumberEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber22getIsListedAsEmergencyEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber22getIsListedAsEmergencyEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber23getIsEmSMSTextSupportedEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber23getIsEmSMSTextSupportedEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber23hasEmergencyCategorySetEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber23hasEmergencyCategorySetEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber26getBaseNumberNoPauseDigitsEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber26getBaseNumberNoPauseDigitsEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber26getFullNumberNoPauseDigitsEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber26getFullNumberNoPauseDigitsEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber8getIsMMIEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber8getIsMMIEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumber9getIsUSSDEv(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber9getIsUSSDEv called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumbereqERKS_(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumbereqERKS_ called"); + return NULL; +} + +void* _ZNK14CSIPhoneNumberneERKS_(void) +{ + if (verbose) puts("STUB: _ZNK14CSIPhoneNumberneERKS_ called"); + return NULL; +} + +void* _ZNK19NetworkNotification24copyUnparsedNotificationEv(void) +{ + if (verbose) puts("STUB: _ZNK19NetworkNotification24copyUnparsedNotificationEv called"); + return NULL; +} + +void* _ZNK3MCC11getIntValueEv(void) +{ + if (verbose) puts("STUB: _ZNK3MCC11getIntValueEv called"); + return NULL; +} + +void* _ZNK3MCC14getStringValueEv(void) +{ + if (verbose) puts("STUB: _ZNK3MCC14getStringValueEv called"); + return NULL; +} + +void* _ZNK3MCC5validEv(void) +{ + if (verbose) puts("STUB: _ZNK3MCC5validEv called"); + return NULL; +} + +void* _ZNK3MCCeqERKS_(void) +{ + if (verbose) puts("STUB: _ZNK3MCCeqERKS_ called"); + return NULL; +} + +void* _ZNK3MCCgtERKS_(void) +{ + if (verbose) puts("STUB: _ZNK3MCCgtERKS_ called"); + return NULL; +} + +void* _ZNK3MCCltERKS_(void) +{ + if (verbose) puts("STUB: _ZNK3MCCltERKS_ called"); + return NULL; +} + +void* _ZNK3MCCneERKS_(void) +{ + if (verbose) puts("STUB: _ZNK3MCCneERKS_ called"); + return NULL; +} + +void* _ZNK3MNC12isThreeDigitEv(void) +{ + if (verbose) puts("STUB: _ZNK3MNC12isThreeDigitEv called"); + return NULL; +} + +void* _ZNK3MNC15getIntegerWidthEv(void) +{ + if (verbose) puts("STUB: _ZNK3MNC15getIntegerWidthEv called"); + return NULL; +} + +void* _ZNK9MCCAndMNC14getStringValueEv(void) +{ + if (verbose) puts("STUB: _ZNK9MCCAndMNC14getStringValueEv called"); + return NULL; +} + +void* _ZNK9MCCAndMNC6getMccEv(void) +{ + if (verbose) puts("STUB: _ZNK9MCCAndMNC6getMccEv called"); + return NULL; +} + +void* _ZNK9MCCAndMNC6getMncEv(void) +{ + if (verbose) puts("STUB: _ZNK9MCCAndMNC6getMncEv called"); + return NULL; +} + +void* _ZNK9MCCAndMNCeqERKS_(void) +{ + if (verbose) puts("STUB: _ZNK9MCCAndMNCeqERKS_ called"); + return NULL; +} + +void* _ZNK9MCCAndMNCltERKS_(void) +{ + if (verbose) puts("STUB: _ZNK9MCCAndMNCltERKS_ called"); + return NULL; +} + +void* _ZNK9MCCAndMNCneERKS_(void) +{ + if (verbose) puts("STUB: _ZNK9MCCAndMNCneERKS_ called"); + return NULL; +} + +void* _ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERK9MCCAndMNC(void) +{ + if (verbose) puts("STUB: _ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERK9MCCAndMNC called"); + return NULL; +} + +void* _is3DigitMNCWithIMSI(void) +{ + if (verbose) puts("STUB: _is3DigitMNCWithIMSI called"); + return NULL; +} + +void* _is3DigitMNCWithMCC(void) +{ + if (verbose) puts("STUB: _is3DigitMNCWithMCC called"); + return NULL; +} + +void* asString(void) +{ + if (verbose) puts("STUB: asString called"); + return NULL; +} + +void* createUuidBytes(void) +{ + if (verbose) puts("STUB: createUuidBytes called"); + return NULL; +} + +void* getClientKeyForEntitlementType(void) +{ + if (verbose) puts("STUB: getClientKeyForEntitlementType called"); + return NULL; +} + +void* getEntitlementTypeFromClientKey(void) +{ + if (verbose) puts("STUB: getEntitlementTypeFromClientKey called"); + return NULL; +} + +void* kCTDataConnectionServiceTypeFromIndex(void) +{ + if (verbose) puts("STUB: kCTDataConnectionServiceTypeFromIndex called"); + return NULL; +} + +void* kCTDataConnectionTypeFromString(void) +{ + if (verbose) puts("STUB: kCTDataConnectionTypeFromString called"); + return NULL; +} + +void* radioStateAsString(void) +{ + if (verbose) puts("STUB: radioStateAsString called"); + return NULL; +} diff --git a/src/frameworks/CoreTelephony/src/CoreTelephonyClient.m b/src/frameworks/CoreTelephony/src/CoreTelephonyClient.m new file mode 100644 index 0000000000..0023cfb052 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CoreTelephonyClient.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CoreTelephonyClient + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CoreTelephonyClientDelegateProxy.m b/src/frameworks/CoreTelephony/src/CoreTelephonyClientDelegateProxy.m new file mode 100644 index 0000000000..1776cd4085 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CoreTelephonyClientDelegateProxy.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CoreTelephonyClientDelegateProxy + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CoreTelephonyClientMux.m b/src/frameworks/CoreTelephony/src/CoreTelephonyClientMux.m new file mode 100644 index 0000000000..ff9782e625 --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CoreTelephonyClientMux.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CoreTelephonyClientMux + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/CoreTelephonyClientRemoteAsyncProxy.m b/src/frameworks/CoreTelephony/src/CoreTelephonyClientRemoteAsyncProxy.m new file mode 100644 index 0000000000..5e4bfcc05f --- /dev/null +++ b/src/frameworks/CoreTelephony/src/CoreTelephonyClientRemoteAsyncProxy.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation CoreTelephonyClientRemoteAsyncProxy + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CoreTelephony/src/MuxNotificationSink.m b/src/frameworks/CoreTelephony/src/MuxNotificationSink.m new file mode 100644 index 0000000000..b9525a33fa --- /dev/null +++ b/src/frameworks/CoreTelephony/src/MuxNotificationSink.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling 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 3 of the License, or + (at your option) any later version. + + Darling 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 Darling. If not, see . +*/ + +#import + +@implementation MuxNotificationSink + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/include/CoreTelephony b/src/frameworks/include/CoreTelephony new file mode 120000 index 0000000000..caafa4ead5 --- /dev/null +++ b/src/frameworks/include/CoreTelephony @@ -0,0 +1 @@ +../CoreTelephony/include/CoreTelephony \ No newline at end of file