summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2021-10-11 09:56:50 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2021-10-11 09:56:56 +0200
commit50025b3301c0148e162be2bf15d94908617ad747 (patch)
tree7962083e59cf05bfb9af17ce41b827aadb447a38 /include
parentd79ea50cc33cd67650c044365f8dcba21e01072b (diff)
downloadastra-50025b3301c0148e162be2bf15d94908617ad747.tar.gz
astra-50025b3301c0148e162be2bf15d94908617ad747.tar.bz2
astra-50025b3301c0148e162be2bf15d94908617ad747.tar.xz
astra-50025b3301c0148e162be2bf15d94908617ad747.zip
Fix Windows exports
Diffstat (limited to 'include')
-rw-r--r--include/astra/Globals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astra/Globals.h b/include/astra/Globals.h
index 3eed113..2f0aabb 100644
--- a/include/astra/Globals.h
+++ b/include/astra/Globals.h
@@ -159,11 +159,11 @@ namespace astra {
* abort signal has arrived, or NULL to disable. Intended to be used by the
* matlab/python interfaces to check if Ctrl-C has been pressed.
*/
-void setShouldAbortHook(bool (*pShouldAbortHook)(void));
+_AstraExport void setShouldAbortHook(bool (*pShouldAbortHook)(void));
/** Check if we should abort execution (due to an external signal).
*/
-bool shouldAbort();
+_AstraExport bool shouldAbort();
}
//----------------------------------------------------------------------------------------