1#ifndef HALFEXPORT_H
2#define HALFEXPORT_H
3
4//
5// Copyright (c) 2008 Lucasfilm Entertainment Company Ltd.
6// All rights reserved. Used under authorization.
7// This material contains the confidential and proprietary
8// information of Lucasfilm Entertainment Company and
9// may not be copied in whole or in part without the express
10// written permission of Lucasfilm Entertainment Company.
11// This copyright notice does not imply publication.
12//
13
14#if defined(OPENEXR_DLL)
15 #if defined(HALF_EXPORTS)
16 #define HALF_EXPORT __declspec(dllexport)
17 #else
18 #define HALF_EXPORT __declspec(dllimport)
19 #endif
20 #define HALF_EXPORT_CONST
21#else
22 #define HALF_EXPORT
23 #define HALF_EXPORT_CONST const
24#endif
25
26#endif // #ifndef HALFEXPORT_H
27
28