summaryrefslogtreecommitdiff
path: root/camera/hdr/include/morpho_api.h
blob: 565e29fe3c4018a34c9c8b62aee6a646fd1309dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * @file     morpho_api.h
 * @brief    API�֐���`�̃}�N��
 * @version  1.0.0
 * @date     Tue Sep 21 17:37:35 2010
 *
 * Copyright (C) 2006-2012 Morpho, Inc.
 */

#ifndef MORPHO_API_H
#define MORPHO_API_H

/** 
 * API�֐����`����Ƃ��Ɏg�p.
 * Windows��DLL���쐬����ۓ��ɏ��������邱�ƂŐ؂�ւ��”\
 */
#if defined(MORPHO_DLL) && defined(_WIN32)
#define MORPHO_API(type) __declspec(dllexport) extern type
#else
#define MORPHO_API(type) extern type
#endif

#endif /* #ifndef MORPHO_API_H */