Support Board
Date/Time: Sun, 06 Jul 2025 10:12:35 +0000
Post From: Keep getting an error.
[2025-06-29 16:03:26] |
User431178 - Posts: 733 |
error: two or more data types in declaration of 'scsf_TestStudy'
Means that this is wrong: SCSFExport void scsf_TestStudy(SCStudyInterfaceRef sc) The macro, SCSFExport, includes the function type already, so the void in your declaration is causing the "two or more data types" error. Use this instead: SCSFExport scsf_TestStudy(SCStudyInterfaceRef sc) This is the same answer to the last time you posted the same error - Why does this test cpp keep getting the same error? |