Skip to content

CellularDataDiagnosticsSuite iOS xcode13.3 beta1

Alex Soto edited this page Jan 27, 2022 · 1 revision

#CellularDataDiagnosticsSuite.framework

diff -ruN /Applications/Xcode_13.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuite.h /Applications/Xcode_13.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuite.h
--- /Applications/Xcode_13.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuite.h	1969-12-31 19:00:00.000000000 -0500
+++ /Applications/Xcode_13.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuite.h	2022-01-13 11:41:28.000000000 -0500
@@ -0,0 +1,19 @@
+//
+//  CellularDataDiagnosticsSuite.h
+//  CellularDataDiagnosticsSuite
+//
+//  Created by Mahak Goindani on 8/3/21.
+//
+
+#import <Foundation/Foundation.h>
+#import <CellularDataDiagnosticsSuite/SpeedTestConfig.h>
+
+//! Project version number for CellularDataDiagnosticsSuite.
+FOUNDATION_EXPORT double CellularDataDiagnosticsSuiteVersionNumber;
+
+//! Project version string for CellularDataDiagnosticsSuite.
+FOUNDATION_EXPORT const unsigned char CellularDataDiagnosticsSuiteVersionString[];
+
+// In this header, you should import all the public headers of your framework using statements like #import <CellularDataDiagnosticsSuite/PublicHeader.h>
+
+
diff -ruN /Applications/Xcode_13.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuiteController.h /Applications/Xcode_13.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuiteController.h
--- /Applications/Xcode_13.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuiteController.h	1969-12-31 19:00:00.000000000 -0500
+++ /Applications/Xcode_13.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/CellularDataDiagnosticsSuiteController.h	2022-01-13 11:41:28.000000000 -0500
@@ -0,0 +1,22 @@
+//
+//  CellularDataDiagnosticsSuiteController.h
+//  Diagnostic-8374
+//
+//  Created by Mahak Goindani on 8/16/21.
+//  
+//
+
+#import <DiagnosticsKit/DiagnosticsKit.h>
+#import "SpeedTestConfig.h"
+
+// Define status codes for the extension
+// Typically: 0 = pass, negative = test failure, positive = issues found
+typedef NS_ENUM(NSUInteger, DiagExtensionSampleStatusCode) {
+    DiagExtensionSpeedTestFailed = -1,
+    DiagExtensionErrorUnknown = 1,
+    DiagExtensionSpeedTestSuccess = 0,
+};
+
+@interface CellularDataDiagnosticsSuiteController : DKDiagnosticController
+
+@end
diff -ruN /Applications/Xcode_13.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/SpeedTestConfig.h /Applications/Xcode_13.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/SpeedTestConfig.h
--- /Applications/Xcode_13.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/SpeedTestConfig.h	1969-12-31 19:00:00.000000000 -0500
+++ /Applications/Xcode_13.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CellularDataDiagnosticsSuite.framework/Headers/SpeedTestConfig.h	2022-01-13 11:41:28.000000000 -0500
@@ -0,0 +1,12 @@
+
+#import <Foundation/Foundation.h>
+
+@interface SpeedTestConfig : NSObject
+
+- (void) startDownloadTest:(void (^)(NSString *result))completionHandler;
+
+@end
+
+
+
+
Clone this wiki locally