Login Page - Create Account

Support Board


Date/Time: Wed, 17 Sep 2025 08:23:25 +0000



Post From: Programming Help ACSIL

[2022-11-07 08:25:56]
User431178 - Posts: 780
Change

s_sc.UseTool(Tool);

to

sc.UseTool(Tool);

That is all.

s_sc is the type of struct, your function needs to use 'sc', which is a reference passed into the function by SCStudyInterfaceRef sc.
SCStudyInterfaceRef is typedef alias for s_sc&, and sc is the variable name.