1216
Appendix B: Global Variables — Apps
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
OO_firstACB
Declaration:
AppID
OO_firstACB
Category(ies):
Apps
Description:
ID of the first app in the application control block list.
Inputs:
Not applicable.
Outputs:
Not applicable.
Assumptions:
Access_AMS_Global_Variables must be defined.
Side Effects:
Not applicable.
Availability:
On AMS 2.00 and higher.
TI-89 / TI-92 Plus
Differences:
None
See Also: OO_NextACB, OO_PrevACB
Example:
AppID appid;
for (appid = OO_firstACB; appid != H_NULL; appid = OO_NextACB(appid))
{
/* process each ACB */
.
.
.
}