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

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

?? smsexampledlg.cpp

?? gsm 短信發送控件(內含文檔使用說明
?? 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一区二区三区免费野_久草精品视频
制服丝袜成人动漫| 91成人网在线| 久久久久国产一区二区三区四区| 久久成人免费电影| 国产精品久久久久久久蜜臀 | 中文字幕一区二区三| 欧美日韩免费视频| 国产在线精品视频| 亚洲一区二区三区视频在线播放| 欧美日韩高清影院| 国产91高潮流白浆在线麻豆| 亚洲综合精品自拍| 中文字幕在线一区免费| 91精品福利在线一区二区三区| 国产精品伊人色| 蜜桃久久精品一区二区| 亚洲国产精品久久一线不卡| 国产精品萝li| 久久久亚洲综合| 日韩欧美123| 欧美午夜片在线观看| hitomi一区二区三区精品| 精彩视频一区二区| 久久精品国产网站| 精品在线播放午夜| 久久狠狠亚洲综合| 久久国产夜色精品鲁鲁99| 天堂在线一区二区| 亚洲免费av网站| 亚洲欧洲在线观看av| 亚洲欧美日韩久久精品| 亚洲天堂精品视频| 亚洲图片一区二区| 天堂影院一区二区| 精品中文字幕一区二区| 激情成人午夜视频| 成人av网站在线观看免费| 丁香网亚洲国际| 欧美日韩中文字幕一区| 欧美一区三区二区| 欧美国产日韩亚洲一区| 亚洲欧美日韩国产综合| 天天影视网天天综合色在线播放| 亚洲国产cao| 国产乱码精品一区二区三区av| 成人免费视频一区二区| 欧美日韩国产免费一区二区 | 久久精品夜色噜噜亚洲a∨| 亚洲婷婷综合久久一本伊一区| 亚洲国产综合91精品麻豆| 久久99精品久久久| 欧美专区日韩专区| 国产精品日产欧美久久久久| 日本中文在线一区| 色婷婷久久一区二区三区麻豆| 91精品国产91久久久久久最新毛片| 国产精品―色哟哟| 国产一区日韩二区欧美三区| 一本到一区二区三区| 中文字幕va一区二区三区| 国内精品久久久久影院薰衣草| 在线观看一区二区视频| 欧美国产欧美综合| 国产一区二区调教| 久久一区二区三区四区| 精品一区二区三区视频| 日韩精品专区在线影院重磅| 亚洲午夜免费福利视频| 色综合久久中文综合久久97| 国产精品天干天干在线综合| 国产成人精品三级麻豆| 国产香蕉久久精品综合网| 国产精品自产自拍| 中文在线一区二区| 欧美最新大片在线看| 亚洲成在线观看| 精品女同一区二区| 不卡在线视频中文字幕| 自拍偷拍欧美精品| 欧美日韩免费观看一区三区| 韩国三级在线一区| 亚洲精品国产一区二区精华液| 99国产精品视频免费观看| 亚洲精品中文字幕在线观看| 日本韩国视频一区二区| 美女性感视频久久| 国产精品国产三级国产三级人妇| 在线观看亚洲专区| 国产精品一二三区| 亚洲午夜羞羞片| 中文字幕亚洲视频| 日韩欧美三级在线| 欧美综合一区二区| 成人免费三级在线| 精品一区二区三区免费毛片爱| 亚洲视频一区二区免费在线观看| 欧美一区二区三区视频| 91日韩精品一区| 成人av在线影院| 日日噜噜夜夜狠狠视频欧美人| 亚洲欧美区自拍先锋| 精品福利一区二区三区| 欧美伦理影视网| 欧美日韩高清一区| 日本乱人伦一区| av在线一区二区| 91在线观看美女| 91麻豆国产自产在线观看| 99久久精品免费看| 波多野结衣亚洲一区| 99综合电影在线视频| 成人午夜电影久久影院| 不卡一区二区在线| 色呦呦国产精品| 欧美三级蜜桃2在线观看| 91高清视频在线| 在线日韩国产精品| 欧美日韩久久久久久| 91精品国产综合久久久久久| 日韩欧美一区二区久久婷婷| 欧美一级二级在线观看| 欧美一级视频精品观看| 精品久久五月天| 日韩美女视频一区| 首页国产欧美久久| 国产成a人无v码亚洲福利| 99精品视频在线观看| 欧美一区二区三区在线观看| 欧美极品aⅴ影院| 一区二区高清视频在线观看| 卡一卡二国产精品| 91久久人澡人人添人人爽欧美| 在线播放一区二区三区| 亚洲国产精品传媒在线观看| 亚洲另类在线制服丝袜| 国产成人精品一区二区三区网站观看| a4yy欧美一区二区三区| 精品国产青草久久久久福利| 综合激情成人伊人| 国产精品一级片在线观看| 欧美日产国产精品| 亚洲日本在线a| 成人一区二区三区在线观看| 9191久久久久久久久久久| 亚洲精品视频自拍| 色综合激情五月| 一区二区三区日本| 色中色一区二区| 亚洲国产精品一区二区www在线| 99视频一区二区| 夜夜嗨av一区二区三区四季av| 国产成人综合网站| 亚洲欧洲99久久| 91福利区一区二区三区| 一卡二卡三卡日韩欧美| 日本精品免费观看高清观看| 亚洲一区在线免费观看| 在线观看91av| 久久激五月天综合精品| 成人精品免费看| 国产色爱av资源综合区| 老司机精品视频在线| 日韩欧美色电影| 国产成人在线视频播放| 欧美va日韩va| 国产 欧美在线| 亚洲特黄一级片| 一本到不卡精品视频在线观看| 国产精品美女久久久久久久| 国产成人自拍网| 亚洲午夜精品久久久久久久久| 欧美三级电影网站| 免费成人在线观看| 国产精品乱人伦中文| 99久久精品久久久久久清纯| 亚洲精品国产精华液| 欧美色综合影院| 国产老妇另类xxxxx| 亚洲免费大片在线观看| 日韩欧美在线观看一区二区三区| 国产一区二区三区免费在线观看| 欧美国产禁国产网站cc| 91行情网站电视在线观看高清版| 奇米四色…亚洲| 亚洲日穴在线视频| 欧美日韩国产综合一区二区三区 | 亚洲男人天堂av| 欧美大片日本大片免费观看| 91欧美一区二区| 国产黄色成人av| 日本视频免费一区| 国产精品色哟哟| 久久久久成人黄色影片| 91精品在线麻豆| 欧美日韩国产在线观看| 国产成人小视频| 午夜精品一区二区三区免费视频| 精品久久久久久久久久久久久久久 | 久久久亚洲欧洲日产国码αv| 日韩一级完整毛片|