306
Appendix A: System Routines — Apps
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
OO_AppNameToACB
Declaration:
AppID
OO_AppNameToACB
(UCHAR const *
appname
, BOOL
csen
)
Category(ies):
Apps
Description:
Looks up ID of application given the name of the app as it appears in the
O
menu.
Note:
The app’s name of an application is subject to change by language localizers.
Use
EV_getAppID
to find the ID of an app by its internal name. An app’s
internal name is unique and does not change when the language mode setting
is changed.
Inputs:
appname
— Name of application as it appears in
O
menu.
csen
— Case-sensitive comparison, TRUE if
appname
must match
case, FALSE if comparison is case-insensitive.
Outputs:
ID of first app with matching
appname
or 0 if app cannot be found.
Assumptions:
None
Side Effects:
None
Availability:
On AMS 2.00 and higher.
TI-89 / TI-92 Plus
Differences:
None
See Also: EV_getAppID
Example:
/* Get App ID of numeric solver. This may not work if the language
mode setting has been changed to something besides English.
*/
AppID solverID = OO_AppNameToACB("Numeric Solver");