home *** CD-ROM | disk | FTP | other *** search
- /* wmprintf.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */
-
- #include <stdarg.h>
- #include <sys/winmgr.h>
- #include "winmgr2.h"
-
- int wm_printf (wm_handle wh, const char *fmt, ...)
- {
- va_list arg_ptr;
- int result;
-
- va_start (arg_ptr, fmt);
- result = wm_vprintf (wh, fmt, arg_ptr);
- va_end (arg_ptr);
- return (result);
- }
-