Support Board
Date/Time: Mon, 16 Jun 2025 17:38:43 +0000
Post From: error code C2062, C2143 & C2447
[2025-05-06 16:35:39] |
User431178 - Posts: 713 |
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. |