home *** CD-ROM | disk | FTP | other *** search
- (* ====================================================== *)
- (* PMVIO.PAS *)
- (* Implementation of the function of PMVIOP.DLL *)
- (* PM Default Virtual IO Procedure *)
- (* Translated to Pascal by wr/toolbox mag *)
- (* ====================================================== *)
- {$IFNDEF OS2}
- Error: Wrong target/Compiler not patched
- {$ENDIF}
-
- UNIT PMVioP;
-
- INTERFACE
-
- USES
- Os2Def;
-
- FUNCTION WinDefAVioWindowProc(hWnd : hWnd;
- us : WORD;
- m1 {VALUE}: mParam;
- m2 {VALUE}: mParam
- ): mResult;
-
- FUNCTION Win16DefAVioWindowProc(hWnd : hWnd;
- us : WORD;
- m1 {VALUE}: mParam;
- m2 {VALUE}: mParam
- ): mResult;
-
- IMPLEMENTATION
-
- FUNCTION WinDefAVioWindowProc; EXTERNAL 'PMVIOP' INDEX 30;
- FUNCTION Win16DefAVioWindowProc; EXTERNAL 'PMVIOP' INDEX 30;
-
- END.
-
- (* ====================================================== *)