青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 13,comments - 0,trackbacks - 0

在Windows Mobile 開發過程中,很多時候需要讀取短信收件夾及發件夾里的數據,當然C#是很難實現這個的,因為微軟沒有對底層API進行封裝,此時,C++又出來了,通過C++封裝一個DLL,然后在C#中調用即可(沒辦法,C++)總是那么強。

具體的C++封裝我這里不詳細介紹,其實也不是我封裝的,是別人寫的,這里引用過來。

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;

??? public class NetMAPI:IDisposable???????
??? {
??????? protected IntPtr pMAPI;
??????? public NetMAPI()
??????? {
??????????? pMAPI = IntPtr.Zero;
??????? }
??????? ~NetMAPI()
??????? {
??????????? Dispose(false);
??????? }
??????? public void Dispose()
??????? {
??????????? Dispose(true);
??????????? GC.SuppressFinalize(this);
??????? }
??????? protected virtual void Dispose(bool disposing)
??????? {
??????????? Logout();
??????? }
??????? public IntPtr MAPI
??????? {
??????????? get { return pMAPI; }
??????? }
??????? public bool Login()
??????? {
??????????? if (pMAPI == IntPtr.Zero) pMAPI = MAPILogin();
??????????? return (pMAPI != IntPtr.Zero);
??????? }
??????? public void Logout()
??????? {
??????????? if (pMAPI != IntPtr.Zero)
??????????? {
??????????????? MAPILogout(pMAPI);
??????????????? pMAPI = IntPtr.Zero;
??????????? }
??????? }
??????? public bool OpenMessageStore()
??????? {
??????????? return MAPIOpenMessageStore(pMAPI);
??????? }
??????? public bool GetNextMessage(out SmsMessage message, bool bUnreadOnly)
??????? {
??????????? IntPtr pMessage;
??????????? message = null;
??????????? if (MAPIGetNextMessage(pMAPI, out pMessage, bUnreadOnly))
??????????? {
??????????????? message = new SmsMessage(pMessage);
??????????? }
??????????? return (message != null);
??????? }
??????? public bool GetContents()
??????? {
??????????? return GetContents(IntPtr.Zero);
??????? }
??????? public bool OpenInbox()
??????? {
??????????? return MAPIOpenInbox(pMAPI);
??????? }
??????? /// <summary>
??????? /// Opens the Outbox folder
??????? /// </summary>
??????? /// <returns>true on success</returns>
??????? public bool OpenOutbox()
??????? {
??????????? return MAPIOpenOutbox(pMAPI);
??????? }

??????? /// <summary>
??????? /// Opens the Sent Items folder
??????? /// </summary>
??????? /// <returns>true on success</returns>
??????? public bool OpenSentItems()
??????? {
??????????? return MAPIOpenSentItems(pMAPI);
??????? }

??????? /// <summary>
??????? /// Opens the Deleted Items folder
??????? /// </summary>
??????? /// <returns>true on success</returns>
??????? public bool OpenDeletedItems()
??????? {
??????????? return MAPIOpenDeletedItems(pMAPI);
??????? }
??????? /// <summary>
??????? /// Opens the Drafts folder
??????? /// </summary>
??????? /// <returns>true on success</returns>
??????? public bool OpenDrafts()
??????? {
??????????? return MAPIOpenDrafts(pMAPI);
??????? }
??????? /// <summary>
??????? /// Opens the contents of a specific folder
??????? /// </summary>
??????? /// <param name="pFolder"></param>
??????? /// <returns>true on success</returns>
??????? public bool GetContents(IntPtr pFolder)
??????? {
??????????? return MAPIGetContents(pMAPI, pFolder);
??????? }
??????? public int GetRowCounts()
??????? {
??????????? return MAPIGetRowCount(pMAPI);
??????? }
??????? [DllImport("ReadSMS.dll")]
??????? public static extern bool MAPIInit();

??????? [DllImport("ReadSMS.dll", EntryPoint = "MAPITerm")]
??????? public static extern void Term();

??????? // Profiles, Message Store

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern IntPtr MAPILogin();

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern void MAPILogout(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIOpenMessageStore(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIGetContents(IntPtr pMAPI, IntPtr pFolder);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern int MAPIGetRowCount(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIOpenInbox(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIOpenOutbox(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIOpenSentItems(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIOpenDeletedItems(IntPtr pMAPI);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIOpenDrafts(IntPtr pMAPI);
??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MAPIGetNextMessage(IntPtr pMAPI, out IntPtr pMessage, bool bUnreadOnly);
??? }
接下來封裝一個短信對象


??? public class SmsMessage:IDisposable
??? {
??????? public enum RecipientType { UNKNOWN, TO, CC, BCC };
??????? protected IntPtr pMessage;

??????? public SmsMessage()
??????? {
??????????? pMessage = IntPtr.Zero;
??????? }

??????? public SmsMessage(IntPtr pMessage)
??????? {
??????????? this.pMessage = pMessage;
??????? }

??????? ~SmsMessage()
??????? {
??????????? Dispose(false);
??????? }

??????? public void Dispose()
??????? {
??????????? Dispose(true);
??????????? GC.SuppressFinalize(this);
??????? }

??????? protected virtual void Dispose(bool disposing)
??????? {
??????????? if (pMessage != IntPtr.Zero)
??????????? {
??????????????? MessageClose(pMessage);
??????????????? pMessage = IntPtr.Zero;
??????????? }
??????? }

??????? public IntPtr MessagePointer { get { return pMessage; } }
??????? public void GetSenderName(StringBuilder strSenderName)
??????? {
??????????? MessageGetSenderName(pMessage, strSenderName, strSenderName.Capacity);
??????? }
??????? public void GetSenderEmail(StringBuilder strSenderEmail)
??????? {
??????????? MessageGetSenderEmail(pMessage, strSenderEmail, strSenderEmail.Capacity);
??????? }
??????? public void GetSubject(StringBuilder strSubject)
??????? {
??????????? MessageGetSubject(pMessage, strSubject, strSubject.Capacity);
??????? }
??????? /// <summary>
??????? /// Gets the received time
??????? /// </summary>
??????? /// <param name="dt">DateTime received</param>
??????? /// <returns>true on success</returns>
??????? public bool GetReceivedTime(out DateTime dt)
??????? {
??????????? int nYear, nMonth, nDay, nHour, nMinute, nSecond;
??????????? bool bResult = MessageGetReceivedTime(pMessage, out nYear, out nMonth, out nDay, out nHour, out nMinute, out nSecond);
??????????? dt = new DateTime(nYear, nMonth, nDay, nHour, nMinute, nSecond);
??????????? return bResult;
??????? }

??????? /// <summary>
??????? /// Gets the received time using the default format (MM/dd/yyyy hh:mm:ss tt)
??????? /// </summary>
??????? /// <param name="strReceivedTime">buffer to receive</param>
??????? /// <returns>true on success</returns>
??????? public bool GetReceivedTime(StringBuilder strReceivedTime)
??????? {
??????????? return MessageGetReceivedTimeString(pMessage, strReceivedTime, strReceivedTime.Capacity, "");
??????? }

??????? /// <summary>
??????? /// Gets the received time
??????? /// </summary>
??????? /// <param name="strReceivedTime">buffer to receive</param>
??????? /// <param name="strFormat">format string for date (empty for default)</param>
??????? /// <returns>true on success</returns>
??????? public bool GetReceivedTime(StringBuilder strReceivedTime, string strFormat)
??????? {
??????????? return MessageGetReceivedTimeString(pMessage, strReceivedTime, strReceivedTime.Capacity, strFormat);
??????? }

??????? /// <summary>
??????? /// Gets the submit time
??????? /// </summary>
??????? /// <param name="dt">DateTime submitted</param>
??????? /// <returns>true on success</returns>
??????? public bool GetSubmitTime(out DateTime dt)
??????? {
??????????? int nYear, nMonth, nDay, nHour, nMinute, nSecond;
??????????? bool bResult = MessageGetSubmitTime(pMessage, out nYear, out nMonth, out nDay, out nHour, out nMinute, out nSecond);
??????????? dt = new DateTime(nYear, nMonth, nDay, nHour, nMinute, nSecond);
??????????? return bResult;
??????? }

??????? /// <summary>
??????? /// Gets the submit time using the default format (MM/dd/yyyy hh:mm:ss tt)
??????? /// </summary>
??????? /// <param name="strSubmitTime">buffer to receive</param>
??????? /// <returns>true on success</returns>
??????? public bool GetSubmitTime(StringBuilder strSubmitTime)
??????? {
??????????? return MessageGetSubmitTimeString(pMessage, strSubmitTime, strSubmitTime.Capacity, "");
??????? }

??????? /// <summary>
??????? /// Gets the submit time
??????? /// </summary>
??????? /// <param name="strSubmitTime">buffer to receive</param>
??????? /// <param name="strFormat">format string for date (empty for default)</param>
??????? /// <returns>true on success</returns>
??????? public bool GetSubmitTime(StringBuilder strSubmitTime, string strFormat)
??????? {
??????????? return MessageGetSubmitTimeString(pMessage, strSubmitTime, strSubmitTime.Capacity, strFormat);
??????? }
??????? /// <summary>
??????? /// Get the recipients table, call this before calling GetNextRecipient
??????? /// </summary>
??????? /// <returns>true on success</returns>
??????? public bool GetRecipients()
??????? {
??????????? return MessageGetRecipients(pMessage);
??????? }

??????? /// <summary>
??????? /// Gets the next recipient
??????? /// </summary>
??????? /// <param name="strName">Name of recipient</param>
??????? /// <param name="strEmail">Email of recipient</param>
??????? /// <param name="nType">RecipientType (TO, CC, BCC)</param>
??????? /// <returns>true on success</returns>
??????? public bool GetNextRecipient(StringBuilder strName, StringBuilder strEmail, out RecipientType nType)
??????? {
??????????? int nRecipientType;
??????????? nType = RecipientType.UNKNOWN;
??????????? if (MessageGetNextRecipient(pMessage, strName, strName.Capacity, strEmail, strEmail.Capacity, out nRecipientType))
??????????? {
??????????????? nType = (RecipientType)nRecipientType;
??????????????? return true;
??????????? }
??????????? return false;
??????? }
??????? [DllImport("ReadSMS.dll")]
??????? protected static extern void MessageClose(IntPtr pMessage);
??????? [DllImport("ReadSMS.dll")]
??????? protected static extern void MessageGetSenderName(IntPtr pMessage, StringBuilder strSenderName, int nMaxLength);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern void MessageGetSenderEmail(IntPtr pMessage, StringBuilder strSenderEmail, int nMaxLength);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern void MessageGetSubject(IntPtr pMessage, StringBuilder strSubject, int nMaxLength);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MessageGetReceivedTime(IntPtr pMessage, out int nYear, out int nMonth, out int nDay, out int nHour, out int nMinute, out int nSecond);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MessageGetReceivedTimeString(IntPtr pMessage, StringBuilder strReceivedTime, int nMaxLength, string szFormat);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MessageGetSubmitTime(IntPtr pMessage, out int nYear, out int nMonth, out int nDay, out int nHour, out int nMinute, out int nSecond);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MessageGetSubmitTimeString(IntPtr pMessage, StringBuilder strSubmitTime, int nMaxLength, string szFormat);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MessageGetRecipients(IntPtr pMessage);

??????? [DllImport("ReadSMS.dll")]
??????? protected static extern bool MessageGetNextRecipient(IntPtr pMessage, StringBuilder strName, int nMaxLenName, StringBuilder strEmail, int nMaxLenEmail, out int nType);

??? }

獲取收件夾數據

??????? /// <summary>
??????? /// 讀取收件夾用戶數據
??????? /// </summary>
??????? /// <param name="sender"></param>
??????? /// <param name="e"></param>
??????? private void buttonEX1_Click(object sender, EventArgs e)
??????? {
??????????? try
??????????? {
??????????????? Cursor.Current = Cursors.WaitCursor;
??????????????? this.listViewEX1.Columns[0].Text = "發件人";
??????????????? if (!NetMAPI.MAPIInit())
??????????????? {
??????????????????? MessageBox.Show("打開發件夾失敗", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1);
??????????????? }
??????????????? else
??????????????? {
??????????????????? if (this.rDs == null)
??????????????????? {
??????????????????????? rDs = new DataSet();
??????????????????????? DataTable dt = new DataTable();
??????????????????????? dt.Columns.Add("Num");
??????????????????????? dt.Columns.Add("Content");
??????????????????????? rDs.Tables.Add(dt);
??????????????????????? NetMAPI tmapi = new NetMAPI();
??????????????????????? if (tmapi.Login())
??????????????????????? {
??????????????????????????? if ((tmapi.OpenMessageStore() && tmapi.OpenInbox()) && tmapi.GetContents())
??????????????????????????? {
??????????????????????????????? SmsMessage message;
??????????????????????????????? StringBuilder strSenderName = new StringBuilder(1024);
??????????????????????????????? int num = 0;


??????????????????????????????? while (tmapi.GetNextMessage(out message, false))
??????????????????????????????? {
??????????????????????????????????? DataRow dr = rDs.Tables[0].NewRow();

??????????????????????????????????? num++;
??????????????????????????????????? CF.Forms.ListViewItem it = new CF.Forms.ListViewItem();
??????????????????????????????????? message.GetSenderName(strSenderName);
??????????????????????????????????? dr["Num"] = strSenderName.ToString().Replace("+86", "");

??????????????????????????????????? message.GetSubject(strSenderName);
??????????????????????????????????? dr["Content"] = strSenderName.ToString();

??????????????????????????????????? message.Dispose();
??????????????????????????????????? this.rDs.Tables[0].Rows.Add(dr);
??????????????????????????????????? if (num > 0xed)
??????????????????????????????????? {
??????????????????????????????????????? break;
??????????????????????????????????? }
??????????????????????????????? }
??????????????????????????? }
??????????????????????????? tmapi.Logout();
??????????????????????? }
??????????????????? }
??????????????????? NetMAPI.Term();
??????????????????
??????????????? }
??????????????? //綁定數據集合
??????????????? this.listViewEX1.ListDataSet = rDs;
??????????????? this.listViewNavigateEX1.RowsTotalCount = rDs.Tables[0].Rows.Count; ;
??????????????? this.listViewNavigateEX1.ShowPageIndex();
??????????? }
??????????? catch (Exception ep)
??????????? {
#if DEBUG
??????????????? MessageBox.Show(ep.Message);
#endif
??????????????? MessageBox.Show("讀取收件夾短信數據時發生錯誤!", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1);
??????????? }
??????????? finally
??????????? {
??????????????? Cursor.Current = Cursors.Default;
??????????? }
??????? }

獲取已發送短信數據

private void buttonEX2_Click(object sender, EventArgs e)
??????? {
??????????? try
??????????? {
??????????????? Cursor.Current = Cursors.WaitCursor;
??????????????? this.listViewEX1.Columns[0].Text = "收件人";

??????????????? if (this.sDs == null)
??????????????? {
??????????????????? sDs = new DataSet();
??????????????????? DataTable dt = new DataTable();
??????????????????? dt.Columns.Add("Num");
??????????????????? dt.Columns.Add("Content");
??????????????????? sDs.Tables.Add(dt);
??????????????????? if (NetMAPI.MAPIInit())
??????????????????? {
??????????????????????? NetMAPI tmapi = new NetMAPI();
??????????????????????? if (tmapi.Login())
??????????????????????? {
??????????????????????????? if ((tmapi.OpenMessageStore() && tmapi.OpenSentItems()) && tmapi.GetContents())
??????????????????????????? {
??????????????????????????????? SmsMessage message;
??????????????????????????????? StringBuilder strSubject = new StringBuilder(1024);
??????????????????????????????? StringBuilder strName = new StringBuilder(0x19);
??????????????????????????????? StringBuilder strEmail = new StringBuilder(0x19);
??????????????????????????????? int num = 0;
??????????????????????????????? while (tmapi.GetNextMessage(out message, false))
??????????????????????????????? {
??????????????????????????????????? DataRow dr = sDs.Tables[0].NewRow();
??????????????????????????????????? SmsMessage.RecipientType type;
??????????????????????????????????? num++;
??????????????????????????????????? CF.Forms.ListViewItem it = new CF.Forms.ListViewItem();
??????????????????????????????????? message.GetRecipients();
??????????????????????????????????? message.GetNextRecipient(strName, strEmail, out type);
???????????????????????????????????? dr["Num"] = strName.ToString().Replace("+86", "");
??????????????????????????????????? message.GetSubject(strSubject);
??????????????????????????????????? dr["Content"] = strSubject.ToString();
??????????????????????????????????? message.Dispose();
??????????????????????????????????? this.sDs.Tables[0].Rows.Add(dr);
??????????????????????????????? }
??????????????????????????? }
??????????????????????????? tmapi.Logout();
??????????????????????? }
??????????????????? }
??????????????????? else
??????????????????? {
??????????????????????? MessageBox.Show("讀取發件夾短息數據失敗!", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1);
??????????????????? }
??????????????????? NetMAPI.Term();
??????????????? }
??????????????? //綁定數據
??????????????? this.listViewEX1.ListDataSet = sDs;
??????????????? this.listViewNavigateEX1.RowsTotalCount = sDs.Tables[0].Rows.Count; ;
??????????????? this.listViewNavigateEX1.ShowPageIndex();
??????????? }
??????????? catch (Exception ep)
??????????? {
#if DEBUG
??????????????? MessageBox.Show(ep.Message);
#endif
??????????????? MessageBox.Show("讀取發件夾短信數據時發生錯誤!", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1);
??????????? }
??????????? finally
??????????? {
??????????????? Cursor.Current = Cursors.Default;
??????????? }
??????? }

OK,到此為止,一切都搞定。


轉自:http://hi.baidu.com/thepurpledream/blog/item/1148fe1846f79cb14aedbc81.html

posted on 2009-05-11 10:49 收藏也是種愛好 閱讀(532) 評論(0)  編輯 收藏 引用 所屬分類: Windows Mobile編程
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲第一区中文99精品| 欧美一区二视频| 午夜精品剧场| 国产精品久久久久毛片大屁完整版 | 亚洲一级网站| 国产一区二区日韩精品欧美精品| 嫩草影视亚洲| 欧美一区二区三区免费视频| 欧美高清视频在线观看| 在线视频日韩精品| 精品电影在线观看| 国产精品毛片| 久久天天躁狠狠躁夜夜av| 亚洲最新色图| 欧美电影美腿模特1979在线看| 欧美在线一级视频| 亚洲国产精品电影在线观看| 亚洲一区日韩| 亚洲第一视频| 伊人狠狠色丁香综合尤物| 国产一区二三区| 欧美电影专区| 久久精品中文字幕一区| 久久不射中文字幕| 欧美一区二区在线观看| 亚洲一区二区四区| 亚洲中午字幕| 欧美 日韩 国产精品免费观看| 亚洲欧美亚洲| 妖精视频成人观看www| 国产精品理论片| 欧美日韩一区二区三区免费看| 久久躁狠狠躁夜夜爽| 久久一二三国产| 久久亚洲私人国产精品va| 夜夜嗨av一区二区三区网站四季av| 999在线观看精品免费不卡网站| 夜夜嗨av一区二区三区网页| 亚洲欧美一区二区视频| 亚洲午夜精品国产| 在线观看日韩| 亚洲国产精品va在线观看黑人 | 国产精品自拍小视频| 国模精品娜娜一二三区| 午夜精品久久久久久99热软件 | 韩国av一区| 午夜精品av| 亚洲人被黑人高潮完整版| 亚洲香蕉伊综合在人在线视看| 欧美国产免费| 亚洲欧美视频在线观看视频| 亚洲国产精品一区二区www在线| 久久成人免费电影| 欧美成人精品| 日韩亚洲欧美成人| 欧美日韩直播| 亚洲欧洲一区二区三区在线观看| 午夜精品久久一牛影视| 一本久道综合久久精品| 一本久久a久久精品亚洲| 国产女主播视频一区二区| 欧美日韩免费观看一区=区三区| 亚洲一区二区日本| 日韩天堂在线视频| 久久这里有精品视频| 亚洲私人影院| 亚洲黄色免费电影| 亚洲精品欧洲| 影音先锋中文字幕一区二区| 国产乱码精品一区二区三区av| 国产精品久久久久9999高清| 欧美刺激性大交免费视频 | 午夜精品久久久久久久99水蜜桃| 一本色道久久| 欧美一级专区| 欧美专区中文字幕| 欧美尤物巨大精品爽| 麻豆精品网站| 欧美成人激情在线| 久久色在线观看| 亚洲精品1区| 亚洲第一二三四五区| 日韩一区二区精品视频| 亚洲视频久久| 午夜精品久久久久久久白皮肤 | 欧美aⅴ一区二区三区视频| 国产精品免费电影| 亚洲欧美999| 午夜视频在线观看一区| 99国产精品久久久| 国产视频一区二区三区在线观看| 在线观看视频一区二区| 99pao成人国产永久免费视频| 国产区精品在线观看| 亚洲人午夜精品| 久久亚洲综合| 欧美精品国产精品日韩精品| 久久福利精品| 欧美日韩一本到| 亚洲国产成人tv| 亚洲第一成人在线| 欧美美女bb生活片| 久久久久国产一区二区三区四区| 男女精品网站| 欧美在线免费观看视频| 国产精品主播| 欧美一区二区三区久久精品茉莉花 | 这里是久久伊人| 欧美日韩一区二区三区四区五区| 91久久精品美女高潮| 久久影院午夜片一区| 亚洲精品国产拍免费91在线| 你懂的国产精品| 久久精品女人| 蘑菇福利视频一区播放| 亚洲国产天堂久久国产91| 亚洲激情国产精品| 亚洲精品视频在线观看网站 | 亚洲电影观看| 亚洲婷婷国产精品电影人久久 | 美女视频一区免费观看| 欧美.www| 亚洲少妇中出一区| 欧美激情一区二区三区全黄| 美腿丝袜亚洲色图| 99亚洲一区二区| 在线观看欧美黄色| 欧美黄色一区二区| 香蕉久久一区二区不卡无毒影院 | 美女精品一区| 免费高清在线视频一区·| 亚洲欧美国产一区二区三区| 欧美午夜一区| 国产无一区二区| 日韩视频精品在线观看| 麻豆精品一区二区av白丝在线| 久久综合久久88| 亚洲人永久免费| 久久综合狠狠| 一区在线视频| 久久久久国产精品一区三寸| 老司机成人在线视频| 欧美综合国产精品久久丁香| 国产欧美日韩精品一区| 亚洲自啪免费| 久久视频在线免费观看| 国产精品一二一区| 亚洲精品乱码| 好看的日韩av电影| 香蕉久久夜色精品国产使用方法| 日韩亚洲成人av在线| 欧美在线免费视屏| 一区二区高清视频在线观看| 午夜视频精品| 亚洲国内在线| 一区二区三区四区在线| 欧美—级a级欧美特级ar全黄| 久久亚洲国产成人| 国产自产精品| 欧美伊人久久大香线蕉综合69| 亚洲精品在线看| 亚洲一区二区三区精品动漫| 国产日本欧美在线观看| 亚洲精品视频在线观看网站| 99av国产精品欲麻豆| 亚洲电影av在线| 亚洲剧情一区二区| 在线观看日韩av| 国模精品一区二区三区色天香| 国产日韩欧美视频| 激情亚洲网站| 在线观看一区视频| 亚洲毛片一区二区| 一区二区欧美精品| 亚洲淫片在线视频| 美女精品国产| 一本久久综合亚洲鲁鲁| 亚洲女人天堂成人av在线| 在线观看国产一区二区| 免费不卡在线视频| 欧美一区二区三区精品电影| 亚洲国产精品久久久久婷婷884| 精品成人在线| 久久在线播放| 久久久伊人欧美| 国内成人精品2018免费看 | 国产伦精品一区二区三区| 欧美国产视频在线观看| 国产美女一区二区| 亚洲中无吗在线| 午夜精品久久久久| 国产精品亚洲综合| 亚洲欧美在线播放| 亚洲中无吗在线| 欧美日韩蜜桃| 一本色道久久88亚洲综合88| 黄色一区二区三区| 免费欧美网站| 亚洲七七久久综合桃花剧情介绍| 黑人操亚洲美女惩罚|