home *** CD-ROM | disk | FTP | other *** search
- .model large,pascal
-
- include ems.inc
-
- .code EMS_TEXT
-
- ;ERR PUBLIC __ErrEmsSetHandleAttribute(HEMS hems, BYTE bAttribute);
-
- public __ErrEmsSetHandleAttribute
- __ErrEmsSetHandleAttribute proc \
- hems:word, \
- bAttribute:byte
-
- mov dx,[hems]
- mov bl,[bAttribute]
- EmsCall 5201h
- ret
-
- __ErrEmsSetHandleAttribute endp
-
- end