Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 84ce1d0

Browse files
committedJun 5, 2019
export symbols
1 parent 95dd3bf commit 84ce1d0

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎create_fractal.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ typedef struct _Img{
55
} Img;
66

77

8-
8+
#ifdef _MSC_VER
9+
#define EXPORT __declspec( dllexport )
10+
#else
11+
#define EXPORT
12+
#endif
13+
EXPORT
914
int create_fractal(Img img, int iters);
15+
EXPORT
1016
int mandel(float real, float imag, int max_iters, unsigned char * val);
1117

‎create_fractal32.dll

0 Bytes
Binary file not shown.

‎create_fractal64.dll

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.