Login Page - Create Account

Support Board


Date/Time: Tue, 26 Aug 2025 13:22:10 +0000



Post From: Keep getting an error.

[2025-06-29 16:03:26]
User431178 - Posts: 764
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?