home *** CD-ROM | disk | FTP | other *** search
- /*
-
- pccursor.cpp
- 7-30-91
- Cursor shape class for IBM PC text modes.
-
- Copyright 1991
- John W. Small
- All rights reserved
- Use freely but acknowledge authorship and copyright.
-
- PSW / Power SoftWare
- P.O. Box 10072
- McLean, Virginia 22102 8072 USA
-
- John Small
- Voice : (703) 759-3838
- CIS: 73757,2233
-
- */
-
- #include <pccursor.hpp>
-
- void CursorShape::putshape(unsigned shape)
- { /* Don't make inline to avoid optimizer induced errors! */
- prevshape = getshape();
- _CX = shape;
- _AH = 0x01;
- geninterrupt(0x10);
- }
-