home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / bpos2i.zip / PMVIOP.PAS < prev    next >
Pascal/Delphi Source File  |  1994-05-31  |  1KB  |  38 lines

  1. (* ====================================================== *)
  2. (*                       PMVIO.PAS                        *)
  3. (*     Implementation of the function of PMVIOP.DLL       *)
  4. (*               PM Default Virtual IO Procedure          *)
  5. (*           Translated to Pascal by wr/toolbox mag       *)
  6. (* ====================================================== *)
  7. {$IFNDEF OS2}
  8.   Error: Wrong target/Compiler not patched
  9. {$ENDIF}
  10.  
  11. UNIT PMVioP;
  12.  
  13. INTERFACE
  14.  
  15. USES
  16.   Os2Def;
  17.  
  18.   FUNCTION WinDefAVioWindowProc(hWnd      : hWnd;
  19.                                 us        : WORD;
  20.                                 m1 {VALUE}: mParam;
  21.                                 m2 {VALUE}: mParam
  22.                                          ): mResult;
  23.  
  24.   FUNCTION Win16DefAVioWindowProc(hWnd      : hWnd;
  25.                                   us        : WORD;
  26.                                   m1 {VALUE}: mParam;
  27.                                   m2 {VALUE}: mParam
  28.                                            ): mResult;
  29.  
  30. IMPLEMENTATION
  31.  
  32. FUNCTION WinDefAVioWindowProc;   EXTERNAL 'PMVIOP' INDEX 30;
  33. FUNCTION Win16DefAVioWindowProc; EXTERNAL 'PMVIOP' INDEX 30;
  34.  
  35. END.
  36.  
  37. (* ====================================================== *)
  38.