-
Notifications
You must be signed in to change notification settings - Fork 9
/
filesurf.h
47 lines (32 loc) · 1.02 KB
/
filesurf.h
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
/***************************************************************
BayCom(R) Packet-Radio fuer IBM PC
OpenBayCom-Mailbox
------------------------------
Filesurf for BCM (Definitions)
------------------------------
Copyright (C) Johann Hanne, DH3MB, [email protected]
Falkenweg 6
D-85122 Hitzhofen
Alle Rechte vorbehalten / All Rights Reserved
***************************************************************/
#ifdef FILESURF
/*---------------------------------------------------------------------------*/
class filesurf
{
private:
void putwelcome(void);
void printallowed(void);
int pathallowed(char *, int);
int pathexists(char *);
int showdir(char *, bitfeld);
void processpath(char *);
int addpath(char *, char *);
void putsyntax(char *, char *);
char sysopcmd(char *);
public:
void execute(char *);
void putprompt(void);
void getfirstpath(char *);
};
/*---------------------------------------------------------------------------*/
#endif