Login Page - Create Account

Support Board


Date/Time: Sat, 11 Jan 2025 03:16:29 +0000



Post From: Creating a function within a custom study

[2016-10-12 10:59:09]
bala - Posts: 74
Hi,

Not what I was looking for..? / In youer example no paramaters are passsed...plese see below an imaginary example


+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
int calctest(SCStudyInterfaceRef sc, int testsum)
{
  int testsum2;
  testsum2=testsum*1000;
  return testsum2;
}
CSFExport scsf_Mytest2(SCStudyInterfaceRef sc)

{

....

..

Calctest(testsum);

...

return;

}