Updating built in Io code to use += instead of x = x + y
[io/quag.git] / addons / Image / source / IoImageApi.h
blobf3d4e5e03830440b0e8f8851ff120331843e557d
1 #ifndef IO_IMAGE_API_H
2 #define IO_IMAGE_API_H
4 #ifdef WIN32
5 #ifdef BUILDING_IMAGE_ADDON
6 // we are building the Image addon
7 #define IOIMAGE_API __declspec(dllexport)
8 #else
9 // we link against the Vector addon
10 #define IOIMAGE_API __declspec(dllimport)
11 #endif
12 #else // then not on Windows just define this to nothing
13 #define IOIMAGE_API
14 #endif
16 #endif