qinazt 发表于 2009-1-31 22:27:49

关于Fetion dll寻求帮助

刚开始学习DllCall
提示信息
/**http://www.libfetion.cn/bbs/forum.php?mod=viewthread&tid=1247&extra=page%3D1
* \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.
*/
int fx_send_sms_to_self(const char *message, EventListener func,void *args);
发送短信到自己手机上.

如果我想将"aaaa"发送到自己的手机
使用DllCall ( "libfx.dll", "return type", "function" [, "type1", param1 [, "type n", param n]] )
怎样编写?

ceoguang 发表于 2009-1-31 22:55:05

关注此贴,up
页: [1]
查看完整版本: 关于Fetion dll寻求帮助