Support Board
Date/Time: Mon, 19 May 2025 02:13:03 +0000
Post From: Put custom studies in a folder
[2024-02-28 04:58:12] |
User719512 - Posts: 310 |
Easiest explanation is to put all your study functions in a single file. You can have multiple source files and just specify the SCDLLNAME in just one file. #include "sierrachart.h" SCDLLName("My Awesome Studies") SCSFExport scsf_Study1(SCStudyInterfaceRef sc) { ... } SCSFExport scsf_Study2(SCStudyInterfaceRef sc) { ... } |