PylonGigE.h 672 B

1234567891011121314151617181920212223242526272829
  1. //-----------------------------------------------------------------------------
  2. // Basler pylon SDK
  3. // Copyright (c) 2006-2021 Basler AG
  4. // http://www.baslerweb.com
  5. // Author: Hartmut Nebelung
  6. //-----------------------------------------------------------------------------
  7. /*!
  8. \file
  9. \brief Definition of macros for import/export decorations for PylonGigE library
  10. */
  11. #ifndef __PYLONGIGE_H__
  12. #define __PYLONGIGE_H__
  13. #if defined _MSC_VER && (_MSC_VER > 1000)
  14. # pragma once
  15. #endif // _MSC_VER > 1000
  16. #include <pylon/Platform.h>
  17. #ifdef PYLONGIGE_EXPORTS
  18. # define PYLONGIGE_API APIEXPORT
  19. #else
  20. # define PYLONGIGE_API APIIMPORT
  21. #endif
  22. #endif // __PYLONGIGE_H__