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

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

?? smsexampledlg.cpp

?? 該小程序是實現了手機發送
?? CPP
字號:
// SmsExampleDlg.cpp : implementation file
//

#include "stdafx.h"
#include "SmsExample.h"
#include "SmsExampleDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
	CAboutDlg();

// Dialog Data
	//{{AFX_DATA(CAboutDlg)
	enum { IDD = IDD_ABOUTBOX };
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAboutDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	//{{AFX_MSG(CAboutDlg)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
	//{{AFX_DATA_INIT(CAboutDlg)
	//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAboutDlg)
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
	//{{AFX_MSG_MAP(CAboutDlg)
		// No message handlers
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSmsExampleDlg dialog

CSmsExampleDlg::CSmsExampleDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CSmsExampleDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSmsExampleDlg)
	m_strNumber = _T("");
	m_strContent = _T("");
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CSmsExampleDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSmsExampleDlg)
	DDX_Text(pDX, IDC_DESNUMBER, m_strNumber);
	DDX_Text(pDX, IDC_CONTENT, m_strContent);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CSmsExampleDlg, CDialog)
	//{{AFX_MSG_MAP(CSmsExampleDlg)
	ON_WM_SYSCOMMAND()
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(IDC_OPENBUTTON, OnOpenButton)
	ON_BN_CLICKED(IDC_CLOSEBUTTON, OnCloseButton)
	ON_BN_CLICKED(IDC_CLEARBUTTON, OnClearButton)
	ON_BN_CLICKED(IDC_SENDBUTTON, OnSendButton)
	ON_BN_CLICKED(IDC_RECEIVEBUTTON, OnReceiveButton)
	ON_BN_CLICKED(IDC_DELALLBUTTON, OnDelAllButton)
	ON_BN_CLICKED(IDC_UNREADBUTTON, OnUnreadButton)
	ON_BN_CLICKED(IDC_GETCENTER, OnGetCenter)
	ON_BN_CLICKED(IDC_SETCENTER, OnSetCenter)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSmsExampleDlg message handlers

BOOL CSmsExampleDlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Add "About..." menu item to system menu.

	// IDM_ABOUTBOX must be in the system command range.
	ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
	ASSERT(IDM_ABOUTBOX < 0xF000);

	CMenu* pSysMenu = GetSystemMenu(FALSE);
	if (pSysMenu != NULL)
	{
		CString strAboutMenu;
		strAboutMenu.LoadString(IDS_ABOUTBOX);
		if (!strAboutMenu.IsEmpty())
		{
			pSysMenu->AppendMenu(MF_SEPARATOR);
			pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
		}
	}

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon
	
	// TODO: Add extra initialization here
	//初始化COMBOX串口框
	CComboBox* cbCom=(CComboBox*)GetDlgItem(IDC_COMBO1);
	for(int i=1;i<10;i++)
	{
		CString temp;
		temp.Format("%d",i); 
		cbCom->AddString(temp); 
	}
	cbCom->SetWindowText("1"); 

	CButton* pCloseButton=(CButton*)GetDlgItem(IDC_CLOSEBUTTON);
	CButton* pSendButton=(CButton*)GetDlgItem(IDC_SENDBUTTON);
	CButton* pReceiveButton=(CButton*)GetDlgItem(IDC_RECEIVEBUTTON);
	CButton* pDelAllButton=(CButton*)GetDlgItem(IDC_DELALLBUTTON);
	CButton* pUnreadButton=(CButton*)GetDlgItem(IDC_UNREADBUTTON);
	CButton* pSetButton=(CButton*)GetDlgItem(IDC_SETCENTER);
	CButton* pGetButton=(CButton*)GetDlgItem(IDC_GETCENTER);
	pCloseButton->EnableWindow(FALSE);
	pSendButton->EnableWindow(FALSE);
	pReceiveButton->EnableWindow(FALSE);
	pDelAllButton->EnableWindow(FALSE);
	pUnreadButton->EnableWindow(FALSE);
	pSetButton->EnableWindow(FALSE);
	pGetButton->EnableWindow(FALSE);
	
	//初始化短消息接收列表框
	CListCtrl* pListCtrl=(CListCtrl*)GetDlgItem(IDC_LIST1);
	DWORD dwStyle=GetWindowLong(pListCtrl->m_hWnd,GWL_STYLE);
	SetWindowLong(pListCtrl->m_hWnd,GWL_STYLE,dwStyle|LVS_REPORT);
	dwStyle=pListCtrl->GetExtendedStyle();
	pListCtrl->SetExtendedStyle(dwStyle|LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES);
	
	TCHAR Title[3][16]={_T("發送方號碼"),_T("發送時間"),_T("發送內容")};
	LVCOLUMN lvColumn;
	CRect rect;
	pListCtrl->GetWindowRect(&rect);
	for(int j=0;j<3;j++)
	{
		lvColumn.mask=LVCF_FMT|LVCF_SUBITEM|LVCF_TEXT|LVCF_WIDTH|LVCF_ORDER;
		lvColumn.fmt=LVCFMT_LEFT;
		lvColumn.pszText=Title[j];
		lvColumn.iSubItem=j;
		lvColumn.iOrder=j;
		lvColumn.cx=rect.Width()/3;
		pListCtrl->InsertColumn(j,&lvColumn); 

	}
	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CSmsExampleDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
	if ((nID & 0xFFF0) == IDM_ABOUTBOX)
	{
		CAboutDlg dlgAbout;
		dlgAbout.DoModal();
	}
	else
	{
		CDialog::OnSysCommand(nID, lParam);
	}
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CSmsExampleDlg::OnPaint() 
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

		// Center icon in client rectangle
		int cxIcon = GetSystemMetrics(SM_CXICON);
		int cyIcon = GetSystemMetrics(SM_CYICON);
		CRect rect;
		GetClientRect(&rect);
		int x = (rect.Width() - cxIcon + 1) / 2;
		int y = (rect.Height() - cyIcon + 1) / 2;

		// Draw the icon
		dc.DrawIcon(x, y, m_hIcon);
	}
	else
	{
		CDialog::OnPaint();
	}
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CSmsExampleDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

void CSmsExampleDlg::OnOpenButton() 
{
	// TODO: Add your control notification handler code here
	CComboBox* pCB=(CComboBox*)GetDlgItem(IDC_COMBO1);
	CButton* pOpenButton=(CButton*)GetDlgItem(IDC_OPENBUTTON);
	CButton* pCloseButton=(CButton*)GetDlgItem(IDC_CLOSEBUTTON);
	CButton* pSendButton=(CButton*)GetDlgItem(IDC_SENDBUTTON);
	CButton* pReceiveButton=(CButton*)GetDlgItem(IDC_RECEIVEBUTTON);
	CButton* pDelAllButton=(CButton*)GetDlgItem(IDC_DELALLBUTTON);
	CButton* pUnreadButton=(CButton*)GetDlgItem(IDC_UNREADBUTTON);
	CButton* pSetButton=(CButton*)GetDlgItem(IDC_SETCENTER);
	CButton* pGetButton=(CButton*)GetDlgItem(IDC_GETCENTER);
	
	CString strCom="COM";
	CString temp="";
	pCB->GetWindowText(temp);
	strCom+=temp;
	if(OpenComm(strCom,CBR_9600,NOPARITY,8, ONESTOPBIT))
	{
		
		if(!CheckNo())
		{
			MessageBox("非本公司產品,程序將終止運行","序列號驗證",MB_OK);
			CloseComm();
			return;
		}
		SetSendModule(0);
		pOpenButton->EnableWindow(FALSE); 
		pCloseButton->EnableWindow(TRUE);
		pSendButton->EnableWindow(TRUE);
 		pReceiveButton->EnableWindow(TRUE);
		pDelAllButton->EnableWindow(TRUE);
		pUnreadButton->EnableWindow(TRUE);
		pSetButton->EnableWindow(TRUE);
		pGetButton->EnableWindow(TRUE);
	}
}


void CSmsExampleDlg::OnCloseButton() 
{
	// TODO: Add your control notification handler code here
	CButton* pOpenButton=(CButton*)GetDlgItem(IDC_OPENBUTTON);
	CButton* pCloseButton=(CButton*)GetDlgItem(IDC_CLOSEBUTTON);
	CButton* pSendButton=(CButton*)GetDlgItem(IDC_SENDBUTTON);
	CButton* pReceiveButton=(CButton*)GetDlgItem(IDC_RECEIVEBUTTON);
	CButton* pDelAllButton=(CButton*)GetDlgItem(IDC_DELALLBUTTON);
	CButton* pUnreadButton=(CButton*)GetDlgItem(IDC_UNREADBUTTON);
	CButton* pSetButton=(CButton*)GetDlgItem(IDC_SETCENTER);
	CButton* pGetButton=(CButton*)GetDlgItem(IDC_GETCENTER);
		
	if(CloseComm())
	{
		pOpenButton->EnableWindow(TRUE); 
		pCloseButton->EnableWindow(FALSE);
		pSendButton->EnableWindow(FALSE);
 		pReceiveButton->EnableWindow(FALSE);
		pDelAllButton->EnableWindow(FALSE);
		pUnreadButton->EnableWindow(FALSE);
		pSetButton->EnableWindow(FALSE);
		pGetButton->EnableWindow(FALSE);
	}
}

void CSmsExampleDlg::OnClearButton() 
{
	// TODO: Add your control notification handler code here
	UpdateData(TRUE);
	m_strNumber="";
	m_strContent="";
	UpdateData(FALSE);
}

void CSmsExampleDlg::OnSendButton() 
{
	// TODO: Add your control notification handler code here
	UpdateData(TRUE);
	SM_PARAM *sm_param_temp;   
	sm_param_temp= new SM_PARAM;
	CEdit* pEB=(CEdit*)GetDlgItem(IDC_EDIT1);
	SetCursor(LoadCursor(NULL,IDC_WAIT));
	int nResult=SendShortMessage(m_strNumber,m_strContent,sm_param_temp);
	if(nResult==0)
		pEB->SetWindowText("發送成功!!!");
	else if(nResult==1)
	{
		pEB->SetWindowText("發送失敗!!!");
		MessageBox("可能在發送短消息同時接收到新的短消息!!!","發送失敗",MB_OK);
	}
	else if(nResult==2)
	{
		pEB->SetWindowText("發送失敗!!!");
		MessageBox("無鏈路連接或沒有收到短消息中心的確認,或沒有收到基站的確認!!!","發送失敗",MB_OK);
	}
	else if(nResult==3)
	{
		pEB->SetWindowText("發送失敗!!!");
		MessageBox("短消息號碼錯誤或目的號碼錯誤!!!","發送失敗",MB_OK);
	}
	else if(nResult==4)
	{
		pEB->SetWindowText("發送失敗!!!");
		MessageBox("在指令執行過程中又接受新的指令!!!","發送失敗",MB_OK);
	}
	SetCursor(LoadCursor(NULL,IDC_ARROW
		));
	delete sm_param_temp;
	UpdateData(FALSE);
//	OnClearButton();
}


void CSmsExampleDlg::OnReceiveButton() 
{
	// TODO: Add your control notification handler code here
	UpdateData(TRUE);
	CListCtrl* pListCtrl=(CListCtrl*)GetDlgItem(IDC_LIST1);
	SetCursor(LoadCursor(NULL,IDC_WAIT));
	pListCtrl->DeleteAllItems(); 
	SM_PARAM *sm_param_temp=new SM_PARAM[30];
	int temp=ReceiveAllMessage(sm_param_temp);
	int i=0;
	while(i<temp)
	{
		pListCtrl->InsertItem(LVIF_TEXT|LVIF_STATE,i,sm_param_temp->TPA,(i%2)==0?LVIS_SELECTED:0,LVIS_SELECTED,0,0); 
		pListCtrl->SetItemText(i,1, InvertTime(sm_param_temp->TP_SCTS));
		pListCtrl->SetItemText(i,2, sm_param_temp->TP_UD);	
		sm_param_temp++;
		i++;
	}
	SetCursor(LoadCursor(NULL,IDC_ARROW));
	UpdateData(FALSE);
}



void CSmsExampleDlg::OnDelAllButton() 
{
	// TODO: Add your control notification handler code here
	SetCursor(LoadCursor(NULL,IDC_WAIT));	
	if(!DeleteAllMessage())
		{
			MessageBox("刪除失敗","刪除所有短消息",MB_OK);
			return;
		}
	OnReceiveButton();
	SetCursor(LoadCursor(NULL,IDC_WAIT));
}

/*
void CSmsExampleDlg::OnDelOneButton() 
{
	// TODO: Add your control notification handler code here
	if(Fcomm!=NULL)
	{
		CListCtrl* pListCtrl=(CListCtrl*)GetDlgItem(IDC_LIST1);
		if(pListCtrl->GetItemCount()==0)
		{
			MessageBox("沒有選中要刪除的短消息!!!","提示",MB_OK);
			return;
		}
		int i=pListCtrl->GetSelectedCount();
		if(!DeleteMessage(Fcomm,i+1))
		{
			MessageBox("刪除失敗","刪除所有短消息",MB_OK);
			return;
		}
		OnReceiveButton();
	}
}
*/

CString CSmsExampleDlg::InvertTime(char temp[])
{
	CString strResult="20";
	CString temp1;
	int i;
	for(i=0;i<6;i=i+2)
	{
		temp1.Format("%c",temp[i]);
		strResult+=temp1;
		temp1.Format("%c",temp[i+1]);
		strResult+=temp1;
		if(i<4)
			strResult+="-";
	}
	strResult+=" ";
	for(i=6;i<14;i=i+2)
	{
		temp1.Format("%c",temp[i]);
		strResult+=temp1;
		temp1.Format("%c",temp[i+1]);
		strResult+=temp1;
		if(i<12)
			strResult+=":";
	}
	return strResult;
}


void CSmsExampleDlg::OnUnreadButton() 
{
	// TODO: Add your control notification handler code here
	CListCtrl* pListCtrl=(CListCtrl*)GetDlgItem(IDC_LIST1);
	pListCtrl->DeleteAllItems(); 
	SM_PARAM *sm_param_temp=new SM_PARAM[10];
	SetCursor(LoadCursor(NULL,IDC_WAIT));
	int temp=ReceiveUnreadMessage(sm_param_temp);
	if(temp==0)
	{
		MessageBox("沒有未讀短消息!!!","提示",MB_OK);
		return;
	}
	int i=0;
	while(i<temp)
	{
		pListCtrl->InsertItem(LVIF_TEXT|LVIF_STATE,i,sm_param_temp->TPA,(i%2)==0?LVIS_SELECTED:0,LVIS_SELECTED,0,0); 
		pListCtrl->SetItemText(i,1, InvertTime(sm_param_temp->TP_SCTS));
		pListCtrl->SetItemText(i,2, sm_param_temp->TP_UD);	
		sm_param_temp++;
		i++;
	}
	SetCursor(LoadCursor(NULL,IDC_ARROW));
}

/*
void CSmsExampleDlg::OnGetNumber() 
{
	// TODO: Add your control notification handler code here
	UpdateData(TRUE);
	char *strCenterNumber=new char[15];
	if(!GetCenterNumber(Fcomm,strCenterNumber))
		strCenterNumber="wrong!";
	CEdit* pEdit=(CEdit*)GetDlgItem(IDC_EDIT2);
	pEdit->SetWindowText(strCenterNumber); 
	delete strCenterNumber;
	UpdateData(FALSE);

}

void CSmsExampleDlg::OnSetNumber() 
{
	// TODO: Add your control notification handler code here
	
	CString strCenterNumber="+86";
	CString temp;
	CEdit* pEdit=(CEdit*)GetDlgItem(IDC_EDIT2);
	pEdit->GetWindowText(temp);
	strCenterNumber+=temp;
	if(Fcomm==NULL)
		return;
	if(!SetCenterNumber(Fcomm,&strCenterNumber))
		AfxMessageBox("wrong!");
	delete strCenterNumber;
}
*/




void CSmsExampleDlg::OnGetCenter() 
{
	// TODO: Add your control notification handler code here
	char* strCenterNumber=new char[16];
	GetCenterNumber(strCenterNumber);
	CEdit* pEdit=(CEdit*)GetDlgItem(IDC_EDIT2);
	pEdit->SetWindowText(strCenterNumber); 
	delete strCenterNumber;
}

void CSmsExampleDlg::OnSetCenter() 
{
	// TODO: Add your control notification handler code here
	CEdit* pEdit=(CEdit*)GetDlgItem(IDC_EDIT2);
	CString strCenterNumber;
	pEdit->GetWindowText(strCenterNumber);
	SetCenterNumber(strCenterNumber);
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人激情校园春色| 欧美激情艳妇裸体舞| 久久久久88色偷偷免费| 一区二区三区四区视频精品免费 | 首页国产欧美日韩丝袜| 精品在线播放午夜| 日本福利一区二区| 久久久久久久久久久99999| 亚洲综合一区二区三区| 欧美精品乱人伦久久久久久| 日本一区二区视频在线观看| 日韩国产欧美一区二区三区| 91片在线免费观看| 国产日韩欧美精品综合| 蜜臀久久99精品久久久久宅男| 99久久伊人网影院| 日本一区二区三区电影| 久久精品国产**网站演员| 欧美午夜影院一区| 亚洲男人的天堂在线aⅴ视频| 国产一区二区三区日韩| 欧美一级搡bbbb搡bbbb| 天天色综合天天| 欧美日韩高清一区二区三区| 亚洲免费观看高清完整| 成人h版在线观看| 国产午夜久久久久| 国产乱子伦视频一区二区三区| 欧美一卡二卡在线| 三级不卡在线观看| 欧美日韩国产影片| 日韩中文字幕不卡| 欧美一二三在线| 另类综合日韩欧美亚洲| 日韩免费高清av| 精品影视av免费| 久久嫩草精品久久久精品| 激情图片小说一区| 久久精品人人做人人爽97| 国内精品写真在线观看| 久久久五月婷婷| 国产不卡在线视频| 亚洲成人自拍网| 欧美性猛交xxxx乱大交退制版 | 亚洲六月丁香色婷婷综合久久| 成人av电影观看| 亚洲色欲色欲www| 在线观看亚洲精品视频| 午夜电影一区二区三区| 日韩欧美一级在线播放| 国产乱对白刺激视频不卡| 日本一区二区免费在线| 91视频在线观看| 亚洲电影在线免费观看| 日韩一区二区三区视频在线观看 | 激情图片小说一区| 久久亚洲一区二区三区明星换脸| 国产毛片一区二区| 亚洲精品国产品国语在线app| 在线欧美日韩精品| 奇米影视一区二区三区小说| 26uuu国产一区二区三区| a在线欧美一区| 天堂一区二区在线| 久久久www免费人成精品| 99久久国产综合精品麻豆| 亚洲午夜电影网| 2023国产精品| 91麻豆免费在线观看| 人人精品人人爱| 国产精品嫩草久久久久| 欧美三日本三级三级在线播放| 蜜桃传媒麻豆第一区在线观看| 国产精品天干天干在观线| 欧美色手机在线观看| 国产一区二区精品在线观看| 一区二区三区免费观看| 久久久不卡网国产精品一区| 欧美性感一类影片在线播放| 精品在线播放午夜| 亚洲一区中文日韩| 国产欧美中文在线| 777色狠狠一区二区三区| 岛国精品在线观看| 久久精品国产成人一区二区三区| 综合久久一区二区三区| 久久久噜噜噜久久人人看| 欧美日高清视频| 色综合久久久网| 国产成人av影院| 免费成人av在线| 亚洲电影第三页| 亚洲欧美日韩国产另类专区| 久久蜜桃香蕉精品一区二区三区| 欧美日韩国产综合一区二区| 99riav久久精品riav| 国产河南妇女毛片精品久久久| 日韩和欧美的一区| 一区二区三区日韩精品视频| 国产精品乱人伦一区二区| 精品美女一区二区| 在线综合+亚洲+欧美中文字幕| 在线中文字幕一区| 99精品热视频| 成人综合婷婷国产精品久久蜜臀| 国精品**一区二区三区在线蜜桃| 日韩激情视频网站| 亚洲国产精品一区二区尤物区| 亚洲少妇30p| 中文字幕永久在线不卡| 国产精品网站在线观看| 久久久久久一二三区| 欧美大胆人体bbbb| 日韩欧美电影在线| 日韩亚洲欧美综合| 日韩视频在线一区二区| 91精品国产一区二区三区香蕉 | 日韩欧美在线1卡| 91精品国产欧美一区二区| 欧美精品日韩一本| 欧美一区二区三区小说| 欧美成人bangbros| 精品国产乱码久久久久久图片| 欧美成人一区二区三区片免费| 日韩欧美成人一区| 久久亚洲私人国产精品va媚药| 久久久久久一二三区| 国产日韩在线不卡| 国产精品护士白丝一区av| 亚洲精品你懂的| 性久久久久久久久久久久| 日本女优在线视频一区二区| 蜜桃av一区二区在线观看 | 国产精品一区二区三区乱码| 国模无码大尺度一区二区三区 | 久久精品国产亚洲a| 狠狠久久亚洲欧美| 成人在线视频一区二区| 色久优优欧美色久优优| 欧美巨大另类极品videosbest | 国产成人精品亚洲午夜麻豆| 粉嫩欧美一区二区三区高清影视| 国产91综合一区在线观看| 91色乱码一区二区三区| 欧美日韩国产另类一区| 日韩精品一区二区三区蜜臀| 国产日本欧美一区二区| 亚洲精品美腿丝袜| 裸体歌舞表演一区二区| 成人app网站| 欧美剧在线免费观看网站 | 国产在线麻豆精品观看| 成人av在线播放网站| 欧美日韩国产综合视频在线观看| 26uuu亚洲婷婷狠狠天堂| 亚洲人成人一区二区在线观看 | 国产一区二区日韩精品| 色综合久久88色综合天天6| 91精品国产91热久久久做人人| 久久久久久99久久久精品网站| 一区二区三区在线视频播放| 久久精品国产秦先生| 91传媒视频在线播放| 欧美精品一区二区三区蜜臀 | 欧美激情一区二区三区蜜桃视频| 亚洲一区二区三区自拍| 国产精品性做久久久久久| 欧美三区在线观看| 国产精品久久久久久久午夜片 | 日本韩国精品在线| 26uuu国产日韩综合| 天堂成人国产精品一区| 99re这里只有精品首页| 国产性天天综合网| 日本三级亚洲精品| 在线免费一区三区| 国产精品乱码一区二区三区软件 | 欧美aaaaaa午夜精品| 在线免费观看成人短视频| 久久综合九色综合97婷婷| 丝袜美腿亚洲色图| 色综合中文综合网| 欧美精品一区二区久久婷婷| 亚洲自拍欧美精品| 成av人片一区二区| 国产三级欧美三级| 国产又粗又猛又爽又黄91精品| 欧美精品一二三四| 亚洲观看高清完整版在线观看 | 美女性感视频久久| 欧美日韩国产一二三| 亚洲男人的天堂网| 97se亚洲国产综合自在线| 国产日韩欧美激情| 国产美女一区二区三区| 久久综合一区二区| 久久99精品国产91久久来源| 日韩欧美在线不卡| 久久成人免费网| 26uuu亚洲|