vyrush
Registered
I wanted to get the ScoringInfoV01.mTrackName value inside the method EnterRealTime() from struct ScoringInfoV01
In the InternalsPlugin.hpp, I have already added
and then inside the EnterRealTime() in Example.cpp
I have added
But this doesn't write anything to the file? What am I doing wrong?
In the InternalsPlugin.hpp, I have already added
Code:
extern ScoringInfoV01 SInfoV01;
and then inside the EnterRealTime() in Example.cpp
I have added
Code:
char *test = SInfoV01.mTrackName
WriteToAllExampleOutputFiles("a",test);
But this doesn't write anything to the file? What am I doing wrong?