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
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 258 files
26 changes: 20 additions & 6 deletions src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,18 @@ interface SentryDebugMeta : SentrySerializable
[NullAllowed, Export("imageAddress")]
string ImageAddress { get; set; }

// @property (assign, nonatomic) uint64_t imageAddressRaw;
[Export("imageAddressRaw")]
ulong ImageAddressRaw { get; set; }

// @property (copy, nonatomic) NSString * _Nullable imageVmAddress;
[NullAllowed, Export("imageVmAddress")]
string ImageVmAddress { get; set; }

// @property (assign, nonatomic) uint64_t imageVmAddressRaw;
[Export("imageVmAddressRaw")]
ulong ImageVmAddressRaw { get; set; }

// @property (copy, nonatomic) NSString * _Nullable codeFile;
[NullAllowed, Export("codeFile")]
string CodeFile { get; set; }
Expand Down Expand Up @@ -2130,6 +2138,7 @@ interface SentryDebugImageProvider
[Internal]
interface SentryDependencyContainer
{

// +(SentryDependencyContainer * _Nonnull)sharedInstance __attribute__((warn_unused_result("")));
[Static]
[Export("sharedInstance")]
Expand Down Expand Up @@ -2856,15 +2865,20 @@ interface SentrySDK
[Export("reportFullyDisplayed")]
void ReportFullyDisplayed();

// +(id<SentrySpan> _Nullable)extendAppLaunch;
// +(void)extendAppStart;
[Static]
[Export("extendAppStart")]
void ExtendAppStart();

// +(id<SentrySpan> _Nullable)getExtendedAppStartSpan __attribute__((warn_unused_result("")));
[Static]
[NullAllowed, Export("extendAppLaunch")]
SentrySpan ExtendAppLaunch { get; }
[NullAllowed, Export("getExtendedAppStartSpan")]
SentrySpan ExtendedAppStartSpan { get; }

// +(void)finishExtendedAppLaunch;
// +(void)finishExtendedAppStart;
[Static]
[Export("finishExtendedAppLaunch")]
void FinishExtendedAppLaunch();
[Export("finishExtendedAppStart")]
void FinishExtendedAppStart();

// +(void)pauseAppHangTracking;
[Static]
Expand Down
Loading