Support Board
Date/Time: Sat, 10 May 2025 01:31:54 +0000
Post From: Custom Study Compilation Fails —
[2025-05-07 07:57:24] |
User431178 - Posts: 669 |
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) |