home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / INTERNET / UPC2S1.ZIP / WINUTIL.H < prev   
C/C++ Source or Header  |  1993-08-02  |  2KB  |  58 lines

  1. #ifndef _WINUTIL_H
  2. #define _WINUTIL_H
  3.  
  4. /*--------------------------------------------------------------------*/
  5. /*       w i n u t i l . h                                            */
  6. /*                                                                    */
  7. /*       Windows 3.1 utility functions for UUPC/extended              */
  8. /*--------------------------------------------------------------------*/
  9.  
  10. /*--------------------------------------------------------------------*/
  11. /*       Copyright (c) Robert Denny, 1993                             */
  12. /*--------------------------------------------------------------------*/
  13.  
  14. /*--------------------------------------------------------------------*/
  15. /*       Changes Copyright (c) 1989-1993 by Kendra Electronic         */
  16. /*       Wonderworks.                                                 */
  17. /*                                                                    */
  18. /*       All rights reserved except those explicitly granted by       */
  19. /*       the UUPC/extended license agreement.                         */
  20. /*--------------------------------------------------------------------*/
  21.  
  22. /*--------------------------------------------------------------------*/
  23. /*                          RCS Information                           */
  24. /*--------------------------------------------------------------------*/
  25.  
  26. /*
  27.  *    $Id: winutil.h 1.3 1993/08/02 03:26:05 ahd Exp $
  28.  *
  29.  *    Revision history:
  30.  *    $Log: winutil.h $
  31.  * Revision 1.3  1993/08/02  03:26:05  ahd
  32.  * Further changes in support of Robert Denny's Windows 3.x support
  33.  *
  34.  * Revision 1.2  1993/07/31  16:28:59  ahd
  35.  * Changes in support of Robert Denny's Windows Support
  36.  *
  37.  * Revision 1.1  1993/07/22  23:26:19  ahd
  38.  * Initial revision
  39.  */
  40.  
  41. extern HTASK hOurTask;           // Our task handle
  42. extern HWND hOurWindow;          // Our EasyWin main window handle
  43. extern HINSTANCE _hInstance;     // Defined/set by TCWIN runtime
  44.  
  45.  
  46. HWND FindTaskWindow(HTASK hTask, LPSTR lpszClassName);
  47.  
  48. void SetWndFixedFont(HWND hWnd, int nPtSize, char *lfFaceName);
  49.  
  50. int SpawnWait( const char *cmdLine,
  51.                const char *parameters,
  52.                const boolean synchronous,
  53.                const UINT fuCmdShow);
  54.  
  55. void CloseEasyWin(void);
  56.  
  57. #endif
  58.