Lagrange
Toggle main menu visibility
Main Website
Quick Links
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Modules
Pages
api.h
1
#pragma once
2
3
#ifdef LA_IMAGE_IO_STATIC_DEFINE
4
#define LA_IMAGE_IO_API
5
#else
6
#ifndef LA_IMAGE_IO_API
7
#ifdef lagrange_image_io_EXPORTS
8
// We are building this library
9
#if defined(_WIN32) || defined(_WIN64)
10
#define LA_IMAGE_IO_API __declspec(dllexport)
11
#else
12
#define LA_IMAGE_IO_API __attribute__((visibility("default"
)))
13
#endif
14
#else
15
// We are using this library
16
#if defined(_WIN32) || defined(_WIN64)
17
#define LA_IMAGE_IO_API __declspec(dllimport)
18
#else
19
#define LA_IMAGE_IO_API __attribute__((visibility("default"
)))
20
#endif
21
#endif
22
#endif
23
#endif
lagrange
image_io
api.h
Generated by
1.9.4