Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
01 MYDLL.
03 P-MYDLL-NUM PIC 9(09) COMP-5.
03 P-MYDLL REDEFINES P-MYDLL-NUM
USAGE PROCEDURE-POINTER.
PROCEDURE DIVISION.
MAIN SECTION.
MAIN000.
* Loading the dll
SET P-MYDLL TO ENTRY "mydll.dll".
* Check if loading was successfull
IF P-MYDLL-NUM = 0
DISPLAY "Failure loading mydll.dll"
STOP RUN.
* Now you can use all exported functions of mydll.dll
CALL "myfunction" USING ... RETURNING ...