mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-24 07:45:21 +00:00
PDC_newline() can be a little more private.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
* See the file maintain.er for details of the current maintainer. *
|
||||
************************************************************************/
|
||||
|
||||
/* $Id: curspriv.h,v 1.95 2006/07/17 21:45:15 wmcbrine Exp $ */
|
||||
/* $Id: curspriv.h,v 1.96 2006/07/18 11:25:46 wmcbrine Exp $ */
|
||||
|
||||
/* CURSPRIV.H
|
||||
|
||||
@@ -107,7 +107,6 @@ void PDC_init_atrtab(void);
|
||||
WINDOW *PDC_makenew(int, int, int, int);
|
||||
int PDC_mouse_in_slk(int, int);
|
||||
void PDC_napms(int);
|
||||
int PDC_newline(WINDOW *, int);
|
||||
int PDC_putc(chtype, chtype);
|
||||
int PDC_putctty(chtype, chtype);
|
||||
int PDC_rawgetch(void);
|
||||
|
||||
@@ -546,7 +546,6 @@ FUNCTIONS
|
||||
PDC_get_scrn_mode pdcgetsc
|
||||
PDC_getclipboard pdcclip
|
||||
PDC_makenew pdcwin
|
||||
PDC_newline pdcdisp
|
||||
PDC_putc pdcdisp
|
||||
PDC_putctty pdcdisp
|
||||
PDC_query_adapter_type pdcgetsc
|
||||
|
||||
@@ -20,7 +20,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
RCSID("$Id: pdcwin.c,v 1.45 2006/07/17 07:02:30 wmcbrine Exp $");
|
||||
RCSID("$Id: pdcwin.c,v 1.46 2006/07/18 11:25:46 wmcbrine Exp $");
|
||||
|
||||
static int PDC_newline(WINDOW *, int);
|
||||
|
||||
/*man-start**************************************************************
|
||||
|
||||
@@ -550,7 +552,7 @@ int PDC_chins(WINDOW *win, chtype c, bool xlat)
|
||||
|
||||
**man-end****************************************************************/
|
||||
|
||||
int PDC_newline(WINDOW *win, int lin)
|
||||
static int PDC_newline(WINDOW *win, int lin)
|
||||
{
|
||||
PDC_LOG(("PDC_newline() - called: line %d\n", lin));
|
||||
|
||||
|
||||
@@ -288,7 +288,6 @@ EXPORTS PDC_get_key_modifiers
|
||||
EXPORTS PDC_get_font
|
||||
EXPORTS PDC_get_rows
|
||||
EXPORTS PDC_makenew
|
||||
EXPORTS PDC_newline
|
||||
EXPORTS PDC_putc
|
||||
EXPORTS PDC_putctty
|
||||
EXPORTS PDC_query_adapter_type
|
||||
|
||||
@@ -281,7 +281,6 @@ PDC_get_key_modifiers
|
||||
PDC_get_font
|
||||
PDC_get_rows
|
||||
PDC_makenew
|
||||
PDC_newline
|
||||
PDC_putc
|
||||
PDC_putctty
|
||||
PDC_query_adapter_type
|
||||
|
||||
Reference in New Issue
Block a user