mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-24 15:55:14 +00:00
Removed empty implementations of PDC_fix_cursor(). To Do: Complete
removal?
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
#include <curses.h>
|
||||
#include <string.h>
|
||||
|
||||
RCSID("$Id: pdcdisp.c,v 1.25 2006/07/15 15:38:24 wmcbrine Exp $");
|
||||
RCSID("$Id: pdcdisp.c,v 1.26 2006/07/15 16:07:05 wmcbrine Exp $");
|
||||
|
||||
extern unsigned char atrtab[MAX_ATRTAB];
|
||||
|
||||
@@ -83,38 +83,6 @@ int PDC_cursor_off(void)
|
||||
return OK;
|
||||
}
|
||||
|
||||
/*man-start**************************************************************
|
||||
|
||||
PDC_fix_cursor() - Fix the cursor start and stop scan lines
|
||||
(if necessary)
|
||||
|
||||
PDCurses Description:
|
||||
This is a private PDCurses routine.
|
||||
|
||||
This routine will fix the cursor shape for certain video
|
||||
adapters. Normally, the values used are correct, but some
|
||||
adapters choke. The most noticable choke is on a monochrome
|
||||
adapter. The "correct" scan lines will result in the cursor
|
||||
being set in the middle of the character cell, rather than at
|
||||
the bottom.
|
||||
|
||||
The passed flag indicates whether the cursor is visible or not.
|
||||
|
||||
This only applies to the DOS platform.
|
||||
|
||||
PDCurses Return Value:
|
||||
This function returns OK on success and ERR on error.
|
||||
|
||||
Portability:
|
||||
PDCurses int PDC_fix_cursor(int flag);
|
||||
|
||||
**man-end****************************************************************/
|
||||
|
||||
int PDC_fix_cursor(int flag)
|
||||
{
|
||||
return OK;
|
||||
}
|
||||
|
||||
/*man-start**************************************************************
|
||||
|
||||
PDC_gotoxy() - position hardware cursor at (x, y)
|
||||
|
||||
@@ -276,7 +276,6 @@ EXPORTS PDC_copy_win
|
||||
EXPORTS PDC_cursor_off
|
||||
EXPORTS PDC_cursor_on
|
||||
EXPORTS PDC_debug
|
||||
EXPORTS PDC_fix_cursor
|
||||
EXPORTS PDC_getch
|
||||
EXPORTS PDC_getclipboard
|
||||
EXPORTS PDC_get_attribute
|
||||
|
||||
@@ -269,7 +269,6 @@ PDC_copy_win
|
||||
PDC_cursor_off
|
||||
PDC_cursor_on
|
||||
PDC_debug
|
||||
PDC_fix_cursor
|
||||
PDC_getch
|
||||
PDC_getclipboard
|
||||
PDC_get_attribute
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
extern HANDLE hConOut;
|
||||
extern unsigned char atrtab[MAX_ATRTAB];
|
||||
|
||||
RCSID("$Id: pdcdisp.c,v 1.24 2006/07/15 15:38:24 wmcbrine Exp $");
|
||||
RCSID("$Id: pdcdisp.c,v 1.25 2006/07/15 16:07:06 wmcbrine Exp $");
|
||||
|
||||
/*man-start**************************************************************
|
||||
|
||||
@@ -93,38 +93,6 @@ int PDC_cursor_off(void)
|
||||
return OK;
|
||||
}
|
||||
|
||||
/*man-start**************************************************************
|
||||
|
||||
PDC_fix_cursor() - Fix the cursor start and stop scan lines
|
||||
(if necessary)
|
||||
|
||||
PDCurses Description:
|
||||
This is a private PDCurses routine.
|
||||
|
||||
This routine will fix the cursor shape for certain video
|
||||
adapters. Normally, the values used are correct, but some
|
||||
adapters choke. The most noticable choke is on a monochrome
|
||||
adapter. The "correct" scan lines will result in the cursor
|
||||
being set in the middle of the character cell, rather than at
|
||||
the bottom.
|
||||
|
||||
The passed flag indicates whether the cursor is visible or not.
|
||||
|
||||
This only applies to the DOS platform.
|
||||
|
||||
PDCurses Return Value:
|
||||
This function returns OK on success and ERR on error.
|
||||
|
||||
Portability:
|
||||
PDCurses int PDC_fix_cursor(int flag);
|
||||
|
||||
**man-end****************************************************************/
|
||||
|
||||
int PDC_fix_cursor(int flag)
|
||||
{
|
||||
return OK;
|
||||
}
|
||||
|
||||
/*man-start**************************************************************
|
||||
|
||||
PDC_gotoxy() - position hardware cursor at (x, y)
|
||||
|
||||
Reference in New Issue
Block a user