Bioplib
Protein Structure C Library
 All Data Structures Files Functions Variables Typedefs Macros Pages
WindIO.h
Go to the documentation of this file.
1 /************************************************************************/
2 /**
3 
4  \file WindIO.h
5 
6  \version V1.6
7  \date 14.08.14
8  \brief Header for window/normal interface routines
9 
10  \copyright (c) UCL / Dr. Andrew C. R. Martin 1993-2014
11  \author Dr. Andrew C. R. Martin
12  \par
13  Institute of Structural & Molecular Biology,
14  University College London,
15  Gower Street,
16  London.
17  WC1E 6BT.
18  \par
19  andrew@bioinf.org.uk
20  andrew.martin@ucl.ac.uk
21 
22 **************************************************************************
23 
24  This code is NOT IN THE PUBLIC DOMAIN, but it may be copied
25  according to the conditions laid out in the accompanying file
26  COPYING.DOC.
27 
28  The code may be modified as required, but any modifications must be
29  documented so that the person responsible can be identified.
30 
31  The code may not be sold commercially or included as part of a
32  commercial product except as described in the file COPYING.DOC.
33 
34 **************************************************************************
35 
36  Description:
37  ============
38 
39 
40 **************************************************************************
41 
42  Usage:
43  ======
44 
45 **************************************************************************
46 
47  Revision History:
48  =================
49 - V1.4 07.07.14 Use bl prefix for functions By: CTP
50 - V1.5 31.07.14 Updated deprecation: Removed deprecated.h and added
51  prototypes for renamed functions. By: CTP
52 - V1.6 14.08.14 Moved deprecated function prototypes to deprecated.h
53  By: CTP
54 
55 *************************************************************************/
56 #ifndef _WINDIO_H
57 #define _WINDIO_H
58 
59 #include "SysDefs.h"
60 
61 /* Prototypes */
62 void blScreen(char *string);
63 void blPrompt(char *string);
64 void blRePrompt(void);
65 void blGetKybdString(char *string, int maxlen);
66 void blPagingOn(void);
67 void blPagingOff(void);
68 void blWindowMode(BOOL mode);
69 void blWindowInteractive(BOOL mode);
70 int blYorN(char deflt);
71 
72 /************************************************************************/
73 /* Include deprecated functions */
74 #define _WINDIO_H_DEPRECATED
75 #include "deprecated.h"
76 /************************************************************************/
77 
78 
79 #endif
int blYorN(char deflt)
Definition: WindIO.c:388
void blPagingOn(void)
Definition: WindIO.c:295
short BOOL
Definition: SysDefs.h:64
Redirect calls to deprecated functions.
void blScreen(char *string)
Definition: WindIO.c:155
void blRePrompt(void)
Definition: WindIO.c:241
void blPrompt(char *string)
Definition: WindIO.c:217
void blPagingOff(void)
Definition: WindIO.c:311
void blWindowInteractive(BOOL mode)
Definition: WindIO.c:354
void blWindowMode(BOOL mode)
Definition: WindIO.c:330
System-type variable type definitions.
void blGetKybdString(char *string, int maxlen)
Definition: WindIO.c:263