Support Board
Date/Time: Fri, 04 Jul 2025 08:15:56 +0000
Post From: Custom Study Compilation Fails —
[2025-05-07 07:57:24] |
User431178 - Posts: 732 |
The code that you've uploaded does not have the error mentioned, it builds correctly. VectorAI.cpp:5:53: error: two or more data types in declaration of 'scsf_VectorAI' 5 | SCSFExport void scsf_VectorAI(SCStudyInterfaceRef sc) This is the cause of the error in whatever code you were trying to compile before (based on the error message above). Incorrect SCSFExport void scsf_VectorAI(SCStudyInterfaceRef sc) Correct SCSFExport scsf_VectorAI(SCStudyInterfaceRef sc) |