forked from IGSIO/IGSIO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathigsioExport.h.in
More file actions
27 lines (22 loc) · 974 Bytes
/
igsioExport.h.in
File metadata and controls
27 lines (22 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*=IGSIO=header=begin======================================================
Program: IGSIO
Copyright (c) Laboratory for Percutaneous Surgery. All rights reserved.
See License.txt for details.
=========================================================IGSIO=header=end*/
// This file is automatically generated from igsioExport.h.in by GENERATE_EXPORT_DIRECTIVE_FILE macro.
// .NAME __@MY_EXPORT_HEADER_PREFIX@Export - manage Windows system differences
// .SECTION Description
// The __@MY_EXPORT_HEADER_PREFIX@Export manages DLL export syntax differences
// between different operating systems.
#ifndef __@MY_EXPORT_HEADER_PREFIX@Export_h
#define __@MY_EXPORT_HEADER_PREFIX@Export_h
#if defined(WIN32) && !defined(IGSIO_STATIC)
#if defined(@MY_LIBNAME@_EXPORTS)
#define @MY_LIBRARY_EXPORT_DIRECTIVE@ __declspec( dllexport )
#else
#define @MY_LIBRARY_EXPORT_DIRECTIVE@ __declspec( dllimport )
#endif
#else
#define @MY_LIBRARY_EXPORT_DIRECTIVE@
#endif
#endif