textio: removed prototypes for non-existant functions
extern void TxVisChar(); extern void TxPromptOnNewLine(); extern TxCommand *TxDeviceStdin(); extern TxCommand *TxButtonMaskToCommand(); Found during K&R removal of textio/**
This commit is contained in:
parent
12c6ccc97b
commit
f63dc318a7
|
|
@ -63,7 +63,6 @@ extern bool TxPrintOff(); /* disables TxPrintf output */
|
||||||
extern void TxFlush();
|
extern void TxFlush();
|
||||||
extern void TxFlushOut();
|
extern void TxFlushOut();
|
||||||
extern void TxFlushErr();
|
extern void TxFlushErr();
|
||||||
extern void TxVisChar();
|
|
||||||
extern void TxUseMore();
|
extern void TxUseMore();
|
||||||
extern void TxStopMore();
|
extern void TxStopMore();
|
||||||
|
|
||||||
|
|
@ -82,7 +81,6 @@ extern int TxDialog();
|
||||||
/* prompting procedures */
|
/* prompting procedures */
|
||||||
extern void TxSetPrompt();
|
extern void TxSetPrompt();
|
||||||
extern void TxPrompt();
|
extern void TxPrompt();
|
||||||
extern void TxPromptOnNewLine();
|
|
||||||
extern void TxUnPrompt();
|
extern void TxUnPrompt();
|
||||||
extern void TxRestorePrompt();
|
extern void TxRestorePrompt();
|
||||||
extern void TxReprint();
|
extern void TxReprint();
|
||||||
|
|
|
||||||
|
|
@ -116,8 +116,6 @@ extern TxCommand TxCurCommand;
|
||||||
|
|
||||||
/* procedures to help in making device command routines */
|
/* procedures to help in making device command routines */
|
||||||
|
|
||||||
extern TxCommand *TxDeviceStdin();
|
|
||||||
extern TxCommand *TxButtonMaskToCommand();
|
|
||||||
extern void TxAddInputDevice(const fd_set *fdmask, void (*inputProc)(), ClientData cdata); /* Can read multiple file desc. */
|
extern void TxAddInputDevice(const fd_set *fdmask, void (*inputProc)(), ClientData cdata); /* Can read multiple file desc. */
|
||||||
extern void TxAdd1InputDevice(); /* Can read only 1 file desc. */
|
extern void TxAdd1InputDevice(); /* Can read only 1 file desc. */
|
||||||
extern void TxDeleteInputDevice(const fd_set *fdmask);
|
extern void TxDeleteInputDevice(const fd_set *fdmask);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue