IBM Version 4 Universal Remote User Manual


 
deregisters an exit point from the registration
facility.
APIs Used: QusRemoveExitProgram - Remove Exit Program
QusDeregisterExitPoint - Deregister Exit Point
ᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍ
ᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍᑍ
PROGRAM-ID. REGFAC3.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SOURCE-COMPUTER. IBM-AS4.
OBJECT-COMPUTER. IBM-AS4.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT LISTING ASSIGN TO PRINTER-QPRINT
ORGANIZATION IS SEQUENTIAL.
DATA DIVISION.
FILE SECTION.
FD LISTING RECORD CONTAINS 132 CHARACTERS
LABEL RECORDS ARE STANDARD
DATA RECORD IS LIST-LINE.
1 LIST-LINE PIC X(132).
WORKING-STORAGE SECTION.
ᑍ Error Code parameter include. As this sample program
ᑍ uses COPY to include the error code structure, only the first
ᑍ 16 bytes of the error code structure are available. If the
ᑍ application program needs to access the variable length
ᑍ exception data for the error, the developer should physically
ᑍ copy the QSYSINC include and modify the copied include to
ᑍ define additional storage for the exception data.
COPY QUSEC OF QSYSINC-QLBLSRC.
ᑍ Error message text
1 BAD-EXIT-POINT.
5 TEXT1 PIC X(41)
VALUE "Attempt to deregister exit point failed: ".
5 EXCEPTION-ID PIC X(7).
1 BAD-EXIT-PGM.
5 TEXT1 PIC X(39)
VALUE "Attempt to remove exit program failed: ".
5 EXCEPTION-ID PIC X(7).
ᑍ Miscellaneous elements
1 MISC.
5 PGM-NBR PIC S9(9) VALUE 1 BINARY.
5 EXIT-POINT-NAME PIC X(2) VALUE "EXAMPLE_EXIT_POINT".
5 FORMAT-NAME PIC X(8) VALUE "EXMP1".
ᑍ Beginning of mainline
PROCEDURE DIVISION.
MAIN-LINE.
B-88 System API Programming V4R1