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>C Specification</h2>
17
18<dl>
19<dd><pre><code>#include &lt;revolution/kpr.h&gt;</code></pre>
20</dd>
21<dd><pre>typedef struct _KPRQueue
22{
23wchar_t  text[ KPR_MAX_QUEUE_LEN ];
24KPRMode mode;
25u8       oCount; // number of characters available for output
26u8       iCount; // number of characters that are input
27u32      altVal; // for building up Alt-keypad value
28} KPRQueue;
29</pre>
30</dd>
31</dl>
32
33<h2>Description</h2>
34
35<p>This is the structure for maintaining the state of a processing queue. Its fields should not be manipulated directly.</p>
36
37<h2>See Also</h2>
38
39<p><a href="list.html">Key Processing API Function List</a>
40</p>
41
42<H2>Revision History</H2>
43<P>2007/07/09 Initial version.</P>
44
45</BODY>
46</HTML>