├── 01-BasicExamples ├── 01-DoingNothing │ ├── .gitignore │ ├── CMakeLists.txt │ ├── DoNothing.cpp │ ├── DoNothing.nb │ ├── DoNothing.wls │ └── README.md ├── 02-Strings │ ├── Greetings │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Greetings.cpp │ │ ├── Greetings.nb │ │ ├── Greetings.wls │ │ └── README.md │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.nb │ │ ├── HelloWorld.wls │ │ └── README.md │ ├── NumberToString │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── NumberToString.cpp │ │ ├── NumberToString.nb │ │ ├── NumberToString.wls │ │ └── README.md │ ├── README.md │ ├── ReverseString │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── ReverseString.cpp │ │ ├── ReverseString.nb │ │ └── ReverseString.wls │ └── StringToNumber │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── StringToNumber.cpp │ │ ├── StringToNumber.nb │ │ └── StringToNumber.wls ├── 03-Numbers │ ├── Complex │ │ └── Multiplication │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Multiplication.cpp │ │ │ ├── Multiplication.nb │ │ │ ├── Multiplication.wls │ │ │ └── README.md │ ├── Integer │ │ └── Addition │ │ │ ├── .gitignore │ │ │ ├── Addition.cpp │ │ │ ├── Addition.nb │ │ │ ├── Addition.wls │ │ │ ├── CMakeLists.txt │ │ │ └── README.md │ ├── README.md │ └── Real │ │ └── Division │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Division.cpp │ │ ├── Division.nb │ │ ├── Division.wls │ │ └── README.md ├── 04-Tensors │ ├── Integer │ │ └── MatrixAddition │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── MatrixAddition.cpp │ │ │ ├── MatrixAddition.nb │ │ │ ├── MatrixAddition.wls │ │ │ └── README.md │ └── Real │ │ └── MatrixMultiplication │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── MatrixMultiplication.cpp │ │ ├── MatrixMultiplication.nb │ │ ├── MatrixMultiplication.wls │ │ └── README.md ├── 05-Expressions │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.nb │ │ ├── HelloWorld.wls │ │ └── README.md │ └── README.md ├── 06-BinaryData │ ├── AddRawArrays │ │ ├── .gitignore │ │ ├── AddRawArrays.cpp │ │ ├── AddRawArrays.nb │ │ ├── AddRawArrays.wls │ │ ├── CMakeLists.txt │ │ └── README.md │ ├── EchoRawArray │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── EchoRawArray.cpp │ │ ├── EchoRawArray.nb │ │ ├── EchoRawArray.wls │ │ └── README.md │ └── NewRawArray │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── NewRawArray.cpp │ │ ├── NewRawArray.nb │ │ ├── NewRawArray.wls │ │ └── README.md └── README.md ├── 02-IntermediateExamples ├── Asynchronous │ └── AsynchronousReals │ │ ├── .gitignore │ │ ├── AsynchronousReals.cpp │ │ ├── AsynchronousReals.nb │ │ ├── AsynchronousReals.wls │ │ ├── CMakeLists.txt │ │ └── README.md ├── MultipleFiles │ ├── IntegerArithmetic │ │ ├── .gitignore │ │ ├── Add.cpp │ │ ├── CMakeLists.txt │ │ ├── Initialize.cpp │ │ ├── IntegerArithmetic.nb │ │ ├── IntegerArithmetic.wls │ │ ├── Multiply.cpp │ │ └── README.md │ └── README.md └── Objects │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Objects.cpp │ ├── Objects.nb │ ├── Objects.wls │ ├── README.md │ ├── Rectangle.cpp │ └── Rectangle.h ├── Components ├── LibraryLink │ ├── include │ │ ├── WolframCompileLibrary.h │ │ ├── WolframIOLibraryFunctions.h │ │ ├── WolframImageLibrary.h │ │ ├── WolframLibrary.h │ │ ├── WolframRTL.h │ │ ├── WolframRTLExports.h │ │ ├── WolframRawArrayLibrary.h │ │ ├── WolframSparseLibrary.h │ │ ├── WolframStreamsLibrary.h │ │ ├── dllexport.h │ │ ├── extern.h │ │ ├── machfunc_increments.h │ │ ├── os-thread.h │ │ ├── rtl_processor_count.h │ │ └── types.h │ └── lib │ │ ├── Linux-x86-64 │ │ ├── libWolframRTL.so │ │ ├── libWolframRTL_Kernel.a │ │ ├── libWolframRTL_Minimal.so │ │ └── libWolframRTL_Static_Minimal.a │ │ ├── MacOSX-x86-64 │ │ ├── libWolframRTL.dylib │ │ ├── libWolframRTL_Kernel.a │ │ ├── libWolframRTL_Minimal.dylib │ │ └── libWolframRTL_Static_Minimal.a │ │ └── Windows-x86-64 │ │ ├── WolframRTL.dll │ │ ├── WolframRTL.lib │ │ ├── WolframRTL_Minimal.dll │ │ ├── WolframRTL_Minimal.lib │ │ └── WolframRTL_Static_Minimal.lib └── WSTP │ ├── include │ └── wstp.h │ └── lib │ ├── Linux-x86-64 │ ├── libWSTP32i4.a │ ├── libWSTP32i4.so │ ├── libWSTP64i4.a │ └── libWSTP64i4.so │ ├── MacOSX-x86-64 │ ├── libWSTPi4.36.a │ └── libWSTPi4.a │ └── Windows-x86-64 │ ├── wstp64i4.dll │ ├── wstp64i4.lib │ ├── wstp64i4m.lib │ └── wstp64i4s.lib └── README.md /01-BasicExamples/01-DoingNothing/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/01-DoingNothing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/01-DoingNothing/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/01-DoingNothing/DoNothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/01-DoingNothing/DoNothing.cpp -------------------------------------------------------------------------------- /01-BasicExamples/01-DoingNothing/DoNothing.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/01-DoingNothing/DoNothing.nb -------------------------------------------------------------------------------- /01-BasicExamples/01-DoingNothing/DoNothing.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/01-DoingNothing/DoNothing.wls -------------------------------------------------------------------------------- /01-BasicExamples/01-DoingNothing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/01-DoingNothing/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/Greetings/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/Greetings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/Greetings/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/Greetings/Greetings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/Greetings/Greetings.cpp -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/Greetings/Greetings.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/Greetings/Greetings.nb -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/Greetings/Greetings.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/Greetings/Greetings.wls -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/Greetings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/Greetings/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/HelloWorld/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/HelloWorld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/HelloWorld/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/HelloWorld/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/HelloWorld/HelloWorld.cpp -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/HelloWorld/HelloWorld.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/HelloWorld/HelloWorld.nb -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/HelloWorld/HelloWorld.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/HelloWorld/HelloWorld.wls -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/HelloWorld/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/NumberToString/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/NumberToString/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/NumberToString/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/NumberToString/NumberToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/NumberToString/NumberToString.cpp -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/NumberToString/NumberToString.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/NumberToString/NumberToString.nb -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/NumberToString/NumberToString.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/NumberToString/NumberToString.wls -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/NumberToString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/NumberToString/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/ReverseString/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/ReverseString/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/ReverseString/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/ReverseString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/ReverseString/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/ReverseString/ReverseString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/ReverseString/ReverseString.cpp -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/ReverseString/ReverseString.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/ReverseString/ReverseString.nb -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/ReverseString/ReverseString.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/ReverseString/ReverseString.wls -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/StringToNumber/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/StringToNumber/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/StringToNumber/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/StringToNumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/StringToNumber/README.md -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/StringToNumber/StringToNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/StringToNumber/StringToNumber.cpp -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/StringToNumber/StringToNumber.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/StringToNumber/StringToNumber.nb -------------------------------------------------------------------------------- /01-BasicExamples/02-Strings/StringToNumber/StringToNumber.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/02-Strings/StringToNumber/StringToNumber.wls -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Complex/Multiplication/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Complex/Multiplication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Complex/Multiplication/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Complex/Multiplication/Multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Complex/Multiplication/Multiplication.cpp -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Complex/Multiplication/Multiplication.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Complex/Multiplication/Multiplication.nb -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Complex/Multiplication/Multiplication.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Complex/Multiplication/Multiplication.wls -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Complex/Multiplication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Complex/Multiplication/README.md -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Integer/Addition/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Integer/Addition/Addition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Integer/Addition/Addition.cpp -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Integer/Addition/Addition.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Integer/Addition/Addition.nb -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Integer/Addition/Addition.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Integer/Addition/Addition.wls -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Integer/Addition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Integer/Addition/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Integer/Addition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Integer/Addition/README.md -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/README.md -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Real/Division/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Real/Division/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Real/Division/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Real/Division/Division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Real/Division/Division.cpp -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Real/Division/Division.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Real/Division/Division.nb -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Real/Division/Division.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Real/Division/Division.wls -------------------------------------------------------------------------------- /01-BasicExamples/03-Numbers/Real/Division/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/03-Numbers/Real/Division/README.md -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Integer/MatrixAddition/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Integer/MatrixAddition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Integer/MatrixAddition/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Integer/MatrixAddition/MatrixAddition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Integer/MatrixAddition/MatrixAddition.cpp -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Integer/MatrixAddition/MatrixAddition.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Integer/MatrixAddition/MatrixAddition.nb -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Integer/MatrixAddition/MatrixAddition.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Integer/MatrixAddition/MatrixAddition.wls -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Integer/MatrixAddition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Integer/MatrixAddition/README.md -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Real/MatrixMultiplication/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Real/MatrixMultiplication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Real/MatrixMultiplication/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Real/MatrixMultiplication/MatrixMultiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Real/MatrixMultiplication/MatrixMultiplication.cpp -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Real/MatrixMultiplication/MatrixMultiplication.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Real/MatrixMultiplication/MatrixMultiplication.nb -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Real/MatrixMultiplication/MatrixMultiplication.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Real/MatrixMultiplication/MatrixMultiplication.wls -------------------------------------------------------------------------------- /01-BasicExamples/04-Tensors/Real/MatrixMultiplication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/04-Tensors/Real/MatrixMultiplication/README.md -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/HelloWorld/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/HelloWorld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/05-Expressions/HelloWorld/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/HelloWorld/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/05-Expressions/HelloWorld/HelloWorld.cpp -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/HelloWorld/HelloWorld.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/05-Expressions/HelloWorld/HelloWorld.nb -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/HelloWorld/HelloWorld.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/05-Expressions/HelloWorld/HelloWorld.wls -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/05-Expressions/HelloWorld/README.md -------------------------------------------------------------------------------- /01-BasicExamples/05-Expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/05-Expressions/README.md -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/AddRawArrays/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/AddRawArrays/AddRawArrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/AddRawArrays/AddRawArrays.cpp -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/AddRawArrays/AddRawArrays.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/AddRawArrays/AddRawArrays.nb -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/AddRawArrays/AddRawArrays.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/AddRawArrays/AddRawArrays.wls -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/AddRawArrays/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/AddRawArrays/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/AddRawArrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/AddRawArrays/README.md -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/EchoRawArray/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/EchoRawArray/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/EchoRawArray/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/EchoRawArray/EchoRawArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/EchoRawArray/EchoRawArray.cpp -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/EchoRawArray/EchoRawArray.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/EchoRawArray/EchoRawArray.nb -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/EchoRawArray/EchoRawArray.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/EchoRawArray/EchoRawArray.wls -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/EchoRawArray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/EchoRawArray/README.md -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/NewRawArray/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/NewRawArray/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/NewRawArray/CMakeLists.txt -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/NewRawArray/NewRawArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/NewRawArray/NewRawArray.cpp -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/NewRawArray/NewRawArray.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/NewRawArray/NewRawArray.nb -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/NewRawArray/NewRawArray.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/NewRawArray/NewRawArray.wls -------------------------------------------------------------------------------- /01-BasicExamples/06-BinaryData/NewRawArray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/06-BinaryData/NewRawArray/README.md -------------------------------------------------------------------------------- /01-BasicExamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/01-BasicExamples/README.md -------------------------------------------------------------------------------- /02-IntermediateExamples/Asynchronous/AsynchronousReals/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /02-IntermediateExamples/Asynchronous/AsynchronousReals/AsynchronousReals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Asynchronous/AsynchronousReals/AsynchronousReals.cpp -------------------------------------------------------------------------------- /02-IntermediateExamples/Asynchronous/AsynchronousReals/AsynchronousReals.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Asynchronous/AsynchronousReals/AsynchronousReals.nb -------------------------------------------------------------------------------- /02-IntermediateExamples/Asynchronous/AsynchronousReals/AsynchronousReals.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Asynchronous/AsynchronousReals/AsynchronousReals.wls -------------------------------------------------------------------------------- /02-IntermediateExamples/Asynchronous/AsynchronousReals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Asynchronous/AsynchronousReals/CMakeLists.txt -------------------------------------------------------------------------------- /02-IntermediateExamples/Asynchronous/AsynchronousReals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Asynchronous/AsynchronousReals/README.md -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/Add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/Add.cpp -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/CMakeLists.txt -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/Initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/Initialize.cpp -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/IntegerArithmetic.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/IntegerArithmetic.nb -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/IntegerArithmetic.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/IntegerArithmetic.wls -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/Multiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/Multiply.cpp -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/IntegerArithmetic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/IntegerArithmetic/README.md -------------------------------------------------------------------------------- /02-IntermediateExamples/MultipleFiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/MultipleFiles/README.md -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/CMakeLists.txt -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/Objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/Objects.cpp -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/Objects.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/Objects.nb -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/Objects.wls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/Objects.wls -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/README.md -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/Rectangle.cpp -------------------------------------------------------------------------------- /02-IntermediateExamples/Objects/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/02-IntermediateExamples/Objects/Rectangle.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframCompileLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframCompileLibrary.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframIOLibraryFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframIOLibraryFunctions.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframImageLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframImageLibrary.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframLibrary.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframRTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframRTL.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframRTLExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframRTLExports.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframRawArrayLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframRawArrayLibrary.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframSparseLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframSparseLibrary.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/WolframStreamsLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/WolframStreamsLibrary.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/dllexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/dllexport.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/extern.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/machfunc_increments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/machfunc_increments.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/os-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/os-thread.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/rtl_processor_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/rtl_processor_count.h -------------------------------------------------------------------------------- /Components/LibraryLink/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/include/types.h -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Linux-x86-64/libWolframRTL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Linux-x86-64/libWolframRTL.so -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Linux-x86-64/libWolframRTL_Kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Linux-x86-64/libWolframRTL_Kernel.a -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Linux-x86-64/libWolframRTL_Minimal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Linux-x86-64/libWolframRTL_Minimal.so -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Linux-x86-64/libWolframRTL_Static_Minimal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Linux-x86-64/libWolframRTL_Static_Minimal.a -------------------------------------------------------------------------------- /Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL.dylib -------------------------------------------------------------------------------- /Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL_Kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL_Kernel.a -------------------------------------------------------------------------------- /Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL_Minimal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL_Minimal.dylib -------------------------------------------------------------------------------- /Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL_Static_Minimal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/MacOSX-x86-64/libWolframRTL_Static_Minimal.a -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Windows-x86-64/WolframRTL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Windows-x86-64/WolframRTL.dll -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Windows-x86-64/WolframRTL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Windows-x86-64/WolframRTL.lib -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Windows-x86-64/WolframRTL_Minimal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Windows-x86-64/WolframRTL_Minimal.dll -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Windows-x86-64/WolframRTL_Minimal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Windows-x86-64/WolframRTL_Minimal.lib -------------------------------------------------------------------------------- /Components/LibraryLink/lib/Windows-x86-64/WolframRTL_Static_Minimal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/LibraryLink/lib/Windows-x86-64/WolframRTL_Static_Minimal.lib -------------------------------------------------------------------------------- /Components/WSTP/include/wstp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/include/wstp.h -------------------------------------------------------------------------------- /Components/WSTP/lib/Linux-x86-64/libWSTP32i4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Linux-x86-64/libWSTP32i4.a -------------------------------------------------------------------------------- /Components/WSTP/lib/Linux-x86-64/libWSTP32i4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Linux-x86-64/libWSTP32i4.so -------------------------------------------------------------------------------- /Components/WSTP/lib/Linux-x86-64/libWSTP64i4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Linux-x86-64/libWSTP64i4.a -------------------------------------------------------------------------------- /Components/WSTP/lib/Linux-x86-64/libWSTP64i4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Linux-x86-64/libWSTP64i4.so -------------------------------------------------------------------------------- /Components/WSTP/lib/MacOSX-x86-64/libWSTPi4.36.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/MacOSX-x86-64/libWSTPi4.36.a -------------------------------------------------------------------------------- /Components/WSTP/lib/MacOSX-x86-64/libWSTPi4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/MacOSX-x86-64/libWSTPi4.a -------------------------------------------------------------------------------- /Components/WSTP/lib/Windows-x86-64/wstp64i4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Windows-x86-64/wstp64i4.dll -------------------------------------------------------------------------------- /Components/WSTP/lib/Windows-x86-64/wstp64i4.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Windows-x86-64/wstp64i4.lib -------------------------------------------------------------------------------- /Components/WSTP/lib/Windows-x86-64/wstp64i4m.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Windows-x86-64/wstp64i4m.lib -------------------------------------------------------------------------------- /Components/WSTP/lib/Windows-x86-64/wstp64i4s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/Components/WSTP/lib/Windows-x86-64/wstp64i4s.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoudbuzing/wolfram-librarylink-examples/HEAD/README.md --------------------------------------------------------------------------------