Login Page - Create Account

Support Board


Date/Time: Wed, 27 Aug 2025 02:43:27 +0000



Post From: error code C2062, C2143 & C2447

[2025-05-06 16:35:39]
User431178 - Posts: 765
I just noticed what it is...

This is wrong:

SCSFExport void scsf_TestCompileCheck(SCStudyInterfaceRef sc)

Should instead be:

SCSFExport scsf_TestCompileCheck(SCStudyInterfaceRef sc)

SCSFExport is a macro that sets the return type for the function, amongst other things, so your "void" is not needed.