home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / OS2 / VIO58.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-01  |  402 b   |  17 lines

  1. /* vio58.c */
  2.  
  3. #define INCL_AVIO
  4. #include <os2.h>
  5.  
  6. USHORT _THUNK_FUNCTION (Vio16GetDeviceCellSize) ();
  7.  
  8. USHORT VioGetDeviceCellSize (PSHORT psHeight, PSHORT psWidth, HVPS hvps)
  9. {
  10.   return ((USHORT)
  11.           (_THUNK_PROLOG (4+4+2);
  12.            _THUNK_FLAT (psHeight);
  13.            _THUNK_FLAT (psWidth);
  14.            _THUNK_SHORT (hvps);
  15.            _THUNK_CALL (Vio16GetDeviceCellSize)));
  16. }
  17.