blob: 1cf530cdced3c54b5bdb8a6a4013967e78ccd7aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Programmed by Jedidiah Barber
// Released into the public domain
#ifndef FL_DISPLAY_DEVICE_GUARD
#define FL_DISPLAY_DEVICE_GUARD
typedef void* DISPLAYDEVICE;
extern "C" DISPLAYDEVICE new_fl_display_device(void * g);
extern "C" void free_fl_display_device(DISPLAYDEVICE d);
extern "C" DISPLAYDEVICE fl_display_device_display_device();
#endif
|