diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-11-19 15:37:05 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-11-19 15:37:05 +0100 |
| commit | e6d18cf713b6efc6b9584cce2dc1b30e6aa303d4 (patch) | |
| tree | 37e5962e3fd29f9049a9da8a27db30747940a88d /FL | |
| parent | 619677b75c19173e26adf88f02870b5721f82736 (diff) | |
Add 2 missing FL_EXPORT qualifiers
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/fl_draw.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/fl_draw.H b/FL/fl_draw.H index 576e553d2..3ecd02f30 100644 --- a/FL/fl_draw.H +++ b/FL/fl_draw.H @@ -1078,13 +1078,13 @@ FL_EXPORT void fl_draw_radio(int x, int y, int d, Fl_Color color); any visual of 8 bits or less, and all common TrueColor visuals up to 32 bits. */ -void fl_draw_image(const uchar *buf, int X, int Y, int W, int H, int D = 3, int L = 0); +FL_EXPORT void fl_draw_image(const uchar *buf, int X, int Y, int W, int H, int D = 3, int L = 0); /** Draw a gray-scale (1 channel) image. \see fl_draw_image(const uchar* buf, int X,int Y,int W,int H, int D, int L) */ -void fl_draw_image_mono(const uchar *buf, int X, int Y, int W, int H, int D = 1, int L = 0); +FL_EXPORT void fl_draw_image_mono(const uchar *buf, int X, int Y, int W, int H, int D = 1, int L = 0); /** Draw an image using a callback function to generate image data. |
