Don't comment global content unless it is Conf
[geany-mirror.git] / ctags / main / interactive_p.h
blob6dbd5be24b726e75b3b93ce8813eea060527d331
1 /*
2 * Copyright (c) 2016, Aman Gupta
4 * This source code is released for free distribution under the terms of the
5 * GNU General Public License version 2 or (at your option) any later version.
7 * Defines interface to interactive loop.
8 */
9 #ifndef CTAGS_MAIN_INTERACTIVE_H
10 #define CTAGS_MAIN_INTERACTIVE_H
12 #include "general.h"
13 #include "options_p.h"
14 #include "routines.h"
17 struct interactiveModeArgs
19 bool sandbox;
22 void interactiveLoop (cookedArgs *args, void *user);
23 bool jsonErrorPrinter (const errorSelection selection, const char *const format, va_list ap,
24 void *data);
25 int installSyscallFilter (void);
27 #endif /* CTAGS_MAIN_INTERACTIVE_H */
29 /* vi:set tabstop=4 shiftwidth=4: */