⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 encrypt.h

📁 一个windows上的加解密程式 提供方便的介面让使用者操作
💻 H
字号:
/*                   Gaim encryption plugin                               *//*             Copyright (C) 2001-2003 William Tompkins                   *//* This plugin is free software, distributed under the GNU General Public *//* License.                                                               *//* Please see the file "COPYING" distributed with the Gaim source code    *//* for more details                                                       *//*                                                                        *//*                                                                        *//*    This software 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.                             *//*   To compile and use:                                                  *//*     See INSTALL file.                                                  */#ifndef ENCRYPT_H#define ENCRYPT_H#include <time.h>#ifndef NO_CONFIG#include "gaim-encryption-config.h"#endif#include <conversation.h>#define ENC_WEBSITE "http://gaim-encryption.sourceforge.net"typedef struct GE_SentMessage{   time_t time;   gchar* id;   gchar* msg;} GE_SentMessage;void GE_send_stored_msgs(GaimAccount*, const char *who);void GE_delete_stored_msgs(GaimAccount*, const char *who);void GE_show_stored_msgs(GaimAccount*, const char* who, char** return_msg);void GE_resend_msg(GaimAccount*, const char* who, gchar*);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -