Support Board
Date/Time: Wed, 17 Dec 2025 21:15:07 +0000
Post From: Keep getting an error.
| [2025-06-29 16:03:26] |
| User431178 - Posts: 829 |
|
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? |
