This commit is contained in:
2025-05-19 12:30:48 -04:00
commit 89faad3602
47 changed files with 1420 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <amscimglib4/amscimglib4.h>
#include <amscimglib4/amscimglib4_intl.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}; //end extern "C"
#endif

View File

@ -0,0 +1,15 @@
#include <amscimglib4/amscimglib4.h>
#include <amscimglib4/amscimglib4_intl.h>
#ifdef __cplusplus
extern "C" {
#endif
AMSCIMGLIB4_API int amscimglib4_exportedtestfn(int a, int b)
{
return a*a+b*b;
}
#ifdef __cplusplus
}; //end extern "C"
#endif

View File

@ -0,0 +1,12 @@
#include <amscimglib4/amscimglib4.h>
#include <amscimglib4/amscimglib4_intl.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}; //end extern "C"
#endif

View File

@ -0,0 +1,12 @@
#include <amscimglib4/amscimglib4.h>
#include <amscimglib4/amscimglib4_intl.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}; //end extern "C"
#endif

9
src/main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <amscimglib4/amscimglib4.h>
#include <amscimglib4/amscimglib4_intl.h>
int main(int argc, char* argv[])
{
int ret = 0;
return ret;
}