Login Page - Create Account

Support Board


Date/Time: Wed, 10 Sep 2025 22:22:01 +0000



Post From: Keep getting an error.

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