about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 18:46:07 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 18:46:07 +0200
commitdfa5ea63600d8c68bbe05fbc80191bd3198510b2 (patch)
tree9c33add636c30afcd45b6e1f5b4a6fc711ba51cd /client.c
parent3e06edeb5df0aa95614cb0b11ba1931f01b6f337 (diff)
downloaddwm-dfa5ea63600d8c68bbe05fbc80191bd3198510b2.tar.gz
applied viewsel.patch
Diffstat (limited to 'client.c')
0 files changed, 0 insertions, 0 deletions
'author Thomas E. Dickey <dickey@invisible-island.net> 1998-11-10 19:47:00 -0500 committer Thomas E. Dickey <dickey@invisible-island.net> 1998-11-10 19:47:00 -0500 snapshot of project "lynx", label v2-8-2dev_2' href='/ingrix/lynx-snapshots/commit/src/LYHash.h?id=d3f9d5478df478427c2aa5db4507ddd0a38f0eb6'>d3f9d547 ^
1fc1d8af ^














945e8eb6 ^
1fc1d8af ^
cbcc3a1e ^
1fc1d8af ^
cbcc3a1e ^

945e8eb6 ^


1fc1d8af ^





b223937f ^
1fc1d8af ^


b223937f ^
1fc1d8af ^























2a786b26 ^
fde43024 ^
1fc1d8af ^



fde43024 ^
2a786b26 ^
264781cf ^
1fc1d8af ^
264781cf ^

1fc1d8af ^



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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
                                                            
                  

                    
                 
                    
      
 














                                                                      
 
                                      
 
                  

                       


                  





                                                                          
 


                                                                          
 























                                 
 
                    



                        
      
 
                    
                                 

      



                                                
/* $LynxId: LYHash.h,v 1.23 2007/07/22 23:08:36 tom Exp $ */
#ifndef _LYHASH_H_
#define _LYHASH_H_ 1

#ifndef HTUTILS_H
#include <HTUtils.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif
    /* define OMIT_SCN_KEEPING to 1 to omit keeping of Style_className
     * in HTML.c when lss support is on. 1 to increase performance.
     */
#define OMIT_SCN_KEEPING 0
    struct _hashbucket {
	char *name;		/* name of this item */
	int code;		/* code of this item */
	int color;		/* color highlighting to be done */
	int mono;		/* mono highlighting to be done */
	int cattr;		/* attributes to go with the color */
	struct _hashbucket *next;	/* next item */
    };

    typedef struct _hashbucket bucket;

#ifndef CSHASHSIZE
#define CSHASHSIZE 8193
#endif

#define NOSTYLE -1

    /* hashStyles[] is used in CTRACE when NOSTYLE is passed as 'style' to
     * curses_w_style
     */
    extern bucket hashStyles[CSHASHSIZE];
    extern int hash_code(const char *string);
    extern bucket nostyle_bucket;

    extern int hash_code_lowercase_on_fly(const char *string);
    extern int hash_code_aggregate_char(char c, int hash);
    extern int hash_code_aggregate_lower_str(const char *c, int hash_was);

    extern int s_a;
    extern int s_aedit;
    extern int s_aedit_arr;
    extern int s_aedit_pad;
    extern int s_aedit_sel;
    extern int s_alert;
    extern int s_alink;
    extern int s_curedit;
    extern int s_forw_backw;
    extern int s_hot_paste;
    extern int s_menu_active;
    extern int s_menu_bg;
    extern int s_menu_entry;
    extern int s_menu_frame;
    extern int s_menu_number;
    extern int s_menu_sb;
    extern int s_normal;
    extern int s_prompt_edit;
    extern int s_prompt_edit_arr;
    extern int s_prompt_edit_pad;
    extern int s_prompt_sel;
    extern int s_status;
    extern int s_title;
    extern int s_whereis;

#ifdef USE_SCROLLBAR
    extern int s_sb_aa;
    extern int s_sb_bar;
    extern int s_sb_bg;
    extern int s_sb_naa;
#endif

#if OMIT_SCN_KEEPING
    extern bucket special_bucket;
#endif

#ifdef __cplusplus
}
#endif
#endif				/* _LYHASH_H_ */