home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / quot210s.zip / include / pmutil.h < prev    next >
C/C++ Source or Header  |  1998-06-07  |  680b  |  31 lines

  1. /*
  2.  * pmutil.h
  3.  *
  4.  * Header for various PM utility functions.
  5.  *
  6.  *      Created: 4th December, 1997
  7.  * Version 2.00: 4th December, 1997
  8.  *
  9.  * (C) 1997 Nicholas Paul Sheppard
  10.  *
  11.  * This file is distributed under the GNU General Public License. See the
  12.  * file copying.txt for details.
  13.  */
  14.  
  15. #ifndef _NPS_PMUTIL_H
  16. #define _NPS_PMUTIL_H
  17.  
  18. #define INCL_WIN
  19. #define INCL_GPI
  20. #include <os2.h>
  21.  
  22. /* functions in pmscroll.c */
  23. int    ScrollMsgHandler(HWND, ULONG, MPARAM, MPARAM, RECTL *, int);
  24. void    ScrollMetafile(HPS, HWND, HWND, HMF);
  25. void    ScrollSetGeometry(HWND, HWND, HWND, RECTL *);
  26.  
  27. /* functions in pmspawn.c */
  28. HAPP    SpawnPM(HWND, char *, char *);
  29.  
  30. #endif
  31.