-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
342 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
#ifndef eng_Export_H | ||
#define eng_Export_H | ||
|
||
#ifdef eng_BUILT_AS_STATIC | ||
# define eng_Export | ||
# define ENG_NO_EXPORT | ||
#else | ||
# ifndef eng_Export | ||
# ifdef eng_EXPORTS | ||
/* We are building this library */ | ||
# define eng_Export __attribute__((visibility("default"))) | ||
# else | ||
/* We are using this library */ | ||
# define eng_Export __attribute__((visibility("default"))) | ||
# endif | ||
# endif | ||
|
||
# ifndef ENG_NO_EXPORT | ||
# define ENG_NO_EXPORT __attribute__((visibility("hidden"))) | ||
# endif | ||
#endif | ||
|
||
#ifndef ENG_DEPRECATED | ||
# define ENG_DEPRECATED __attribute__ ((__deprecated__)) | ||
#endif | ||
|
||
#ifndef ENG_DEPRECATED_EXPORT | ||
# define ENG_DEPRECATED_EXPORT eng_Export ENG_DEPRECATED | ||
#endif | ||
|
||
#ifndef ENG_DEPRECATED_NO_EXPORT | ||
# define ENG_DEPRECATED_NO_EXPORT ENG_NO_EXPORT ENG_DEPRECATED | ||
#endif | ||
|
||
#if 0 /* DEFINE_NO_DEPRECATED */ | ||
# ifndef ENG_NO_DEPRECATED | ||
# define ENG_NO_DEPRECATED | ||
# endif | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
#ifndef mex_Export_H | ||
#define mex_Export_H | ||
|
||
#ifdef mex_BUILT_AS_STATIC | ||
# define mex_Export | ||
# define MEX_NO_EXPORT | ||
#else | ||
# ifndef mex_Export | ||
# ifdef mex_EXPORTS | ||
/* We are building this library */ | ||
# define mex_Export __attribute__((visibility("default"))) | ||
# else | ||
/* We are using this library */ | ||
# define mex_Export __attribute__((visibility("default"))) | ||
# endif | ||
# endif | ||
|
||
# ifndef MEX_NO_EXPORT | ||
# define MEX_NO_EXPORT __attribute__((visibility("hidden"))) | ||
# endif | ||
#endif | ||
|
||
#ifndef MEX_DEPRECATED | ||
# define MEX_DEPRECATED __attribute__ ((__deprecated__)) | ||
#endif | ||
|
||
#ifndef MEX_DEPRECATED_EXPORT | ||
# define MEX_DEPRECATED_EXPORT mex_Export MEX_DEPRECATED | ||
#endif | ||
|
||
#ifndef MEX_DEPRECATED_NO_EXPORT | ||
# define MEX_DEPRECATED_NO_EXPORT MEX_NO_EXPORT MEX_DEPRECATED | ||
#endif | ||
|
||
#if 0 /* DEFINE_NO_DEPRECATED */ | ||
# ifndef MEX_NO_DEPRECATED | ||
# define MEX_NO_DEPRECATED | ||
# endif | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
#ifndef mx_Export_H | ||
#define mx_Export_H | ||
|
||
#ifdef mx_BUILT_AS_STATIC | ||
# define mx_Export | ||
# define MX_NO_EXPORT | ||
#else | ||
# ifndef mx_Export | ||
# ifdef mx_EXPORTS | ||
/* We are building this library */ | ||
# define mx_Export __attribute__((visibility("default"))) | ||
# else | ||
/* We are using this library */ | ||
# define mx_Export __attribute__((visibility("default"))) | ||
# endif | ||
# endif | ||
|
||
# ifndef MX_NO_EXPORT | ||
# define MX_NO_EXPORT __attribute__((visibility("hidden"))) | ||
# endif | ||
#endif | ||
|
||
#ifndef MX_DEPRECATED | ||
# define MX_DEPRECATED __attribute__ ((__deprecated__)) | ||
#endif | ||
|
||
#ifndef MX_DEPRECATED_EXPORT | ||
# define MX_DEPRECATED_EXPORT mx_Export MX_DEPRECATED | ||
#endif | ||
|
||
#ifndef MX_DEPRECATED_NO_EXPORT | ||
# define MX_DEPRECATED_NO_EXPORT MX_NO_EXPORT MX_DEPRECATED | ||
#endif | ||
|
||
#if 0 /* DEFINE_NO_DEPRECATED */ | ||
# ifndef MX_NO_DEPRECATED | ||
# define MX_NO_DEPRECATED | ||
# endif | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef ut_H | ||
#define ut_H | ||
#include "ut_Export.h" | ||
|
||
extern "C" | ||
{ | ||
|
||
// Undocumented Matlab API | ||
bool ut_Export utIsInterruptPending(void); | ||
void ut_Export utSetInterruptPending(bool); | ||
|
||
} | ||
|
||
#endif // ut_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
#ifndef ut_Export_H | ||
#define ut_Export_H | ||
|
||
#ifdef ut_BUILT_AS_STATIC | ||
# define ut_Export | ||
# define UT_NO_EXPORT | ||
#else | ||
# ifndef ut_Export | ||
# ifdef ut_EXPORTS | ||
/* We are building this library */ | ||
# define ut_Export __attribute__((visibility("default"))) | ||
# else | ||
/* We are using this library */ | ||
# define ut_Export __attribute__((visibility("default"))) | ||
# endif | ||
# endif | ||
|
||
# ifndef UT_NO_EXPORT | ||
# define UT_NO_EXPORT __attribute__((visibility("hidden"))) | ||
# endif | ||
#endif | ||
|
||
#ifndef UT_DEPRECATED | ||
# define UT_DEPRECATED __attribute__ ((__deprecated__)) | ||
#endif | ||
|
||
#ifndef UT_DEPRECATED_EXPORT | ||
# define UT_DEPRECATED_EXPORT ut_Export UT_DEPRECATED | ||
#endif | ||
|
||
#ifndef UT_DEPRECATED_NO_EXPORT | ||
# define UT_DEPRECATED_NO_EXPORT UT_NO_EXPORT UT_DEPRECATED | ||
#endif | ||
|
||
#if 0 /* DEFINE_NO_DEPRECATED */ | ||
# ifndef UT_NO_DEPRECATED | ||
# define UT_NO_DEPRECATED | ||
# endif | ||
#endif | ||
|
||
#endif |
Oops, something went wrong.