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 #ifndef NEDIT_SERVER_COMMON_H_INCLUDED
30 #define NEDIT_SERVER_COMMON_H_INCLUDED
31
32 #include <X11/Intrinsic.h>
33
34
35 #define MAXSERVERNAMELEN MAXPATHLEN
36
37 #define DEFAULTSERVERNAME ""
38
39 void CreateServerPropertyAtoms(
const char *serverName,
40 Atom *serverExistsAtomReturn,
41 Atom *serverRequestAtomReturn);
42 Atom CreateServerFileOpenAtom(
const char *serverName,
43 const char *path);
44 Atom CreateServerFileClosedAtom(
const char *serverName,
45 const char *path,
46 Bool only_if_exists);
47 void DeleteServerFileAtoms(
const char* serverName, Window rootWindow);
48
49 #endif
50