-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathSentryNativeBridgeNoOp.m
More file actions
74 lines (60 loc) · 2.62 KB
/
Copy pathSentryNativeBridgeNoOp.m
File metadata and controls
74 lines (60 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
NS_ASSUME_NONNULL_BEGIN
// macOS only
int SentryNativeBridgeLoadLibrary() { return 0; }
int SentryNativeBridgeIsEnabled() { return 0; }
void *_Nullable SentryNativeBridgeOptionsNew() { return nil; }
void SentryNativeBridgeOptionsSetString(void *options, const char *name, const char *value) { }
void SentryNativeBridgeOptionsSetInt(void *options, const char *name, int32_t value) { }
void SentryNativeBridgeOptionsSetDouble(void *options, const char *name, double value) { }
void SentryNativeBridgeOptionsAddFailedRequestStatusCodeRange(void *options, int32_t min, int32_t max) { }
int SentryNativeBridgeStartWithOptions(void *options) { return 0; }
void SentryNativeBridgeSetSdkName() { }
int SentryNativeBridgeCrashedLastRun() { return 0; }
void SentryNativeBridgeClose() { }
void SentryNativeBridgeAddBreadcrumb(
const char *timestamp, const char *message, const char *type, const char *category, int level) { }
void SentryNativeBridgeSetExtra(const char *key, const char *value) { }
void SentryNativeBridgeSetTag(const char *key, const char *value) { }
void SentryNativeBridgeUnsetTag(const char *key) { }
void SentryNativeBridgeSetUser(
const char *email, const char *userId, const char *ipAddress, const char *username) { }
void SentryNativeBridgeUnsetUser() { }
char *SentryNativeBridgeGetInstallationId() { return NULL; }
void SentryNativeBridgeSetTrace(const char *traceId, const char *spanId) { }
void SentryNativeBridgeWriteScope( // clang-format off
// // const char *AppStartTime,
// const char *AppBuildType,
// // const char *OperatingSystemRawDescription,
// int DeviceProcessorCount,
// const char *DeviceCpuDescription,
// const char *DeviceTimezone,
// int8_t DeviceSupportsVibration,
// const char *DeviceName,
// int8_t DeviceSimulator,
// const char *DeviceDeviceUniqueIdentifier,
// const char *DeviceDeviceType,
// // const char *DeviceModel,
// // long DeviceMemorySize,
int32_t GpuId,
const char *GpuName,
const char *GpuVendorName,
int32_t GpuMemorySize,
const char *GpuNpotSupport,
const char *GpuVersion,
const char *GpuApiType,
int32_t GpuMaxTextureSize,
int8_t GpuSupportsDrawCallInstancing,
int8_t GpuSupportsRayTracing,
int8_t GpuSupportsComputeShaders,
int8_t GpuSupportsGeometryShaders,
const char *GpuVendorId,
int8_t GpuMultiThreadedRendering,
const char *GpuGraphicsShaderLevel,
const char *EditorVersion,
const char *UnityInstallMode,
const char *UnityTargetFrameRate,
const char *UnityCopyTextureSupport,
const char *UnityRenderingThreadingMode
) // clang-format on
{ }
NS_ASSUME_NONNULL_END