Skip to content
Open
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
3 changes: 2 additions & 1 deletion src/sentry_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ generate_propagation_context(sentry_value_t propagation_context)
sentry_value_get_by_key(propagation_context, "trace"));
}

#if defined(SENTRY_PLATFORM_NX) || defined(SENTRY_PLATFORM_PS)
#if defined(SENTRY_PLATFORM_NX) || defined(SENTRY_PLATFORM_PS) \
|| defined(SENTRY_PLATFORM_XBOX)
int
sentry__native_init(sentry_options_t *options)
#else
Expand Down
3 changes: 2 additions & 1 deletion src/sentry_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ bool sentry__should_send_transaction(
sentry_value_t tx_ctx, sentry_sampling_context_t *sampling_ctx);
#endif

#if defined(SENTRY_PLATFORM_NX) || defined(SENTRY_PLATFORM_PS)
#if defined(SENTRY_PLATFORM_NX) || defined(SENTRY_PLATFORM_PS) \
|| defined(SENTRY_PLATFORM_XBOX)
int sentry__native_init(sentry_options_t *options);
#endif

Expand Down
Loading