home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / VIDEO / WMWRAP.C < prev   
Encoding:
C/C++ Source or Header  |  1993-01-02  |  239 b   |  12 lines

  1. /* wmwrap.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/winmgr.h>
  4. #include "winmgr2.h"
  5.  
  6. void wm_wrap (wm_handle wh, int wrap_flag)
  7. {
  8.   if (wh->used != WM_USED)
  9.     return;
  10.   wh->wrap = wrap_flag;
  11. }
  12.