├── .gitignore ├── BackBoardServices └── BackBoardServices.h ├── BulletinBoard └── BulletinBoard.h ├── CommunicationsFilter ├── CommunicationFilterItem.h ├── CommunicationFilterItemCache.h ├── CommunicationsFilter.h ├── CommunicationsFilterBlockList.h └── CommunicationsFilterBlockListCache.h ├── CoreTelephony ├── CTCall.h ├── CTCellularDataPlan.h ├── CTIndicators.h ├── CTRegistration.h ├── CTSIMSupport.h ├── CTServerConnection.h ├── CTSetting.h ├── CTTelephonyCenter.h └── CoreTelephony.h ├── LICENSE.txt ├── MediaRemote └── MediaRemote.h ├── MobileGestalt └── MobileGestalt.h ├── MobileIcons └── MobileIcons.h ├── MobileInstallation └── MobileInstallation.h ├── MobileWiFi ├── MobileWiFi.h ├── WiFiDeviceClient.h ├── WiFiManager.h └── WiFiNetwork.h ├── README.md ├── SpringBoardServices └── SpringBoardServices.h └── TelephonyUI └── TelephonyUI.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/.gitignore -------------------------------------------------------------------------------- /BackBoardServices/BackBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/BackBoardServices/BackBoardServices.h -------------------------------------------------------------------------------- /BulletinBoard/BulletinBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/BulletinBoard/BulletinBoard.h -------------------------------------------------------------------------------- /CommunicationsFilter/CommunicationFilterItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CommunicationsFilter/CommunicationFilterItem.h -------------------------------------------------------------------------------- /CommunicationsFilter/CommunicationFilterItemCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CommunicationsFilter/CommunicationFilterItemCache.h -------------------------------------------------------------------------------- /CommunicationsFilter/CommunicationsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CommunicationsFilter/CommunicationsFilter.h -------------------------------------------------------------------------------- /CommunicationsFilter/CommunicationsFilterBlockList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CommunicationsFilter/CommunicationsFilterBlockList.h -------------------------------------------------------------------------------- /CommunicationsFilter/CommunicationsFilterBlockListCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CommunicationsFilter/CommunicationsFilterBlockListCache.h -------------------------------------------------------------------------------- /CoreTelephony/CTCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTCall.h -------------------------------------------------------------------------------- /CoreTelephony/CTCellularDataPlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTCellularDataPlan.h -------------------------------------------------------------------------------- /CoreTelephony/CTIndicators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTIndicators.h -------------------------------------------------------------------------------- /CoreTelephony/CTRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTRegistration.h -------------------------------------------------------------------------------- /CoreTelephony/CTSIMSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTSIMSupport.h -------------------------------------------------------------------------------- /CoreTelephony/CTServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTServerConnection.h -------------------------------------------------------------------------------- /CoreTelephony/CTSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTSetting.h -------------------------------------------------------------------------------- /CoreTelephony/CTTelephonyCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CTTelephonyCenter.h -------------------------------------------------------------------------------- /CoreTelephony/CoreTelephony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/CoreTelephony/CoreTelephony.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MediaRemote/MediaRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MediaRemote/MediaRemote.h -------------------------------------------------------------------------------- /MobileGestalt/MobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileGestalt/MobileGestalt.h -------------------------------------------------------------------------------- /MobileIcons/MobileIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileIcons/MobileIcons.h -------------------------------------------------------------------------------- /MobileInstallation/MobileInstallation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileInstallation/MobileInstallation.h -------------------------------------------------------------------------------- /MobileWiFi/MobileWiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileWiFi/MobileWiFi.h -------------------------------------------------------------------------------- /MobileWiFi/WiFiDeviceClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileWiFi/WiFiDeviceClient.h -------------------------------------------------------------------------------- /MobileWiFi/WiFiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileWiFi/WiFiManager.h -------------------------------------------------------------------------------- /MobileWiFi/WiFiNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/MobileWiFi/WiFiNetwork.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/README.md -------------------------------------------------------------------------------- /SpringBoardServices/SpringBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/SpringBoardServices/SpringBoardServices.h -------------------------------------------------------------------------------- /TelephonyUI/TelephonyUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmurray/ios-reversed-headers/HEAD/TelephonyUI/TelephonyUI.h --------------------------------------------------------------------------------