Appendix A: System Routines — Operating System
929
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
EX_getBasecodeParmBlock
Declaration:
BASECODE_PARM_BLOCK const *
EX_getBasecodeParmBlock
(void)
Category(ies):
Operating System
Description:
Get a pointer to the base code parameter block.
Inputs:
None
Outputs:
The base code parameter block contains version information about the
AMS Operating System: the major and minor version number of the AMS
Operating System and date the OS was built.
typedef struct
{
unsigned short len; /* length of parameter block */
unsigned short version_number; /* 1-byte major, 1-byte minor */
unsigned long version_date; /* 2-byte yr, 1-byte mo, 1-byte day *
} BASECODE_PARM_BLOCK;
Assumptions:
None
Side Effects:
None
Availability:
On AMS 2.04 and higher.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also:
Not applicable.
Example:
BASECODE_PARM_BLOCK const *bpb = EX_getBasecodeParmBlock();