home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / bpos13.zip / pmpic.pas < prev    next >
Pascal/Delphi Source File  |  1993-11-24  |  1KB  |  47 lines

  1. {| Unit: pmpic
  2.  | Version: 1.00
  3.  | translated from file pmpic.H
  4.  | Original translation: Peter Sawatzki (ps)
  5.  | Contributing:
  6.  |   (fill in)
  7.  |
  8.  | change history:
  9.  | Date:    Ver: Author:
  10.  | 11/13/93 1.00 ps     original translation by ps
  11. }
  12. Unit pmpic;
  13. Interface
  14. Uses
  15.   Os2Def;
  16. {**************************************************************************\
  17. *
  18. * Module Name: PMPIC.H
  19. *
  20. * OS/2 Presentation Manager Picture function declarations
  21. *
  22. \**************************************************************************}
  23.  
  24. { type of picture to print }
  25.  
  26.  
  27. Const
  28.   PIP_MF                           = 1 ;
  29.   PIP_PIF                          = 2 ;
  30.  
  31.   Function PicPrint (hab: HAB;pszFilename: PSZ;lType: LongInt;pszParams: PSZ): BOOL;
  32.  
  33. { type of conversion required }
  34.  
  35.  
  36. Const
  37.   PIC_PIFTOMET                     = 0 ;
  38.   PIC_SSTOFONT                     = 2 ;
  39.  
  40.   Function PicIchg (hab: HAB;pszFilename1,pszFilename2: PSZ;lType: LongInt): BOOL;
  41.  
  42. Implementation
  43.   Function PicIchg; Begin Unknown('PicIchg','PmPic') End;
  44.   Function PicPrint;                      External 'PMPIC'    Index 1;
  45. End.
  46.  
  47.