mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
18 lines
513 B
C++
18 lines
513 B
C++
|
|
#pragma once
|
|
|
|
#define LAZPERF_MAJOR_VERSION 1
|
|
#define LAZPERF_MINOR_VERSION 3
|
|
#define LAZPERF_REVISION 0
|
|
#define LAZPERF_VERSION 1.3.0
|
|
|
|
// Note that this __declspec(dllimport) is not necessary and you can remove it if you like.
|
|
// It allows the compiler to make a potential optimization in calling exported functions
|
|
// by using an indirect call rather than a call to a thunk which then calls the exported function.
|
|
#ifdef _WIN32
|
|
#define LAZPERF_EXPORT __declspec(dllimport)
|
|
#else
|
|
#define LAZPERF_EXPORT
|
|
#endif
|
|
|