summaryrefslogtreecommitdiffstats
path: root/fltk-2/include/fltk/load_plugin.h
blob: fe234b17ff914feb32577f5fcfb818464d37776d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*! \file
  This is a convienence function for portable loading of a plugin
  and possibly returing a symbol in that plugin. The function is
  \e not in the fltk namespace!
*/

#ifndef fl_load_plugin_h
#define fl_load_plugin_h

#include "FL_API.h"

FL_API void* load_plugin(const char* name, const char* symbol);

#endif