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

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>
            欧美一区二区视频观看视频| 亚洲精品在线观| 日韩亚洲在线| 老司机精品视频一区二区三区| 欧美激情网友自拍| 亚洲高清中文字幕| 国产精品亚洲人在线观看| 一级日韩一区在线观看| 午夜在线一区| 亚洲午夜精品17c| 猛男gaygay欧美视频| 久久国产手机看片| 欧美性大战久久久久久久蜜臀 | 国产精品成人av性教育| 国产精品色在线| 久久国产综合精品| 国产精品推荐精品| 亚洲一区在线看| 午夜伦理片一区| 国产精品自拍小视频| 亚洲少妇一区| 欧美一区三区三区高中清蜜桃| 欧美精品在欧美一区二区少妇| 91久久国产综合久久蜜月精品| 亚洲激情另类| 欧美一区成人| 久久av一区二区三区| 亚洲日韩中文字幕在线播放| 欧美一区二区大片| 欧美日韩中文在线| 欧美不卡高清| 欧美激情精品久久久久久黑人| 国产午夜精品久久久| 久久久久久成人| 亚洲精品一二三| 西西人体一区二区| 欧美色精品天天在线观看视频 | 亚洲免费观看视频| 午夜天堂精品久久久久 | 欧美日韩视频在线一区二区观看视频| 欧美岛国在线观看| 亚洲欧美日韩国产一区二区三区| 老司机亚洲精品| 欧美成人免费网站| 亚洲丶国产丶欧美一区二区三区| 久久精品视频在线观看| 久久久久一区二区三区| 尤物视频一区二区| 欧美~级网站不卡| 99亚洲一区二区| 久久久亚洲综合| 9色精品在线| 久久手机免费观看| 亚洲第一精品夜夜躁人人躁 | 亚洲国产精品t66y| 一区二区三区视频在线播放| 国产精品外国| 伊大人香蕉综合8在线视| 亚洲自拍电影| 亚洲国产裸拍裸体视频在线观看乱了| 国产美女精品| 欧美人交a欧美精品| 久久中文字幕一区| 美女啪啪无遮挡免费久久网站| 午夜电影亚洲| 久热这里只精品99re8久| 亚洲最黄网站| 日韩亚洲欧美综合| 亚洲欧洲综合| 美日韩精品视频| 亚洲成色777777在线观看影院| 久久频这里精品99香蕉| 欧美中文字幕在线视频| 国产欧美综合一区二区三区| 校园春色综合网| 欧美一区二区精品久久911| 国产欧美日本一区二区三区| 欧美一区激情| 久久精品久久99精品久久| 国内成人精品2018免费看| 久久久久国产精品一区三寸| 久久午夜国产精品| 亚洲精品资源| 在线一区二区三区四区| 国产三级欧美三级日产三级99| 久久亚洲视频| 欧美精品手机在线| 欧美中文字幕在线观看| 久久久蜜臀国产一区二区| 亚洲乱码视频| 午夜精品久久久久久久久久久久久 | 久久精品99无色码中文字幕 | 性感少妇一区| 在线免费观看成人网| 亚洲人成在线观看网站高清| 国产精品天天看| 亚洲国产精品精华液2区45| 欧美三级小说| 免费毛片一区二区三区久久久| 欧美国内亚洲| 香蕉亚洲视频| 欧美精品激情在线| 久久中文字幕导航| 欧美网站在线| 亚洲电影在线免费观看| 国产精品日韩久久久| 欧美成人激情在线| 国产日韩欧美麻豆| 99re热这里只有精品免费视频| 国语自产精品视频在线看8查询8| 亚洲国产一二三| 激情综合色丁香一区二区| 亚洲欧洲av一区二区| 母乳一区在线观看| 久久综合精品国产一区二区三区| 久久久久久久综合色一本| 久久se精品一区二区| 午夜精品久久久久久99热软件| 午夜一区二区三视频在线观看 | 国产三区精品| 国产精品乱码久久久久久| 欧美日韩喷水| 久久这里只精品最新地址| 欧美午夜一区| 亚洲三级国产| 在线成人激情| 欧美一二三视频| 亚洲欧美在线看| 欧美日韩国产一区| 免费不卡在线观看av| 国产亚洲网站| 羞羞视频在线观看欧美| 中文精品99久久国产香蕉| 欧美大片在线看| 欧美激情第9页| 亚洲国产合集| 麻豆精品网站| 欧美风情在线| 亚洲人成绝费网站色www| 麻豆成人小视频| 亚洲国产乱码最新视频| 亚洲欧洲在线看| 欧美成人一区二区三区在线观看| 欧美a级一区| 亚洲国产精品嫩草影院| 免费成人黄色av| 亚洲国产清纯| 一区二区三区毛片| 国产精品人人做人人爽 | 亚洲第一黄色网| 亚洲激情在线观看视频免费| 久久综合色综合88| 亚洲黄色小视频| 一区二区三区高清| 国产精品久久福利| 欧美一级视频精品观看| 麻豆精品在线观看| 亚洲人线精品午夜| 欧美日韩一区二区免费在线观看 | 亚洲一区图片| 久久欧美肥婆一二区| 亚洲高清视频一区二区| 欧美黄色日本| 亚洲综合社区| 免费看成人av| 欧美日韩一区在线| 欧美日韩一区二区三区高清| 中文欧美日韩| 久久久久久婷| 亚洲资源av| 久久久噜噜噜久噜久久| 日韩视频免费观看高清在线视频 | 激情av一区| 欧美一区在线看| 久久夜色精品| 欧美一区国产在线| 欧美亚洲系列| 麻豆成人在线| 亚洲天堂成人| 精品99一区二区三区| 欧美日韩91| 久久精品国产亚洲一区二区| 亚洲精品美女久久7777777| 欧美一区二区在线看| 亚洲美女一区| 国内成人精品一区| 国产精品久久久久久久久借妻| 久久久久久色| 午夜久久美女| 夜夜嗨av一区二区三区网站四季av| 久久久久久成人| 性色av一区二区三区| 日韩一区二区久久| 永久91嫩草亚洲精品人人| 国产精品免费视频观看| 欧美日韩一区二区在线观看| 免费一级欧美在线大片| 久久成人免费电影| 亚洲欧美精品一区| 亚洲视频一区在线|