Program Listing for File aruco_export.h

Return to documentation for file (/tmp/ws/src/aruco_ros/aruco/include/aruco/aruco_export.h)

#ifndef __OPENARUCO_CORE_TYPES_H__
#define __OPENARUCO_CORE_TYPES_H__

#if !defined _CRT_SECURE_NO_DEPRECATE && _MSC_VER > 1300
#define _CRT_SECURE_NO_DEPRECATE /* to avoid multiple Visual Studio 2005 warnings */
#endif


#if (defined WIN32 || defined _WIN32 || defined WINCE) && defined ARUCO_DSO_EXPORTS
#define ARUCO_EXPORT __declspec(dllexport)
#else
#define ARUCO_EXPORT
#endif


#endif