Appendix A: System Routines — Apps
303
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
OO_appGetPublicStorage
Declaration:
ULONG
OO_appGetPublicStorage
(void)
Category(ies):
Apps
Description:
Get the contents of the running app’s public storage. See
OO_appSetPublicStorage
for a description of public storage.
Inputs:
None
Outputs:
Public storage may contain anything which fits in 32 bits. You must cast the
return value to the type of data actually stored in public storage if it is not
an unsigned integer.
Assumptions:
This routine fetches public storage from the application indicated by the
app ID in OS global variable
EV_runningApp
. TI
-
BASIC extension
functions and shared-code libraries may exist in a different app. These
types of routines are often called as subroutines from other applications, in
which case
EV_runningApp
contains not the ID of the app containing your
subroutine, but the ID of the calling application.
Side Effects:
None
Availability:
On AMS 2.00 and higher.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: OO_appSetPublicStorage
Example:
See
OO_appSetPublicStorage
.