青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
Design&Art
C++博客
首頁
新隨筆
聯(lián)系
聚合
管理
26 Posts :: 0 Stories :: 38 Comments :: 0 Trackbacks
常用鏈接
我的隨筆
我的評論
我參與的隨筆
留言簿
(3)
給我留言
查看公開留言
查看私人留言
隨筆分類
BOOST(2)
C++(8)
SCM(1)
STL(4)
VC/MFC(2)
XML(1)
交互設(shè)計(1)
設(shè)計模式(3)
隨筆檔案
2009年4月 (1)
2009年3月 (1)
2009年1月 (1)
2008年5月 (1)
2007年12月 (1)
2007年11月 (3)
2007年10月 (2)
2007年9月 (4)
2007年8月 (2)
2007年6月 (1)
2007年5月 (2)
2007年4月 (6)
2007年3月 (1)
C++庫
Boost
Loki
STLport
搜索
最新評論
1.?re: 正確使用stl map的erase方法
@啊啊
其實是c++98跟c++11標(biāo)準(zhǔn)里的區(qū)別
--blong
2.?re: VC6調(diào)試時,如何查看vector中的內(nèi)容?
感謝LZ分享!
--江楓漁火
3.?re: 正確使用stl map的erase方法[未登錄]
@啊啊
沒有仔細(xì)看map用法,不要瞎評論。
--123
4.?re: lines ending with only a carriage return have been detected.
評論內(nèi)容較長,點擊標(biāo)題查看
--Linda
5.?re: 正確使用stl map的erase方法
@過客
說的很好嘛. 這種僅適用于windows的代碼本就不該提倡.
--aa
閱讀排行榜
1.?正確使用stl map的erase方法(26418)
2.?VC6下使用STLPort(8493)
3.?VC6調(diào)試時,如何查看vector中的內(nèi)容?(5109)
4.?Visual C++ Toolkit 2003 下載(4372)
5.?lines ending with only a carriage return have been detected. (2417)
評論排行榜
1.?VC6下使用STLPort(21)
2.?正確使用stl map的erase方法(7)
3.?Visual C++ Toolkit 2003 下載(6)
4.?VC6調(diào)試時,如何查看vector中的內(nèi)容?(1)
5.?OO設(shè)計原則(1)
VC6下使用STLPort
為了使用hash_map,今天下載了STLport,在VC6下編譯成功。
1. STLport下載:
http://www.stlport.org/
我下載的是最新版
02.25.07: STLport 5.1.2 released
2. STLport編譯:
我的STLport目錄是:D:\STLport-5.1.2
先設(shè)置一下VC6下的環(huán)境變量:C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT
把D:\STLport-5.1.2\stlport;加入Include路徑中;把D:\STLport-5.1.2\lib;加入Lib路徑中
在命令行窗口下:
運行VCVARS32.BAT,然后
cd D:\STLport-5.1.2\build\lib
configure -c msvc6
nmake /fmsvc.mak install
編譯全部用的默認(rèn)選項,因此編譯出來的是多線程靜態(tài)鏈接庫。庫文件被拷貝到D:\STLport-5.1.2\lib
3. 在VC6中使用STLport:
Tools->Options...->Directories中
include設(shè)置中添加目錄:D:\STLport-5.1.2\stlport
library設(shè)置中添加目錄:D:\STLport-5.1.2\lib
Project->Settings...->C/C++中
Category選擇Code Generation,然后在use run-time library中選擇Debug Multithreaded。(如果是release版本,選擇Multithreaded;如果想用動態(tài)鏈接,則要先編譯動態(tài)鏈接版本的STLport,再在這兒選擇相應(yīng)的DLL)
4. hash_map的例子:
#include
<
iostream
>
#include
<
hash_map
>
#include
<
string
>
using
namespace
std;
int
main()
{
hash_map
<
int
,
string
>
mymap;
mymap[
2008
]
=
"
VC6
"
;
mymap[
999999
]
=
"
STLport
"
;
mymap[
123456
]
=
"
hello hash_map!
"
;
hash_map
<
int
,
string
>
::iterator iter
=
mymap.find(
123456
);
if
(iter
!=
mymap.end())
{
cout
<<
iter
->
second
<<
endl;
}
return
0
;
}
posted on 2007-04-16 14:22
安帛偉
閱讀(8493)
評論(21)
編輯
收藏
引用
所屬分類:
STL
Feedback
#
re: VC6下使用STLPort
2007-05-20 21:12
risefei
若問:設(shè)置一下VC6下的環(huán)境變量:C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT
怎么設(shè)置?
回復(fù)
更多評論
#
re: VC6下使用STLPort
2007-05-20 23:24
abware
@risefei
用記事本打開VCVARS32.BAT
查找set INCLUDE=和set LIB=
把D:\STLport-5.1.2\stlport;加入Include路徑中;把D:\STLport-5.1.2\lib;加入Lib路徑中
示例如下:
set INCLUDE=D:\STLport-5.1.3\stlport;%MSVCDir%\ATL\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\MFC\INCLUDE;%INCLUDE%
set LIB=D:\STLport-5.1.3\lib;%MSVCDir%\LIB;%MSVCDir%\MFC\LIB;%LIB%
回復(fù)
更多評論
#
re: VC6下使用STLPort[未登錄]
2007-06-12 16:45
hh
好象沒有你下的餓哪個版本只有STLport-4.6.2.tar.gz這個里面沒有l(wèi)ib文件夾 也沒有*.lib文件! xp下的cmd不能認(rèn)識make nmake 命令啊!怎么辦?
回復(fù)
更多評論
#
re: VC6下使用STLPort[未登錄]
2007-06-12 22:11
hh
我按照以上弄好了 不過編譯文件時 錯誤更多了!例如:
error C2039: 'ostream' : is not a member of 'stlp_std'
error C2061: syntax error : identifier 'ostream' 等等! 是什么問題 請指教!3Q
回復(fù)
更多評論
#
re: VC6下使用STLPort[未登錄]
2007-06-13 10:20
hh
針對你上面寫的那個程序也有問題 LIKE是有9個錯誤 !是我那里沒有設(shè)置正確 ?
其中的一個錯誤:unresolved external symbol "class stlpmtx_std::basic_ostream<char,class stlpmtx_std::char_traits<char> > stlpmtx_std::cout" (?cout@stlpmtx_std@@3V?$basic_ostream@DV?$char_traits@D@stlpmtx_std@@@1@A)
回復(fù)
更多評論
#
re: VC6下使用STLPort報這個錯誤是怎么回事啊
2007-06-22 15:37
lee
LINK : fatal error LNK1104: cannot open file "stlport_static_stld50.lib"
Error executing link.exe.
回復(fù)
更多評論
#
re: VC6下使用STLPort
2007-06-26 20:40
abware
看看你編譯出來的庫文件在哪,該路徑是否加到了VC6的環(huán)境變量配置文件VCVARS32.BAT中
@lee
回復(fù)
更多評論
#
re: VC6下使用STLPort
2007-06-26 20:42
abware
@hh
你仔細(xì)按照步驟來,特別注意第3步里use run-time library中選擇的版本要和你編譯出來的版本一致。
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-01-09 13:10
wsfyc
看了這篇文章,LINK問題終于解決了.按照步驟可定 成功。我的是STLPORT5-1-4
回復(fù)
更多評論
#
re: VC6下使用STLPort[未登錄]
2008-01-10 20:31
Eric
@hh
請問您這個問題是怎么解決的?,我也有這個問題@@
謝謝:)
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-04-10 02:27
人渣
好東西啊,謝謝您了
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-05-12 00:31
zyz
@abware
這個怎么提示 不是內(nèi)部指令呢?
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-14 21:42
smallping
我用的是錄制動畫程序Camstudio-2.0-src,按照上面的配置做好了,但編譯之后錯誤更多,如下:
ompiling...
FFont.cpp
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(22) : error C2039: 'ostream' : is not a member of 'stlp_std'
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(22) : error C2061: syntax error : identifier 'ostream'
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(22) : error C2039: 'istream' : is not a member of 'stlp_std'
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(22) : error C2061: syntax error : identifier 'istream'
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(28) : error C2039: 'istream' : is not a member of 'stlp_std'
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(28) : error C2143: syntax error : missing ';' before '&'
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(28) : error C2433: 'istream' : 'friend' not permitted on data declarations
D:\Camstudio-2[1].0-src\vscap20s\Producer\swfsource\FFont.h(28) : error C2501: 'istream' : missing storage-class or type specifiers
不知是什么原因,怎么也搞不明白,急急急!!!
那位好心的大哥知道請告訴我。
郵箱:smallping_hit@yahoo.com.cn
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-29 17:56
guobosheng
在執(zhí)行 nmake /fmsvc.mak install 命令時出錯:'nmake' 不是內(nèi)
或批處理文件。
這個問題怎么解決的?急!謝謝幫忙!
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-29 18:00
guobosheng
@hh
你是否也有 'nmake' 不是內(nèi)部或外部命令,也不是可運行的程序或批處理文件。這個問題?你是怎么解決的?
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-30 10:07
guobosheng
@guobosheng
關(guān)于“'nmake' 不是內(nèi)部或外部命令,也不是可運行的程序或批處理文件。”問題的解決辦法:
在“我的電腦--屬性--高級--環(huán)境變量”中, 添加如下變量:
INCLUDE
D:\Program Files\Microsoft Visual Studio\VC98\Include
LIB
D:\Program Files\Microsoft Visual Studio\VC98\Lib
X:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;X:\Program Files\Microsoft Visual Studio\VC98\Bin
X表示安裝盤符,注意這里是兩個路徑,因為cl.exe要用到MSDev98\Bin目錄下的MSPDB60.DLL。
如果已經(jīng)存在這些變量,則把以上值分別加在對應(yīng)的變量值的后面,注意在添加前用分號隔開。
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-30 10:27
guobosheng
編譯STLPort后出現(xiàn)102個錯誤!~~誰能救救我?
錯誤信息:
--------------------Configuration: stl - Win32 Debug--------------------
Compiling...
stl.cpp
c:\program files\microsoft visual studio\vc98\include\string(17) : error C2143: syntax error : missing ';' before '<'
c:\program files\microsoft visual studio\vc98\include\string(17) : error C2433: 'basic_string' : 'inline' not permitted on data declarations
c:\program files\microsoft visual studio\vc98\include\string(17) : error C2501: 'basic_string' : missing storage-class or type specifiers
c:\program files\microsoft visual studio\vc98\include\string(17) : error C2059: syntax error : ';'
c:\program files\microsoft visual studio\vc98\include\string(17) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(24) : error C2143: syntax error : missing ';' before '{'
c:\program files\microsoft visual studio\vc98\include\string(24) : error C2447: missing function header (old-style formal list?)
c:\program files\microsoft visual studio\vc98\include\string(25) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(26) : error C2143: syntax error : missing ';' before '<'
c:\program files\microsoft visual studio\vc98\include\string(26) : error C2433: 'basic_string' : 'inline' not permitted on data declarations
c:\program files\microsoft visual studio\vc98\include\string(26) : error C2501: 'basic_string' : missing storage-class or type specifiers
c:\program files\microsoft visual studio\vc98\include\string(26) : error C2086: 'basic_string' : redefinition
c:\program files\microsoft visual studio\vc98\include\string(26) : error C2059: syntax error : ';'
c:\program files\microsoft visual studio\vc98\include\string(26) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(33) : error C2143: syntax error : missing ';' before '{'
c:\program files\microsoft visual studio\vc98\include\string(33) : error C2447: missing function header (old-style formal list?)
c:\program files\microsoft visual studio\vc98\include\string(34) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(35) : error C2143: syntax error : missing ';' before '<'
c:\program files\microsoft visual studio\vc98\include\string(35) : error C2433: 'basic_string' : 'inline' not permitted on data declarations
c:\program files\microsoft visual studio\vc98\include\string(35) : error C2501: 'basic_string' : missing storage-class or type specifiers
c:\program files\microsoft visual studio\vc98\include\string(35) : error C2086: 'basic_string' : redefinition
c:\program files\microsoft visual studio\vc98\include\string(35) : error C2059: syntax error : ';'
c:\program files\microsoft visual studio\vc98\include\string(35) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(41) : error C2143: syntax error : missing ';' before '{'
c:\program files\microsoft visual studio\vc98\include\string(41) : error C2447: missing function header (old-style formal list?)
c:\program files\microsoft visual studio\vc98\include\string(42) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(44) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(44) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(45) : error C2803: 'operator ==' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(46) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(47) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(47) : error C2059: syntax error : '<'
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-30 10:28
guobosheng
續(xù):
c:\program files\microsoft visual studio\vc98\include\string(49) : error C2803: 'operator ==' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(49) : error C2805: binary 'operator ==' has too few parameters
c:\program files\microsoft visual studio\vc98\include\string(50) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(51) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(51) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(53) : error C2803: 'operator !=' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(53) : error C2805: binary 'operator !=' has too few parameters
c:\program files\microsoft visual studio\vc98\include\string(54) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(56) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(56) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(57) : error C2803: 'operator !=' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(58) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(59) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(59) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(62) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(63) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(63) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(65) : error C2803: 'operator <' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(65) : error C2805: binary 'operator <' has too few parameters
c:\program files\microsoft visual studio\vc98\include\string(66) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(68) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(68) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(69) : error C2803: 'operator <' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(70) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(71) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(71) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(74) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(75) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(75) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(77) : error C2803: 'operator >' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(77) : error C2805: binary 'operator >' has too few parameters
c:\program files\microsoft visual studio\vc98\include\string(78) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(80) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(80) : error C2059: syntax error : '<'
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-30 10:28
guobosheng
續(xù):
c:\program files\microsoft visual studio\vc98\include\string(81) : error C2803: 'operator >' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(82) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(83) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(83) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(86) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(87) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(87) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(89) : error C2803: 'operator <=' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(89) : error C2805: binary 'operator <=' has too few parameters
c:\program files\microsoft visual studio\vc98\include\string(90) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(92) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(92) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(93) : error C2803: 'operator <=' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(94) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(95) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(95) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(98) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(99) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(99) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(101) : error C2803: 'operator >=' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(101) : error C2805: binary 'operator >=' has too few parameters
c:\program files\microsoft visual studio\vc98\include\string(102) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(104) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(104) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(105) : error C2803: 'operator >=' must have at least one formal parameter of class type
c:\program files\microsoft visual studio\vc98\include\string(106) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(107) : error C2143: syntax error : missing ',' before '<'
c:\program files\microsoft visual studio\vc98\include\string(107) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(111) : error C2954: template definitions cannot nest
c:\program files\microsoft visual studio\vc98\include\string(112) : error C2143: syntax error : missing ';' before '<'
c:\program files\microsoft visual studio\vc98\include\string(112) : error C2433: 'basic_istream' : 'inline' not permitted on data declarations
c:\program files\microsoft visual studio\vc98\include\string(112) : error C2501: 'basic_istream' : missing storage-class or type specifiers
c:\program files\microsoft visual studio\vc98\include\string(112) : error C2059: syntax error : ';'
c:\program files\microsoft visual studio\vc98\include\string(112) : error C2059: syntax error : '<'
c:\program files\microsoft visual studio\vc98\include\string(147) : error C2143: syntax error : missing ';' before '{'
c:\program files\microsoft visual studio\vc98\include\string(147) : fatal error C1003: error count exceeds 100; stopping compilation
Error executing cl.exe.
stl.obj - 102 error(s), 0 warning(s)
回復(fù)
更多評論
#
re: VC6下使用STLPort
2008-10-30 10:43
guobosheng
上面的問題解決了:
在樓主的第三步中:
3. 在VC6中使用STLport:
Tools->Options...->Directories中
include設(shè)置中添加目錄:D:\STLport-5.1.2\stlport
library設(shè)置中添加目錄:D:\STLport-5.1.2\lib
添加了上面兩個目錄后,需要把它們向上移,放在第一位。這樣就沒有問題了,至于為什么,我想可能是有的信息只有在上面兩個目錄下下才能找到吧,先找別的目錄可能會因為找不到而出錯。只是我的猜測,也不知道具體原因,請高手指點。
回復(fù)
更多評論
#
re: VC6下使用STLPort[未登錄]
2008-10-30 11:40
cc
樓主,在編譯STLPort的過程中會報錯
無法定位程序輸入點RtlIpv4StringToAddressW于動態(tài)庫ntdll.dll上
不過我用的STLPort 5.1.5
回復(fù)
更多評論
刷新評論列表
只有注冊用戶
登錄
后才能發(fā)表評論。
相關(guān)文章:
VC6調(diào)試時,如何查看vector中的內(nèi)容?
正確使用stl map的erase方法
STL源碼剖析中第三章Iterator中單向鏈表的例子
VC6下使用STLPort
網(wǎng)站導(dǎo)航:
博客園
IT新聞
BlogJava
博問
Chat2DB
管理
Powered by:
C++博客
Copyright © 安帛偉
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
欧美国产第一页
|
日韩一级片网址
|
一个色综合av
|
亚洲激情在线
|
久久久av网站
|
久久国产视频网
|
国产精品狼人久久影院观看方式
|
欧美激情第五页
|
在线播放豆国产99亚洲
|
亚洲欧美视频
|
午夜精品免费
|
国产精品日韩欧美一区
|
亚洲美女视频在线免费观看
|
91久久午夜
|
欧美va亚洲va香蕉在线
|
蜜桃av一区二区三区
|
国产精品一区二区三区四区五区
|
亚洲精选久久
|
一区二区三区不卡视频在线观看
|
欧美国产亚洲视频
|
91久久精品久久国产性色也91
|
在线成人中文字幕
|
久久综合成人精品亚洲另类欧美
|
久久综合九色综合网站
|
激情欧美一区
|
久久人人爽国产
|
欧美成人情趣视频
|
91久久国产自产拍夜夜嗨
|
久热精品视频在线观看一区
|
乱码第一页成人
|
影音先锋久久
|
欧美激情中文不卡
|
日韩视频免费在线观看
|
亚洲欧美日韩另类精品一区二区三区
|
国产精品久久999
|
午夜精品久久久久久99热软件
|
欧美在线播放一区二区
|
国产有码在线一区二区视频
|
香蕉乱码成人久久天堂爱免费
|
久久久久91
|
亚洲国产99
|
欧美日韩八区
|
亚洲欧美春色
|
免费看亚洲片
|
这里只有精品丝袜
|
国产免费亚洲高清
|
老牛国产精品一区的观看方式
|
亚洲高清视频中文字幕
|
国产精品99久久99久久久二8
|
欧美色网一区二区
|
欧美影院午夜播放
|
亚洲精品久久久久久久久久久久
|
亚洲综合精品四区
|
激情视频一区二区
|
欧美日韩1区
|
久久福利毛片
|
亚洲日本va午夜在线电影
|
亚洲一区一卡
|
亚洲国产精品电影在线观看
|
欧美日韩亚洲综合
|
久久露脸国产精品
|
日韩视频一区二区三区
|
久久人人97超碰国产公开结果
|
久久综合网络一区二区
|
亚洲人成免费
|
久久久久久高潮国产精品视
|
91久久久在线
|
国产亚洲欧洲997久久综合
|
欧美aa在线视频
|
欧美一区二区三区在
|
亚洲欧洲精品一区二区三区不卡
|
性亚洲最疯狂xxxx高清
|
亚洲三级免费观看
|
国产色产综合色产在线视频
|
欧美国产精品久久
|
午夜亚洲影视
|
日韩午夜免费视频
|
欧美成人免费在线视频
|
欧美一区二视频
|
亚洲精品小视频在线观看
|
国模套图日韩精品一区二区
|
欧美日韩国产综合久久
|
久久久91精品国产
|
亚洲综合视频网
|
亚洲乱码国产乱码精品精
|
久久中文久久字幕
|
欧美在线视频免费播放
|
一区二区三区四区五区视频
|
国产中文一区二区
|
国产精品草草
|
欧美日韩精品国产
|
欧美大片va欧美在线播放
|
久久精品视频导航
|
亚洲欧美在线磁力
|
亚洲一区二区高清
|
一区二区黄色
|
亚洲裸体视频
|
亚洲另类自拍
|
91久久久亚洲精品
|
亚洲第一精品夜夜躁人人爽
|
久久躁日日躁aaaaxxxx
|
久久精品人人做人人综合
|
欧美在线视频观看
|
久久动漫亚洲
|
久久久久久网
|
久久一区二区三区av
|
久久五月激情
|
老司机精品视频网站
|
久久久久久日产精品
|
久久久久成人精品
|
狂野欧美激情性xxxx
|
久久综合伊人77777
|
欧美sm极限捆绑bd
|
欧美高清在线一区二区
|
亚洲高清三级视频
|
日韩亚洲精品视频
|
99精品视频一区二区三区
|
亚洲精品一区二区三区四区高清
|
亚洲靠逼com
|
一本色道久久综合狠狠躁的推荐
|
中文在线不卡
|
欧美一级夜夜爽
|
久久亚洲不卡
|
欧美精品二区三区四区免费看视频
|
欧美精品乱人伦久久久久久
|
欧美三级网址
|
国产麻豆综合
|
亚洲国产mv
|
亚洲性色视频
|
久久久久99精品国产片
|
美女福利精品视频
|
亚洲精品日韩欧美
|
午夜伦欧美伦电影理论片
|
久久久久久久久久久久久9999
|
欧美1区3d
|
国产美女一区二区
|
亚洲国产另类久久精品
|
中国女人久久久
|
久久精品亚洲乱码伦伦中文
|
亚洲大片免费看
|
在线视频一区二区
|
久久人人九九
|
国产精品日韩欧美一区二区三区
|
国产在线精品一区二区夜色
|
亚洲人成人99网站
|
欧美在线观看网址综合
|
欧美国产日韩视频
|
亚洲一二三区在线观看
|
久久亚洲国产精品一区二区
|
欧美乱人伦中文字幕在线
|
国产麻豆日韩欧美久久
|
亚洲欧洲精品一区二区精品久久久
|
久久久久一区二区
|
亚洲日本va午夜在线影院
|
欧美一区永久视频免费观看
|
欧美屁股在线
|
激情视频一区二区
|
午夜激情久久久
|
亚洲人成网站影音先锋播放
|
欧美亚洲在线观看
|
国产精品v日韩精品
|
亚洲激情在线观看视频免费
|
欧美一级二级三级蜜桃
|
亚洲精品永久免费
|
久久久久国产精品一区三寸
|
国产精品五月天
|
一区二区三区 在线观看视频
|
免费成人高清
|
久久精品成人一区二区三区
|
国产精品v欧美精品v日韩精品
|
亚洲激情视频在线观看
|
久久综合给合久久狠狠色
|
亚洲一区三区电影在线观看
|
欧美伦理91
|
91久久精品国产91性色
|
久久综合网色—综合色88
|
亚洲男同1069视频
|
国产精品久久久久久久久久久久久
|
亚洲视频网在线直播
|
欧美激情视频给我
|
亚洲欧洲日产国产综合网
|
免费在线亚洲欧美
|
久久永久免费
|
在线视频观看日韩
|
麻豆成人91精品二区三区
|
欧美伊人精品成人久久综合97
|
国产精品爽爽ⅴa在线观看
|
日韩午夜激情电影
|
亚洲日韩欧美视频一区
|
欧美大片在线看
|
亚洲国产高清在线
|
欧美国产激情
|
欧美精品18+
|
一区二区三区欧美成人
|
亚洲人成人一区二区三区
|
欧美激情综合网
|
宅男精品视频
|
亚洲欧美国产77777
|
国产日韩在线不卡
|
久久亚洲私人国产精品va
|