Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/frameworks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
99 changes: 99 additions & 0 deletions src/frameworks/CoreTelephony/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
)
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTAppDataUsage : NSObject

@end
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTAsciiAddress : NSObject

@end
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTAudioCodecInfo : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/CoreTelephony/include/CoreTelephony/CTBinarySMS.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTBinarySMS : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/CoreTelephony/include/CoreTelephony/CTBundle.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTBundle : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/CoreTelephony/include/CoreTelephony/CTCall.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTCall : NSObject

@end
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTCallCapabilities : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCenter.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTCallCenter : NSObject

@end
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTCallForwardingValue : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/CoreTelephony/include/CoreTelephony/CTCarrier.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTCarrier : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/CoreTelephony/include/CoreTelephony/CTCellIdInfo.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface CTCellIdInfo : NSObject

@end
Loading