HP 3000 Manuals

Coding the Intrinsics Calls [ HP DeskManager Intrinsics ] MPE/iX 5.0 Documentation


HP DeskManager Intrinsics

Coding the Intrinsics Calls 

The external definitions of the Intrinsics are in the system file,
SPLINTR.PUB.SYS. Calls are coded in the same way as calls to MPE
Intrinsics.

In COBOL, the Intrinsics must be called using the CALL Intrinsic form of
the call statement.  Any optional unused parameters can be omitted, for
example:

     CALL Intrinsic "HPDUSERSIGNON" USING HPD-STATUS,
     HPD-USER-NAME,HPD-USER-NODE,HPD-PASSWORD

In Pascal, the external definition section of the program has to include
an Intrinsic definition.  For example:

     PROCEDURE HPDUSERSIGNON;Intrinsic;

In a call to the Intrinsic, optional unused parameters can be omitted.
For example:

     HPDUSERSIGNON (HPD_STATUS,HPD_USERNAME,
     HPD_USER_NODE,HPD_PASSWORD);

In FORTRAN, the external definition section of the program has to include
an Intrinsic definition, for example:

     SYSTEM Intrinsic HPDUSERSIGNON

In a call to the Intrinsic, optional unused parameters can be omitted.
For example:

     CALL HPDUSERSIGNON (HPD_STATUS,HPD_USER_NAME,
     HPD_USER_NODE,HPD_PASSWORD)



MPE/iX 5.0 Documentation