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

  1. /* wmprintf.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */
  2.  
  3. #include <stdarg.h>
  4. #include <sys/winmgr.h>
  5. #include "winmgr2.h"
  6.  
  7. int wm_printf (wm_handle wh, const char *fmt, ...)
  8. {
  9.   va_list arg_ptr;
  10.   int result;
  11.  
  12.   va_start (arg_ptr, fmt);
  13.   result = wm_vprintf (wh, fmt, arg_ptr);
  14.   va_end (arg_ptr);
  15.   return (result);
  16. }
  17.