Set up current working directory on File->Open
[gscope.git] / cscope.h
blob6d68b794870cf99c1b277cba427dcde81a6138e6
1 /*
2 * (c) 2010 Cyrill Gorcunov, gorcunov@gmail.com
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or (at
7 * your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 #ifndef CSCOPE_H
21 #define CSCOPE_H
23 #include "list.h"
25 /* warning: this is an ABI */
26 enum {
27 CSCOPE_KEY_MIN = 0,
29 CSCOPE_KEY_VERBOSE,
30 CSCOPE_KEY_CROSSREF,
31 CSCOPE_KEY_NOCASE,
32 CSCOPE_KEY_NOCOMP,
33 CSCOPE_KEY_DRY,
34 CSCOPE_KEY_KERNEL,
35 CSCOPE_KEY_SINGLE,
36 CSCOPE_KEY_LUI,
37 CSCOPE_KEY_INVERT,
38 CSCOPE_KEY_FORCE,
40 CSCOPE_KEY_QRY_REFERENCES,
41 CSCOPE_KEY_QRY_DEFINITION,
42 CSCOPE_KEY_QRY_CALLED_FUNC,
43 CSCOPE_KEY_QRY_CALLING_FUNC,
44 CSCOPE_KEY_QRY_TEXT,
45 CSCOPE_KEY_QRY_EGREP,
46 CSCOPE_KEY_QRY_FILE,
47 CSCOPE_KEY_QRY_INCLUDING,
49 CSCOPE_KEY_MAX
52 void init_cscope_backend_proto(void);
53 const char *cscope_param_desc(unsigned int opcode);
55 #endif /* CSCOPE_H */