~ubuntu-branches/ubuntu/dapper/evolution-data-server/dapper-updates

« back to all changes in this revision

Viewing changes to docs/reference/libedataserver/html/libedataserver-EIterator.html

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-02-27 22:17:31 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20060227221731-8qmgp0o0d2ooncle
Tags: 1.5.92-0ubuntu1
* New upstream version
* debian/patches/01_weather_calendar_fix.patch:
  - fixed with the new version
* debian/patches/04_external_libdb_autoconf.patch:
  - updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
 
<html xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0">
 
1
<html>
3
2
<head>
4
3
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
5
4
<title>EIterator</title>
6
 
<meta name="generator" content="DocBook XSL Stylesheets V1.69.0">
 
5
<meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
7
6
<link rel="start" href="index.html" title="Evolution API Reference: libedataserver, utility library">
8
7
<link rel="up" href="ch01.html" title="Evolution API Reference: libedataserver, utility library">
9
8
<link rel="prev" href="libedataserver-e-iconv.html" title="e-iconv">
13
12
<link rel="chapter" href="ch01.html" title="Evolution API Reference: libedataserver, utility library">
14
13
</head>
15
14
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
16
 
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
17
 
<tr valign="middle">
 
15
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
18
16
<td><a accesskey="p" href="libedataserver-e-iconv.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
19
17
<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
20
18
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
21
19
<th width="100%" align="center">Evolution API Reference: libedataserver, utility library</th>
22
20
<td><a accesskey="n" href="libedataserver-EListIterator.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
23
 
</tr>
24
 
<tr><td colspan="5" class="shortcuts"><nobr><a href="#top_of_page" class="shortcut">Top</a>
25
 
                  &#160;|&#160;
26
 
                  <a href="#desc" class="shortcut">Description</a></nobr></td></tr>
27
 
</table>
 
21
</tr></table>
28
22
<div class="refentry" lang="en">
29
23
<a name="libedataserver-EIterator"></a><div class="titlepage"></div>
30
24
<div class="refnamediv"><table width="100%"><tr>
31
25
<td valign="top">
32
 
<h2><span class="refentrytitle"><a name="top_of_page"></a>EIterator</span></h2>
 
26
<h2><span class="refentrytitle">EIterator</span></h2>
33
27
<p>EIterator &#8212; </p>
34
28
</td>
35
29
<td valign="top" align="right"></td>
36
30
</tr></table></div>
37
31
<div class="refsynopsisdiv">
38
 
<a name="synopsis"></a><h2>Synopsis</h2>
 
32
<h2>Synopsis</h2>
39
33
<pre class="synopsis">
40
34
 
41
35
 
44
38
void        <a href="libedataserver-EIterator.html#e-iterator-reset">e_iterator_reset</a>                (EIterator *iterator);
45
39
void        <a href="libedataserver-EIterator.html#e-iterator-last">e_iterator_last</a>                 (EIterator *iterator);
46
40
<a
47
 
href="../glib/glib-Basic-Types.html#gboolean"
 
41
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
48
42
>gboolean</a>    <a href="libedataserver-EIterator.html#e-iterator-next">e_iterator_next</a>                 (EIterator *iterator);
49
43
<a
50
 
href="../glib/glib-Basic-Types.html#gboolean"
 
44
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
51
45
>gboolean</a>    <a href="libedataserver-EIterator.html#e-iterator-prev">e_iterator_prev</a>                 (EIterator *iterator);
52
46
void        <a href="libedataserver-EIterator.html#e-iterator-delete">e_iterator_delete</a>               (EIterator *iterator);
53
47
void        <a href="libedataserver-EIterator.html#e-iterator-insert">e_iterator_insert</a>               (EIterator *iterator,
54
48
                                             const void *object,
55
49
                                             <a
56
 
href="../glib/glib-Basic-Types.html#gboolean"
 
50
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
57
51
>gboolean</a> before);
58
52
void        <a href="libedataserver-EIterator.html#e-iterator-set">e_iterator_set</a>                  (EIterator *iterator,
59
53
                                             const void *object);
60
54
<a
61
 
href="../glib/glib-Basic-Types.html#gboolean"
 
55
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
62
56
>gboolean</a>    <a href="libedataserver-EIterator.html#e-iterator-is-valid">e_iterator_is_valid</a>             (EIterator *iterator);
63
57
void        <a href="libedataserver-EIterator.html#e-iterator-invalidate">e_iterator_invalidate</a>           (EIterator *iterator);
64
58
 
65
59
</pre>
66
60
</div>
67
61
<div class="refsect1" lang="en">
68
 
<a name="desc"></a><h2>Description</h2>
 
62
<a name="id2552707"></a><h2>Description</h2>
69
63
<p>
70
64
 
71
65
</p>
72
66
</div>
73
67
<div class="refsect1" lang="en">
74
 
<a name="details"></a><h2>Details</h2>
 
68
<a name="id2552718"></a><h2>Details</h2>
75
69
<div class="refsect2" lang="en">
76
 
<a name="id2561190"></a><h3>
 
70
<a name="id2552724"></a><h3>
77
71
<a name="e-iterator-get"></a>e_iterator_get ()</h3>
78
 
<a class="indexterm" name="id2561201"></a><pre class="programlisting">const void* e_iterator_get                  (EIterator *iterator);</pre>
 
72
<a class="indexterm" name="id2552734"></a><pre class="programlisting">const void* e_iterator_get                  (EIterator *iterator);</pre>
79
73
<p>
80
74
 
81
75
</p>
101
95
</div>
102
96
<hr>
103
97
<div class="refsect2" lang="en">
104
 
<a name="id2561258"></a><h3>
 
98
<a name="id2552791"></a><h3>
105
99
<a name="e-iterator-reset"></a>e_iterator_reset ()</h3>
106
 
<a class="indexterm" name="id2561271"></a><pre class="programlisting">void        e_iterator_reset                (EIterator *iterator);</pre>
 
100
<a class="indexterm" name="id2552802"></a><pre class="programlisting">void        e_iterator_reset                (EIterator *iterator);</pre>
107
101
<p>
108
102
 
109
103
</p>
121
115
</div>
122
116
<hr>
123
117
<div class="refsect2" lang="en">
124
 
<a name="id2555663"></a><h3>
 
118
<a name="id2565808"></a><h3>
125
119
<a name="e-iterator-last"></a>e_iterator_last ()</h3>
126
 
<a class="indexterm" name="id2555675"></a><pre class="programlisting">void        e_iterator_last                 (EIterator *iterator);</pre>
 
120
<a class="indexterm" name="id2565818"></a><pre class="programlisting">void        e_iterator_last                 (EIterator *iterator);</pre>
127
121
<p>
128
122
 
129
123
</p>
141
135
</div>
142
136
<hr>
143
137
<div class="refsect2" lang="en">
144
 
<a name="id2555720"></a><h3>
 
138
<a name="id2565864"></a><h3>
145
139
<a name="e-iterator-next"></a>e_iterator_next ()</h3>
146
 
<a class="indexterm" name="id2555733"></a><pre class="programlisting"><a
147
 
href="../glib/glib-Basic-Types.html#gboolean"
 
140
<a class="indexterm" name="id2565874"></a><pre class="programlisting"><a
 
141
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
148
142
>gboolean</a>    e_iterator_next                 (EIterator *iterator);</pre>
149
143
<p>
150
144
 
171
165
</div>
172
166
<hr>
173
167
<div class="refsect2" lang="en">
174
 
<a name="id2555788"></a><h3>
 
168
<a name="id2565930"></a><h3>
175
169
<a name="e-iterator-prev"></a>e_iterator_prev ()</h3>
176
 
<a class="indexterm" name="id2555801"></a><pre class="programlisting"><a
177
 
href="../glib/glib-Basic-Types.html#gboolean"
 
170
<a class="indexterm" name="id2565940"></a><pre class="programlisting"><a
 
171
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
178
172
>gboolean</a>    e_iterator_prev                 (EIterator *iterator);</pre>
179
173
<p>
180
174
 
201
195
</div>
202
196
<hr>
203
197
<div class="refsect2" lang="en">
204
 
<a name="id2555857"></a><h3>
 
198
<a name="id2565996"></a><h3>
205
199
<a name="e-iterator-delete"></a>e_iterator_delete ()</h3>
206
 
<a class="indexterm" name="id2555869"></a><pre class="programlisting">void        e_iterator_delete               (EIterator *iterator);</pre>
 
200
<a class="indexterm" name="id2566006"></a><pre class="programlisting">void        e_iterator_delete               (EIterator *iterator);</pre>
207
201
<p>
208
202
 
209
203
</p>
221
215
</div>
222
216
<hr>
223
217
<div class="refsect2" lang="en">
224
 
<a name="id2573569"></a><h3>
 
218
<a name="id2566051"></a><h3>
225
219
<a name="e-iterator-insert"></a>e_iterator_insert ()</h3>
226
 
<a class="indexterm" name="id2573581"></a><pre class="programlisting">void        e_iterator_insert               (EIterator *iterator,
 
220
<a class="indexterm" name="id2566061"></a><pre class="programlisting">void        e_iterator_insert               (EIterator *iterator,
227
221
                                             const void *object,
228
222
                                             <a
229
 
href="../glib/glib-Basic-Types.html#gboolean"
 
223
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
230
224
>gboolean</a> before);</pre>
231
225
<p>
232
226
 
259
253
</div>
260
254
<hr>
261
255
<div class="refsect2" lang="en">
262
 
<a name="id2573668"></a><h3>
 
256
<a name="id2536461"></a><h3>
263
257
<a name="e-iterator-set"></a>e_iterator_set ()</h3>
264
 
<a class="indexterm" name="id2573680"></a><pre class="programlisting">void        e_iterator_set                  (EIterator *iterator,
 
258
<a class="indexterm" name="id2536471"></a><pre class="programlisting">void        e_iterator_set                  (EIterator *iterator,
265
259
                                             const void *object);</pre>
266
260
<p>
267
261
 
288
282
</div>
289
283
<hr>
290
284
<div class="refsect2" lang="en">
291
 
<a name="id2573747"></a><h3>
 
285
<a name="id2536538"></a><h3>
292
286
<a name="e-iterator-is-valid"></a>e_iterator_is_valid ()</h3>
293
 
<a class="indexterm" name="id2573759"></a><pre class="programlisting"><a
294
 
href="../glib/glib-Basic-Types.html#gboolean"
 
287
<a class="indexterm" name="id2536548"></a><pre class="programlisting"><a
 
288
href="/opt/gnome/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
295
289
>gboolean</a>    e_iterator_is_valid             (EIterator *iterator);</pre>
296
290
<p>
297
291
 
318
312
</div>
319
313
<hr>
320
314
<div class="refsect2" lang="en">
321
 
<a name="id2573815"></a><h3>
 
315
<a name="id2536604"></a><h3>
322
316
<a name="e-iterator-invalidate"></a>e_iterator_invalidate ()</h3>
323
 
<a class="indexterm" name="id2574957"></a><pre class="programlisting">void        e_iterator_invalidate           (EIterator *iterator);</pre>
 
317
<a class="indexterm" name="id2536613"></a><pre class="programlisting">void        e_iterator_invalidate           (EIterator *iterator);</pre>
324
318
<p>
325
319
 
326
320
</p>
338
332
</div>
339
333
</div>
340
334
</div>
 
335
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
 
336
<td align="left"><a accesskey="p" href="libedataserver-e-iconv.html"><b>&lt;&lt;&#160;e-iconv</b></a></td>
 
337
<td align="right"><a accesskey="n" href="libedataserver-EListIterator.html"><b>EListIterator&#160;&gt;&gt;</b></a></td>
 
338
</tr></table>
341
339
</body>
342
340
</html>