Support Board
Date/Time: Tue, 14 Oct 2025 13:01:41 +0000
Post From: error code C2062, C2143 & C2447
[2025-05-06 16:35:39] |
User431178 - Posts: 799 |
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. |