delorie.com/djgpp/doc/libc/libc_678.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <pc.h> void ScreenPutChar(int ch, int attr, int col, int row); |
This function writes the character whose value is specified in ch with an attribute attr at row given by row and column given by col, which are zero-based. It does so by directly accessing the video memory, so it will only work when the screen is in text mode.
None.
ANSI/ISO C | No |
POSIX | No |
ScreenPutChar('R', (BLUE << 4) | LIGHTMAGENTA, 75, 0); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |