File: remote.h

package info (click to toggle)
pike8.0 8.0.1956-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,580 kB
  • sloc: ansic: 259,734; xml: 36,320; makefile: 3,748; sh: 1,713; cpp: 1,349; awk: 1,036; lisp: 655; javascript: 468; asm: 242; objc: 240; pascal: 157; sed: 34
file content (24 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// -*- Pike -*-

#define PROTO_VERSION "0001"

// #define REMOTE_DEBUG

#ifdef REMOTE_DEBUG
# define DEBUGMSG(X) werror(X)
#else
# define DEBUGMSG(X)
#endif

#define CTX_ERROR      0
#define CTX_OTHER      1
#define CTX_OBJECT     2
#define CTX_FUNCTION   3
#define CTX_PROGRAM    3
#define CTX_CALL_SYNC  4
#define CTX_ARRAY      5
#define CTX_RETURN     6
#define CTX_MAPPING    7
#define CTX_CALL_ASYNC 8
#define CTX_EXISTS     9
#define CTX_EXIST_RES  10