home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / vm / src / ems / ems5201.asm < prev    next >
Encoding:
Assembly Source File  |  1993-12-13  |  347 b   |  22 lines

  1.     .model    large,pascal
  2.  
  3.     include ems.inc
  4.  
  5.     .code    EMS_TEXT
  6.  
  7.     ;ERR PUBLIC __ErrEmsSetHandleAttribute(HEMS hems, BYTE bAttribute);
  8.  
  9.     public    __ErrEmsSetHandleAttribute
  10. __ErrEmsSetHandleAttribute    proc    \
  11.     hems:word,            \
  12.     bAttribute:byte
  13.  
  14.     mov    dx,[hems]
  15.     mov    bl,[bAttribute]
  16.     EmsCall 5201h
  17.     ret
  18.  
  19. __ErrEmsSetHandleAttribute    endp
  20.  
  21.     end
  22.