fltk-sys 0.14.8

Rust bindings for the FLTK GUI library
Documentation
1
2
3
4
5
6
7
8
9
#pragma once

#ifndef LOCK
#define LOCK(x)                                                                                    \
    Fl::lock();                                                                                    \
    x;                                                                                             \
    Fl::unlock();                                                                                  \
    Fl::awake();
#endif