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

  1. /* vio37.c */
  2.  
  3. #define INCL_VIO
  4. #include <os2.h>
  5.  
  6. USHORT _THUNK_FUNCTION (Vio16ModeWait) ();
  7.  
  8. USHORT VioModeWait (USHORT usReqType, PUSHORT pNotifyType, USHORT usReserved)
  9. {
  10.   return ((USHORT)
  11.           (_THUNK_PROLOG (2+4+2);
  12.            _THUNK_SHORT (usReqType);
  13.            _THUNK_FLAT (pNotifyType);
  14.            _THUNK_SHORT (usReserved);
  15.            _THUNK_CALL (Vio16ModeWait)));
  16. }
  17.