comparison src/fetchlist.h @ 61:adf0af5152f7 noffle

[svn] Renamed some variables and function names, because they caused compiler warnings because of shadowing global variables from system include files (index, stat, serv).
author enz
date Fri, 12 May 2000 18:19:38 +0100
parents 32ba1198c6fa
children f8a91e2b4060
comparison
equal deleted inserted replaced
60:defaa632baae 61:adf0af5152f7
1 /* 1 /*
2 fetchlist.h 2 fetchlist.h
3 3
4 List of groups that are to be fetched presently. 4 List of groups that are to be fetched presently.
5 5
6 $Id: fetchlist.h 51 2000-05-05 23:49:38Z uh1763 $ 6 $Id: fetchlist.h 67 2000-05-12 17:19:38Z enz $
7 */ 7 */
8 8
9 #ifndef FETCHLIST_H 9 #ifndef FETCHLIST_H
10 #define FETCHLIST_H 10 #define FETCHLIST_H
11 11
30 Bool 30 Bool
31 Fetchlist_contains( const char *name ); 31 Fetchlist_contains( const char *name );
32 32
33 /* Get element number index. */ 33 /* Get element number index. */
34 Bool 34 Bool
35 Fetchlist_element( const char **name, FetchMode *mode, int index ); 35 Fetchlist_element( const char **name, FetchMode *mode, int idx );
36 36
37 /* Add entry. Invalidates any indices. Returns TRUE if new entry, FALSE if 37 /* Add entry. Invalidates any indices. Returns TRUE if new entry, FALSE if
38 entry was overwritten. */ 38 entry was overwritten. */
39 Bool 39 Bool
40 Fetchlist_add( const char *name, FetchMode mode ); 40 Fetchlist_add( const char *name, FetchMode mode );