1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>io.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3-rc2 -->
<center>
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="annotated.html">Data Structures</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Data Fields</a> <a class="qindex" href="globals.html">Globals</a> <a class="qindex" href="pages.html">Related Pages</a> </center>
<hr><h1>io.h</h1><a href="io_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/* This software is subject to the terms of the Common Public License</span>
00002 <span class="comment"> You must accept the terms of this license to use this software.</span>
00003 <span class="comment"></span>
00004 <span class="comment"> Copyright (C) 2002, International Business Machines Corporation</span>
00005 <span class="comment"> and others. All Rights Reserved.</span>
00006 <span class="comment"></span>
00007 <span class="comment"> Further information about Common Public License Version 0.5 is obtained</span>
00008 <span class="comment"> from url http://oss.software.ibm.com/developer/opensource/license-cpl.html</span>
00009 <span class="comment">*/</span>
00014 <span class="preprocessor">#ifndef __TERMINAL_IO__</span>
00015 <span class="preprocessor"></span><span class="preprocessor">#define __TERMINAL_IO__</span>
00016 <span class="preprocessor"></span>
00017 <span class="keyword">struct </span>Concrete_IO;
00028 <span class="keyword">typedef</span> <span class="keyword">struct </span>_TerminalIO
00029 {
00030 <span class="keyword">struct </span>Concrete_IO *concrete_io;
00032 int (*read)(<span class="keyword">struct </span>_TerminalIO *tio,char *buf, int size);
00038 int (*write)(<span class="keyword">struct </span>_TerminalIO *tio,char *buf, int size);
00044 int (*tell_window_size)(<span class="keyword">struct </span>_TerminalIO *tio,int width, int height);
00050 }TerminalIO;
00052 <span class="preprocessor">#endif</span>
</pre></div><hr><address style="align: right;"><small>Generated on Sun Dec 29 16:55:32 2002 by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0
width=110 height=53></a>1.3-rc2 </small></address>
</body>
</html>
|