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

  1. /* vdimen.c (emx+gcc) -- Copyright (c) 1987-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/video.h>
  4. #include "video2.h"
  5.  
  6. void v_dimen (int *width, int *height)
  7. {
  8.   *width = _v_width;
  9.   *height = _v_height;
  10. }
  11.