sentry-contrib-native-sys 0.3.0

Unofficial FFI bindings to the Sentry Native SDK for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SENTRY_UUID_H_INCLUDED
#define SENTRY_UUID_H_INCLUDED

#include "sentry_boot.h"

#ifdef SENTRY_PLATFORM_WINDOWS
/**
 * Create a new UUID from the windows-native GUID type.
 */
sentry_uuid_t sentry__uuid_from_native(GUID *guid);
#endif

#endif