libobs 2.0.5

LibOBS bindings for Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "../c99defs.h"
#include "../dstr.h"

#ifdef __cplusplus
extern "C" {
#endif

EXPORT char *cfstr_copy_cstr(CFStringRef cfstr, CFStringEncoding cfstr_enc);

EXPORT bool cfstr_copy_dstr(CFStringRef cfstr, CFStringEncoding cfstr_enc, struct dstr *str);

#ifdef __cplusplus
}
#endif