~ubuntu-branches/ubuntu/trusty/fcitx/trusty

« back to all changes in this revision

Viewing changes to src/module/lua/luamod.h

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2012-05-12 01:37:19 UTC
  • mfrom: (10.1.19 sid)
  • Revision ID: package-import@ubuntu.com-20120512013719-qivlvp3gxi4l7z9j
Tags: 1:4.2.3-2
debian/patches/0004-upstream-post-release-changes.patch:
Add upstream fix for testpinyin, to avoid its segfaults.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2012~2012 by xubin                                      *
 
3
 *   nybux.tsui@gmail.com                                                  *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef _FCITX_MODULE_LUA_H_
 
22
#define _FCITX_MODULE_LUA_H_
 
23
 
 
24
 
 
25
#ifdef __cplusplus
 
26
extern "C" {
 
27
#endif
 
28
 
 
29
#define FCITX_LUA_NAME "fcitx-lua"
 
30
#define FCITX_LUA_CALLCOMMAND 0
 
31
#define FCITX_LUA_CALLCOMMAND_RETURNTYPE void
 
32
 
 
33
 
 
34
#ifdef __cplusplus
 
35
}
 
36
#endif
 
37
 
 
38
#endif