1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3
4<head>
5<META http-equiv="Content-Type" content="text/html; charset=windows-1252">
6<META name="GENERATOR" content="Microsoft FrontPage 5.0">
7<META http-equiv="Content-Style-Type" content="text/css">
8<LINK rel="stylesheet" type="text/css" href="../CSS/revolution.css">
9<title>KPRQueue</title>
10</head>
11
12<body>
13
14<h1>KPRQueue Structure</h1>
15
16<h2>Syntax</h2>
17<dl><dd><pre class="construction">
18#include &lt;revolution/kpr.h&gt;
19
20typedef struct _KPRQueue
21{
22  wchar_t  text[ KPR_MAX_QUEUE_LEN ];
23  KPRMode mode;
24  u8       oCount; // number of characters available for output
25  u8       iCount; // number of characters that are input
26  u32      altVal; // for building up Alt-keypad value
27} KPRQueue;
28</pre></dd></dl>
29
30<h2>Description</h2>
31<p>This is the structure for maintaining the state of a processing queue. Its fields should not be manipulated directly.</p>
32
33<h2>See Also</h2>
34<P class="reference">
35<a href="list.html">Key Processing Functions</a>,
36<a href="KPRInitQueue.html">KPRInitQueue</a>,
37<a href="KPRClearQueue.html">KPRClearQueue</a>,
38<a href="KPRSetMode.html">KPRSetMode</a>,
39<a href="KPRGetMode.html">KPRGetMode</a>,
40<a href="KPRPutChar.html">KPRPutChar</a>,
41<a href="KPRGetChar.html">KPRGetChar</a>,
42<a href="KPRRemoveChar.html">KPRRemoveChar</a>,
43<a href="KPRLookAhead.html">KPRLookAhead</a>
44</p>
45
46<H2>Revision History</H2>
47<P>
482007/07/09 Initial version.<br>
49</P>
50
51<hr><p>CONFIDENTIAL</p></body>
52</HTML>