home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / EXTRAS / UUCODE / UUPC / TEST / UPC12ES1.ZIP / LIB / winutil.h < prev   
Encoding:
C/C++ Source or Header  |  1993-10-11  |  2.4 KB  |  61 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.4 1993/10/12 01:22:27 ahd Exp $
  28.  *
  29.  *    Revision history:
  30.  *    $Log: winutil.h $
  31.  * Revision 1.4  1993/10/12  01:22:27  ahd
  32.  * Normalize comments to PL/I style
  33.  *
  34.  * Revision 1.3  1993/08/02  03:26:05  ahd
  35.  * Further changes in support of Robert Denny's Windows 3.x support
  36.  *
  37.  * Revision 1.2  1993/07/31  16:28:59  ahd
  38.  * Changes in support of Robert Denny's Windows Support
  39.  *
  40.  * Revision 1.1  1993/07/22  23:26:19  ahd
  41.  * Initial revision
  42.  */
  43.  
  44. extern HTASK hOurTask;           /* Our task handle                    */
  45. extern HWND hOurWindow;          /* Our EasyWin main window handle     */
  46. extern HINSTANCE _hInstance;     /* Defined/set by TCWIN runtime      */
  47.  
  48.  
  49. HWND FindTaskWindow(HTASK hTask, LPSTR lpszClassName);
  50.  
  51. void SetWndFixedFont(HWND hWnd, int nPtSize, char *lfFaceName);
  52.  
  53. int SpawnWait( const char *cmdLine,
  54.                const char *parameters,
  55.                const boolean synchronous,
  56.                const UINT fuCmdShow);
  57.  
  58. void CloseEasyWin(void);
  59.  
  60. #endif
  61.