mTransportIsRunning

Hi,
How I can get mTransportIsRunning flag to check whether the daw’s transport is running,
if I am not wrong, there was GetTime function which return all timeinfo structure parameters.
Any idea?
Thanks in advance.

Tuğrul

Sorry for replying to your post that already past 2yrs.
I recently had the same question and I spent some time researching.
And here is my answer.

ITimeInfo mTImeInfo;
bool mTransportIsRunning = mTimeInfo.mTransportIsRunning;

if(mTransportIsRunning)
{
    // Hooray.
}