SDK - A_time and other data types
Hi
I'm having some problems understanding the data types in the SDK. Like A_time, A_FpLong etc. I can't see a description of them in the reference. Is there anywhere I can find a list and documentation on them?
In my specific case, which is simply some tests, I am trying to convert the result of AEGP_GetItemCurrentTime to a A_FpLong value holding it's current time in seconds. I do this, but get an error: "no operator "[]" matches these operands".
ERR(suites.ItemSuite6()->AEGP_GetItemCurrentTime(itemH, &currT));
A_FpLong currentTime = &currT[0] / &currT[1];
Any help is much appreciated.
- Jakob
Update: So right after posting I found the answer for my second question. I can do this:
ERR(suites.ItemSuite6()->AEGP_GetItemCurrentTime(itemH, &currT));
A_FpLong currentTime = currT.value / currT.scale;But I'm still not sure how i could have read that out of the reference. This one should be updated, right? https://ae-plugins.docsforadobe.dev/index.html
