breakpad 0.1.0

Basic breakpad/crashpad wrapper for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SENTRY_DATA_DEFINITIONS_H
#define SENTRY_DATA_DEFINITIONS_H

#include "google_breakpad/processor/call_stack.h"
#include "google_breakpad/processor/code_module.h"
#include "google_breakpad/processor/process_state.h"
#include "google_breakpad/processor/stack_frame.h"

#include "cpp/c_mapping.h"

typedef_extern_c(call_stack_t, google_breakpad::CallStack);
typedef_extern_c(code_module_t, google_breakpad::CodeModule);
typedef_extern_c(process_state_t, google_breakpad::ProcessState);
typedef_extern_c(stack_frame_t, google_breakpad::StackFrame);

#endif