亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? libfetion.h

?? linux-下的fetion-0.8.1。包括所有源代碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
/** * \file libfetion.h * \author dengdd <dedodong@163.com> * \date 2008/1/1 *  * This file includes necessary interfaces of libfetion. * \verbatim    Copyright (C) 2008 dengdd.    All rights reserved by dengdd.    This file is part of libfetion, a cross-operating-system library to operate China mobile's fetion IM. \endverbatim */#ifndef _LIB_FETION_H#define _LIB_FETION_H#ifdef __LIBFETION_LIB__#include "common.h"#include "event.h"#else#include "libfetion/common.h"#include "libfetion/event.h"#include "libfetion/datastruct.h"#endif#ifdef __cplusplus extern "C" {#endif/** * \defgroup libfetion  LibFetion Functions * @{ */	/**	 * \defgroup init_libfetion  LibFetion Init	 * @{	 */	/** @} end of init_libfetion */	/**	 * \defgroup fetion_login  Login and Out	 * @{	 */		/**		 * \defgroup  simple_fetion_login  Simple Login function		 * @{		*/		/** @} end of simple_fetion_login*/		/**		* \defgroup  generic_fetion_login_functions  Generic Login function		* @{		*/		/** @} end of generic_fetion_login_functions */	/** @} end of fetion_login */	/**	 * \defgroup  system_msg_cb  Set System Message CallBack Functions	 * @{	 */	/** @} end of system_msg_cb */	/**	 * \defgroup fetion_receive  Receive message Functions	 * @{	 */	/** @} end of fetion_receive */	/**	 * \defgroup fetion_send_sms  Send SMS Functions	 * @{	 */		/**		* \defgroup simple_send_sms_functions  Simple SendSms functions		* @{		*/		/** @} end of simple_send_sms_functions */		/**		 * \defgroup generic_send_sms_functions  Generic SendSMS functions		 * @{		*/		/** @} end of generic_send_sms_functions */	/** @} end of fetion_send_sms */	/**	 * \defgroup send_dialog_fetion_functions  Dialog Message 	 * @{	 */		/**		 * \defgroup simple_send_dialog_fetion_functions  Simple Dialog Message 		 * @{		*/		/** @} end of simple_send_dialog_fetion_functions */		/**		* \defgroup generic_send_dialog_fetion_functions  Generic Dialog Message 		* @{		*/		/** @} end of generic_send_dialog_fetion_functions */	/** @} end of send_dialog_fetion_functions */	/**	 * \defgroup get_or_set_user_info  Get Or Set User Info	 * @{	 */	/** @} end of get_or_set_user_info */	/**	 * \defgroup get_contact_info  Get Contacts info	 * @{	 */	/** @} end of get_contact_info */	/**	 * \defgroup fetion_group_opt  Group Opt Functions	 * @{	 */		/**		 * \defgroup simple_fetion_group_opt  Simple Group Opt Functions		 * @{		 */		/** @} end of simple_fetion_group_opt */		/**		 * \defgroup generic_fetion_group_opt  Generic Group Opt Functions		 * @{		 */		/** @} end of generic_fetion_group_opt */	/** @} end of fetion_group_opt */	/**	 * \defgroup fetion_buddy_opt  Buddy Opt Functions	 * @{	 */		/**		 * \defgroup simple_fetion_buddy_opt  Simple Buddy Opt Functions		 * @{		 */		/** @} end of simple_fetion_buddy_opt */		/**		* \defgroup generic_fetion_buddy_opt  Generic Buddy Opt Functions		* @{		*/		/** @} end of generic_fetion_buddy_opt */	/** @} end of fetion_buddy_opt */	/**	 * \defgroup fetion_ext  Extend Functions	 * @{	 */	/** @} end of fetion_ext */	/**	 * \defgroup fetion_misc  Misc Functions	 * @{	 */	/** @} end of fetion_misc *//** @} end of libfetion *//** * \addtogroup init_libfetion * @{ *//**  * \fn BOOL fx_init(void)  * \brief if you want to use the libfetion, you must invoke this functions at first.  *  * This function will init some resources which the libfetion needed.  *  * \return TRUE if init successfully, otherwise return FALSE.  *  * \sa fx_shutdown*/FX_EXPORT BOOL fx_init(void);/**  * \fn void fx_terminate(void)  * \brief shutdown the libfetion, when libfetion isn't used any more.  *  * This function will release the resources which the libfetion used.  *  * \sa fx_init*/FX_EXPORT void fx_terminate(void);/**  * \fn BOOL fx_close_network()  * \brief shutdown the connect to fetion's servers.  *  * this function will close the fetion's socket from fetion's servers, if you will not use fetion anymore  * \return TRUE if init successfully, otherwise return FALSE.*/FX_EXPORT BOOL fx_close_network();/** @} end of init_libfetion *//** * \addtogroup fetion_login   * @{ *//** * \addtogroup  simple_fetion_login   * @{ *//**  * \fn BOOL fs_login(const char *uid, const char *password)  * \brief login fetion.  *  * This function contain all the fetion login operates.   * and without callback function, when it return show login is finished.    * this function implement login,  get contact list and get presence operates.  *  * \param uid The login info of the usr fetion uid or mobile_no .  * \param password The login info of the usr password.  *  * \return TRUE if login successfully, otherwise return FALSE.fx_get_error();...  *  * \sa fx_login  */FX_EXPORT BOOL fs_login(const char *uid, const char *password);/** @} end of  simple_fetion_login *//** * \addtogroup  generic_fetion_login_functions   * @{ *//**  * \fn void fx_set_login_status(int longin_status)  * \brief set the user login status.  *  * This function will set the user login status.   *  * \param login_status The login status of you want to set.  *  * \sa fs_login  */FX_EXPORT void fx_set_login_status(int longin_status);/**  * \fn void fx_login(const char *uid, const char *password, EventListener func, void *args)  * \brief login fetion.  *  * This function contain all the fetion login operates.   * and without callback function, when it return show login is finished.    * this function implement login,  get contact list and get presence operates.  *  * \param uid The login info of the usr id or mobile_no.  * \param password The login info of the usr password.  * \param status_login The place which store the error info.  *  * \sa EventListener   *  *  * \sa fs_login  */FX_EXPORT int fx_login(const char *uid, const char *password, EventListener func, void *args);/** * \fn void fx_relogin() * \brief relogin fetion when fetion have break from server..  **/FX_EXPORT int fx_relogin(EventListener func, void *args);/**  * \fn void fx_loginout()  * \brief loginout fetion.  *  * This function will done all loginout fetion operates, when you want to loginout fetion.   *  * \sa fx_login*/FX_EXPORT void fx_loginout();#if 0/**  * \fn int fs_keep_alive()  * \brief send a keep alive package.   *  * This function will send a keep alive package to fetion server to keep alive int the expires time.  * ****this function will be removed in later version****, because it can done by libfetion.  *  * \sa fetion_data_get_expirestime  *  * \return non zero on successfully, otherwise return zero.*/FX_EXPORT int fs_keep_alive();#endif/** @} end of generic_fetion_login_functions *//** @} end of fetion_login *//** * \addtogroup  system_msg_cb   * @{ *//**  * \fn void fx_set_system_msg_cb(EventListener func, void* args)  * \brief set the system message callback funtion.   *  * This function will set the fuction address which is be sended  all fetion system messages to usr.  * like ....  *  * \sa ...*/FX_EXPORT void fx_set_system_msg_cb(EventListener func, void* args);/** @} end of system_msg_cb *//*** \addtogroup fetion_receive  * @{*//**  * \fn Fetion_MSG *fx_get_msg(long uid)  * \brief get the uid 's message.   *  * \param uid The message 's sender.   *  * you should usr the fx_destroy_msg function to destroy the msg which you get  *  * \return NULL if the uid no send message, or Fetion_MSG a struct which store message info.  *  *  * \sa FX_NEW_MESSAGE fx_destroy_msg*/FX_EXPORT Fetion_MSG *fx_get_msg(long uid);/**  * \fn void fx_destory_msg(Fetion_MSG *msg)  * \brief destroy the fetion message, it will free msg's memory, and set msg = NULL.   *  * \param msg The  fetion message will be destroy.   *  *  * \sa fx_get_msg*/FX_EXPORT void fx_destroy_msg(Fetion_MSG *msg);/** @} end of fetion_receive *//** * \addtogroup fetion_send_sms   * @{ *//** * \addtogroup simple_send_sms_functions   * @{ *//**  * \fn BOOL fs_send_sms(long who, const char *message)  * \brief simple send smsfunctions  *  * \param who The user uid  of you want to send.  * \param message The content of you want to send.  *  * \return TRUE if init successfully, otherwise return FALSE..  *  * \sa fx_send_sms*/FX_EXPORT BOOL fs_send_sms(const long who, const char *message);/**  * \fn BOOL BOOL fs_send_sms_by_mobile_no(const char *mobile_no, const char *message)  * \brief simple send smsfunctions  *  * \param mobile_no The mobile number of you want to send.  * \param message The content which you want to send.  *  * \return TRUE if init successfully, otherwise return FALSE..  *  * \sa fx_send_sms_by_mobile_no*/FX_EXPORT BOOL fs_send_sms_by_mobile_no(const char *mobile_no, const char *message);/**  * \fn BOOL fs_send_sms_to_self(const char *message)  * \brief send a shortmessage to user self   *  * \param message The content which you want to send.  *  * \return TRUE if init successfully, otherwise return FALSE..  *  * \sa fx_send_sms_to_self*/FX_EXPORT BOOL fs_send_sms_to_self(const char *message);/** @} end of simple_send_sms_functions *//** * \addtogroup generic_send_sms_functions   * @{ *//**  * \fn int fx_send_sms(const long who, const char *message, EventListener func,void *args)  * \brief send sms.   *  * \param who The user uid  which you want to send.  *  * \param message The content which you want to send.  *  * \param func The send sms operate's callback function's address, and the operate result will pass to this function.  * \sa EventListener  *  * \param args The send_sms operate's callback function's args.   *  * \return 0 if send sms fail immediately, or can get the result from to callback_send_sms func.  *  *  * \sa fs_send_sms*/FX_EXPORT int fx_send_sms(const long who, const char *message, EventListener func,void *args);/**  * \fn int fx_send_sms_to_self(const char *message, EventListener func,void *args)  * \brief send sms to self.  *  * \param message The content which you want to send.  *  * \param func The send sms operate's callback function's address, and the operate result will pass to this function.  * \sa EventListener  *  * \param args The send_sms operate's callback function's args.   *   * \return 0 if send sms fail immediately, or can get the result from to callback_send_sms func.  *  *  * \sa fs_send_sms_to_self*/FX_EXPORT int fx_send_sms_to_self(const char *message, EventListener func,void *args);/**  * \fn int fx_send_sms_by_mobile_no(const char *mobile_no, const char *message, EventListener func, void *args)  * \brief send sms by mobile numbers.   *  * \param mobile_no The mobile number which you want to send.  * \param message The content which you want to send.  *  * \param func The send sms operate's callback function's address, and the operate result will pass to this function.  * \sa EventListener  *  * \param args The send_sms operate's callback function's args.   *  * \return 0 if send sms fail immediately, or can get the result from to callback_send_sms func.  *  *  * \sa fs_send_sms_by_mobile_no*/FX_EXPORT int fx_send_sms_by_mobile_no(const char *mobile_no, const char *message, EventListener func, void *args);/**  * \fn void fx_set_longsms(BOOL bl)  * \brief set the send sms mode, it maybe longsms or sms normally.   *  *  longsms mode: it will send 180 characters in one short message,  *  sms normally mode: it will send 70 characters in one short message,  *  * \param bl The TRUE is set longsms mode, FALSE set normally mode .*/FX_EXPORT void fx_set_longsms(BOOL bl);/** @} end of generic_send_sms_functions *//** @} end of fetion_send_sms */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
eeuss鲁片一区二区三区| 首页亚洲欧美制服丝腿| 成人午夜免费视频| 国产精品无遮挡| 99精品久久免费看蜜臀剧情介绍| 一色屋精品亚洲香蕉网站| 99久精品国产| 亚洲免费观看高清完整版在线观看熊 | www.爱久久.com| 亚洲日本电影在线| 欧美猛男超大videosgay| 日韩专区中文字幕一区二区| 日韩欧美亚洲国产精品字幕久久久| 精品一区二区三区在线观看国产| 久久免费看少妇高潮| 一本色道久久综合狠狠躁的推荐 | 五月天亚洲精品| 制服丝袜亚洲精品中文字幕| 老汉av免费一区二区三区| 欧美精品一区二区不卡| 成人免费观看av| 亚洲丶国产丶欧美一区二区三区| 9191精品国产综合久久久久久| 久久国内精品自在自线400部| 欧美激情中文不卡| 日本电影亚洲天堂一区| 久久国产尿小便嘘嘘| 中文一区二区在线观看| 欧美视频一区在线| 国产一区在线看| 一区二区三区日韩欧美| 欧美大白屁股肥臀xxxxxx| 成人免费高清视频在线观看| 午夜激情综合网| 国产精品乱码一区二区三区软件 | 色婷婷久久99综合精品jk白丝| 图片区日韩欧美亚洲| 欧美激情一区二区三区在线| 欧美日韩国产三级| 99久久免费精品高清特色大片| 日本vs亚洲vs韩国一区三区二区 | 久久久亚洲精品石原莉奈| 色狠狠一区二区| 国产精品一区二区无线| 日韩精品久久理论片| 亚洲日本va在线观看| 精品精品国产高清a毛片牛牛| 日韩欧美精品在线| bt7086福利一区国产| 激情av综合网| 日韩高清在线一区| 亚洲午夜成aⅴ人片| 中文子幕无线码一区tr| 精品国产不卡一区二区三区| 欧美午夜精品电影| 色综合网色综合| 丁香婷婷综合五月| 国产精选一区二区三区| 日本午夜精品一区二区三区电影| 亚洲丝袜制服诱惑| 国产精品久久久久久亚洲毛片 | 欧美日韩精品一区二区三区蜜桃 | 亚洲精品国久久99热| 国产欧美综合色| 久久夜色精品一区| 精品少妇一区二区三区日产乱码 | 91激情在线视频| 成人教育av在线| 国产精品一区二区x88av| 蜜臂av日日欢夜夜爽一区| 日韩影院在线观看| 天天综合日日夜夜精品| 亚洲不卡在线观看| 婷婷综合久久一区二区三区| 亚洲国产一区二区视频| 亚洲自拍另类综合| 亚洲.国产.中文慕字在线| 亚洲在线免费播放| 亚洲国产精品久久久久秋霞影院| 亚洲色图20p| 亚洲天堂免费在线观看视频| 18欧美亚洲精品| 亚洲欧美另类久久久精品2019| 综合亚洲深深色噜噜狠狠网站| 国产精品人成在线观看免费| 国产精品美女久久久久久2018 | 91最新地址在线播放| 亚洲精品一线二线三线| 日韩欧美久久一区| 日韩无一区二区| 久久久国产精品不卡| 一本大道综合伊人精品热热 | 91精品视频网| 亚洲一区二区五区| 亚洲国产成人高清精品| 国内精品免费在线观看| 欧美日韩aaaaaa| 国产精品国产三级国产专播品爱网| 无码av中文一区二区三区桃花岛| 国产99久久久久久免费看农村| 欧美日韩一区视频| 国产精品成人网| 国产经典欧美精品| 欧美一区二区三区啪啪| 亚洲精品久久7777| 99久久99久久精品免费观看| 欧美精品一区二区蜜臀亚洲| 午夜视频一区二区三区| 91污在线观看| 亚洲国产电影在线观看| 免费在线观看精品| 欧美三级三级三级| 亚洲人成亚洲人成在线观看图片| 精品一区二区在线视频| 欧美日韩国产首页| 一区二区三区美女视频| 成人av资源在线| 精品国产麻豆免费人成网站| 无吗不卡中文字幕| 欧日韩精品视频| 亚洲图片激情小说| av在线不卡网| 欧美国产日产图区| 国产精一区二区三区| 26uuu欧美日本| 蜜臀av一级做a爰片久久| 欧美日韩三级一区| 亚洲一卡二卡三卡四卡五卡| 91麻豆文化传媒在线观看| 中文字幕第一区| 成人永久aaa| 亚洲国产精品精华液ab| 国产精品一品二品| 久久久不卡网国产精品二区 | 九一久久久久久| 日韩欧美你懂的| 韩日av一区二区| 337p粉嫩大胆色噜噜噜噜亚洲| 激情亚洲综合在线| 26uuu亚洲综合色欧美| 国产精品综合二区| 欧美国产精品专区| 不卡电影免费在线播放一区| 国产精品九色蝌蚪自拍| 一本色道**综合亚洲精品蜜桃冫| 中文字幕制服丝袜一区二区三区| 成人妖精视频yjsp地址| 国产精品久久久久久久久免费樱桃 | 欧美性三三影院| 亚洲小少妇裸体bbw| 欧美精品日韩精品| 免费成人av在线| 久久只精品国产| 成人永久看片免费视频天堂| 中文字幕一区在线| 在线视频你懂得一区二区三区| 亚洲一线二线三线视频| 欧美男人的天堂一二区| 精品一二线国产| 国产精品久久久久一区二区三区| 91丝袜美女网| 婷婷丁香久久五月婷婷| 精品国产乱码久久| av福利精品导航| 亚洲成va人在线观看| 欧美tk—视频vk| 国产成人免费9x9x人网站视频| 日韩一区在线免费观看| 欧美自拍偷拍午夜视频| 久热成人在线视频| 国产精品免费av| 欧美日韩日本视频| 国产精品一线二线三线精华| 夜夜嗨av一区二区三区网页 | 欧美激情一二三区| 欧美在线综合视频| 久久激情五月婷婷| 亚洲欧美日韩国产一区二区三区| 欧美日韩中字一区| 国产成人自拍在线| 亚洲成a人v欧美综合天堂下载| 久久女同精品一区二区| 91黄色小视频| 国产成人福利片| 亚洲成在线观看| 久久久精品国产免费观看同学| 欧洲激情一区二区| 国产suv精品一区二区6| 亚洲h在线观看| 国产精品久久久久久亚洲毛片| 欧美年轻男男videosbes| 成人aa视频在线观看| 免费精品视频最新在线| 中文字幕字幕中文在线中不卡视频| 51精品久久久久久久蜜臀| 99麻豆久久久国产精品免费 | 亚洲影院久久精品| 国产精品无圣光一区二区| 日韩精品在线一区二区| 在线视频你懂得一区|