xfnw
856abd2f7d
git-subtree-dir: sys/src/cmd/gopher git-subtree-split: 3680728b631ed65201b397f4ae3e5d1b03be42f9
46 lines
405 B
C
46 lines
405 B
C
typedef struct Gmenu Gmenu;
|
|
typedef struct Link Link;
|
|
typedef struct Hist Hist;
|
|
|
|
struct Gmenu
|
|
{
|
|
Link *link;
|
|
Rtext *text;
|
|
};
|
|
|
|
struct Link
|
|
{
|
|
char *addr;
|
|
char *sel;
|
|
int type;
|
|
};
|
|
|
|
struct Hist
|
|
{
|
|
Hist *p;
|
|
Hist *n;
|
|
Gmenu *m;
|
|
};
|
|
|
|
enum
|
|
{
|
|
Ttext,
|
|
Tmenu,
|
|
Tns,
|
|
Terror,
|
|
Tbinhex,
|
|
Tdos,
|
|
Tuuencoded,
|
|
Tsearch,
|
|
Ttelnet,
|
|
Tbinary,
|
|
Tmirror,
|
|
Tgif,
|
|
Timage,
|
|
Tt3270,
|
|
Tdoc,
|
|
Thtml,
|
|
Tinfo,
|
|
Tsound,
|
|
Teof
|
|
};
|