Support Board
Date/Time: Sat, 28 Dec 2024 08:35:31 +0000
Post From: Use of Global variable in other Study
[2016-04-18 19:16:42] |
User53601 - Posts: 105 |
Hello, I declared global variable in StudyA: SCDLLName("StudyA") int GlobalLastSeparatorIndex; Then I want to get the value of this global variable in StudyB: int Test = GlobalLastSeparatorIndex; Build Output gives this message: error: GlobalLastSeparatorIndex was not declared in this scope How to make StudyB aware of the Global variable? thank you |