/* This file is part of telegram-cli. Telegram-cli is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. Telegram-cli is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this telegram-cli. If not, see . Copyright Vitaly Valtman 2013-2014 */ #ifndef __LUA_TG_H__ #define __LUA_TG_H__ #include #include "lua-tg.h" #include "tgl.h" void lua_init (const char *file); void lua_new_msg (struct tgl_message *M); void lua_our_id (int id); void lua_secret_chat_update (struct tgl_secret_chat *U, unsigned flags); void lua_user_update (struct tgl_user *U, unsigned flags); void lua_chat_update (struct tgl_chat *C, unsigned flags); void lua_binlog_end (void); void lua_diff_end (void); void lua_do_all (void); #endif