fltk-sys 1.5.22

Rust bindings for the FLTK GUI library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <cfltk/cfl_lock.h>
#include <cfltk/cfl_widget.hpp>

#include <FL/Fl.H>

void Fl_mutex_lock() {
#ifndef CFLTK_SINGLE_THREADED
    Fl::lock();
#endif
}

void Fl_mutex_unlock() {
#ifndef CFLTK_SINGLE_THREADED
    Fl::unlock();
#endif
}