wxdragon-sys 0.9.16

Raw FFI bindings to libwxdragon (which statically links wxWidgets).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef WXD_MISC_H
#define WXD_MISC_H

#include "../wxd_types.h"

// --- Miscellaneous System Functions ---

// Produces an audible beep sound
WXD_EXPORTED void
wxd_Bell(void);

// Opens the given URL in the default browser
// Returns true if the browser was successfully launched, false otherwise
WXD_EXPORTED bool
wxd_LaunchDefaultBrowser(const char* url, int flags);

#endif // WXD_MISC_H