home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / OS2 / EMXFIX04.ZIP / MON3.C < prev    next >
C/C++ Source or Header  |  1994-01-09  |  277b  |  15 lines

  1. /* mon3.c */
  2.  
  3. #define INCL_DOSMONITORS
  4. #include <os2.h>
  5.  
  6. USHORT _THUNK_FUNCTION (Dos16MonClose) ();
  7.  
  8. USHORT DosMonClose (HMONITOR hmon)
  9. {
  10.   return ((USHORT)
  11.           (_THUNK_PROLOG (2);
  12.            _THUNK_SHORT (hmon);
  13.            _THUNK_CALL (Dos16MonClose)));
  14. }
  15.