青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
Design&Art
C++博客
首頁(yè)
新隨筆
聯(lián)系
聚合
管理
26 Posts :: 0 Stories :: 38 Comments :: 0 Trackbacks
常用鏈接
我的隨筆
我的評(píng)論
我參與的隨筆
留言簿
(3)
給我留言
查看公開(kāi)留言
查看私人留言
隨筆分類(lèi)
BOOST(2)
C++(8)
SCM(1)
STL(4)
VC/MFC(2)
XML(1)
交互設(shè)計(jì)(1)
設(shè)計(jì)模式(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++庫(kù)
Boost
Loki
STLport
搜索
最新評(píng)論
1.?re: 正確使用stl map的erase方法
@啊啊
其實(shí)是c++98跟c++11標(biāo)準(zhǔn)里的區(qū)別
--blong
2.?re: VC6調(diào)試時(shí),如何查看vector中的內(nèi)容?
感謝LZ分享!
--江楓漁火
3.?re: 正確使用stl map的erase方法[未登錄](méi)
@啊啊
沒(méi)有仔細(xì)看map用法,不要瞎評(píng)論。
--123
4.?re: lines ending with only a carriage return have been detected.
評(píng)論內(nèi)容較長(zhǎng),點(diǎn)擊標(biāo)題查看
--Linda
5.?re: 正確使用stl map的erase方法
@過(guò)客
說(shuō)的很好嘛. 這種僅適用于windows的代碼本就不該提倡.
--aa
閱讀排行榜
1.?正確使用stl map的erase方法(26395)
2.?VC6下使用STLPort(8459)
3.?VC6調(diào)試時(shí),如何查看vector中的內(nèi)容?(5083)
4.?Visual C++ Toolkit 2003 下載(4355)
5.?lines ending with only a carriage return have been detected. (2405)
評(píng)論排行榜
1.?VC6下使用STLPort(21)
2.?正確使用stl map的erase方法(7)
3.?Visual C++ Toolkit 2003 下載(6)
4.?VC6調(diào)試時(shí),如何查看vector中的內(nèi)容?(1)
5.?雙分派(double dispatch)(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路徑中
在命令行窗口下:
運(yùn)行VCVARS32.BAT,然后
cd D:\STLport-5.1.2\build\lib
configure -c msvc6
nmake /fmsvc.mak install
編譯全部用的默認(rèn)選項(xiàng),因此編譯出來(lái)的是多線(xiàn)程靜態(tài)鏈接庫(kù)。庫(kù)文件被拷貝到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;如果想用動(dòng)態(tài)鏈接,則要先編譯動(dòng)態(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
安帛偉
閱讀(8459)
評(píng)論(21)
編輯
收藏
引用
所屬分類(lèi):
STL
Feedback
#
re: VC6下使用STLPort
2007-05-20 21:12
risefei
若問(wèn):設(shè)置一下VC6下的環(huán)境變量:C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT
怎么設(shè)置?
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2007-05-20 23:24
abware
@risefei
用記事本打開(kāi)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ù)
更多評(píng)論
#
re: VC6下使用STLPort[未登錄](méi)
2007-06-12 16:45
hh
好象沒(méi)有你下的餓哪個(gè)版本只有STLport-4.6.2.tar.gz這個(gè)里面沒(méi)有l(wèi)ib文件夾 也沒(méi)有*.lib文件! xp下的cmd不能認(rèn)識(shí)make nmake 命令啊!怎么辦?
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort[未登錄](méi)
2007-06-12 22:11
hh
我按照以上弄好了 不過(guò)編譯文件時(shí) 錯(cuò)誤更多了!例如:
error C2039: 'ostream' : is not a member of 'stlp_std'
error C2061: syntax error : identifier 'ostream' 等等! 是什么問(wèn)題 請(qǐng)指教!3Q
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort[未登錄](méi)
2007-06-13 10:20
hh
針對(duì)你上面寫(xiě)的那個(gè)程序也有問(wèn)題 LIKE是有9個(gè)錯(cuò)誤 !是我那里沒(méi)有設(shè)置正確 ?
其中的一個(gè)錯(cuò)誤: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ù)
更多評(píng)論
#
re: VC6下使用STLPort報(bào)這個(gè)錯(cuò)誤是怎么回事啊
2007-06-22 15:37
lee
LINK : fatal error LNK1104: cannot open file "stlport_static_stld50.lib"
Error executing link.exe.
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2007-06-26 20:40
abware
看看你編譯出來(lái)的庫(kù)文件在哪,該路徑是否加到了VC6的環(huán)境變量配置文件VCVARS32.BAT中
@lee
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2007-06-26 20:42
abware
@hh
你仔細(xì)按照步驟來(lái),特別注意第3步里use run-time library中選擇的版本要和你編譯出來(lái)的版本一致。
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-01-09 13:10
wsfyc
看了這篇文章,LINK問(wèn)題終于解決了.按照步驟可定 成功。我的是STLPORT5-1-4
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort[未登錄](méi)
2008-01-10 20:31
Eric
@hh
請(qǐng)問(wèn)您這個(gè)問(wèn)題是怎么解決的?,我也有這個(gè)問(wèn)題@@
謝謝:)
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-04-10 02:27
人渣
好東西啊,謝謝您了
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-05-12 00:31
zyz
@abware
這個(gè)怎么提示 不是內(nèi)部指令呢?
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-10-14 21:42
smallping
我用的是錄制動(dòng)畫(huà)程序Camstudio-2.0-src,按照上面的配置做好了,但編譯之后錯(cuò)誤更多,如下:
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
不知是什么原因,怎么也搞不明白,急急急!!!
那位好心的大哥知道請(qǐng)告訴我。
郵箱:smallping_hit@yahoo.com.cn
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-10-29 17:56
guobosheng
在執(zhí)行 nmake /fmsvc.mak install 命令時(shí)出錯(cuò):'nmake' 不是內(nèi)
或批處理文件。
這個(gè)問(wèn)題怎么解決的?急!謝謝幫忙!
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-10-29 18:00
guobosheng
@hh
你是否也有 'nmake' 不是內(nèi)部或外部命令,也不是可運(yùn)行的程序或批處理文件。這個(gè)問(wèn)題?你是怎么解決的?
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-10-30 10:07
guobosheng
@guobosheng
關(guān)于“'nmake' 不是內(nèi)部或外部命令,也不是可運(yùn)行的程序或批處理文件。”問(wèn)題的解決辦法:
在“我的電腦--屬性--高級(jí)--環(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表示安裝盤(pán)符,注意這里是兩個(gè)路徑,因?yàn)閏l.exe要用到MSDev98\Bin目錄下的MSPDB60.DLL。
如果已經(jīng)存在這些變量,則把以上值分別加在對(duì)應(yīng)的變量值的后面,注意在添加前用分號(hào)隔開(kāi)。
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-10-30 10:27
guobosheng
編譯STLPort后出現(xiàn)102個(gè)錯(cuò)誤!~~誰(shuí)能救救我?
錯(cuò)誤信息:
--------------------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ù)
更多評(píng)論
#
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ù)
更多評(píng)論
#
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ù)
更多評(píng)論
#
re: VC6下使用STLPort
2008-10-30 10:43
guobosheng
上面的問(wèn)題解決了:
在樓主的第三步中:
3. 在VC6中使用STLport:
Tools->Options...->Directories中
include設(shè)置中添加目錄:D:\STLport-5.1.2\stlport
library設(shè)置中添加目錄:D:\STLport-5.1.2\lib
添加了上面兩個(gè)目錄后,需要把它們向上移,放在第一位。這樣就沒(méi)有問(wèn)題了,至于為什么,我想可能是有的信息只有在上面兩個(gè)目錄下下才能找到吧,先找別的目錄可能會(huì)因?yàn)檎也坏蕉鲥e(cuò)。只是我的猜測(cè),也不知道具體原因,請(qǐng)高手指點(diǎn)。
回復(fù)
更多評(píng)論
#
re: VC6下使用STLPort[未登錄](méi)
2008-10-30 11:40
cc
樓主,在編譯STLPort的過(guò)程中會(huì)報(bào)錯(cuò)
無(wú)法定位程序輸入點(diǎn)RtlIpv4StringToAddressW于動(dòng)態(tài)庫(kù)ntdll.dll上
不過(guò)我用的STLPort 5.1.5
回復(fù)
更多評(píng)論
刷新評(píng)論列表
只有注冊(cè)用戶(hù)
登錄
后才能發(fā)表評(píng)論。
【推薦】100%開(kāi)源!大型工業(yè)跨平臺(tái)軟件C++源碼提供,建模,組態(tài)!
相關(guān)文章:
VC6調(diào)試時(shí),如何查看vector中的內(nèi)容?
正確使用stl map的erase方法
STL源碼剖析中第三章Iterator中單向鏈表的例子
VC6下使用STLPort
網(wǎng)站導(dǎo)航:
博客園
IT新聞
BlogJava
博問(wèn)
Chat2DB
管理
Powered by:
C++博客
Copyright © 安帛偉
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
久久免费精品视频
|
激情综合亚洲
|
久久色中文字幕
|
午夜一区不卡
|
久久激情视频久久
|
久久综合色影院
|
免费不卡中文字幕视频
|
欧美成人免费全部观看天天性色
|
久久中文在线
|
欧美日韩激情小视频
|
欧美性片在线观看
|
国产欧美精品一区
|
伊人男人综合视频网
|
亚洲精品网址在线观看
|
亚洲一区二区三区四区在线观看
|
在线欧美亚洲
|
99视频日韩
|
香蕉av777xxx色综合一区
|
欧美在线一二三
|
亚洲国产mv
|
亚洲全部视频
|
午夜精品视频网站
|
欧美国产视频日韩
|
国产女主播一区二区
|
午夜久久久久
|
久久午夜羞羞影院免费观看
|
欧美激情网站在线观看
|
国产精品羞羞答答
|
亚洲欧洲精品一区二区三区
|
午夜在线成人av
|
亚洲电影中文字幕
|
欧美一级日韩一级
|
欧美日韩天堂
|
在线播放日韩欧美
|
亚洲永久在线
|
亚洲高清视频在线观看
|
亚洲欧美中文字幕
|
欧美日韩福利
|
最近看过的日韩成人
|
欧美影片第一页
|
日韩视频在线一区二区
|
每日更新成人在线视频
|
国产精品视频网
|
一区二区三区欧美在线
|
欧美凹凸一区二区三区视频
|
亚洲影院一区
|
欧美性猛交xxxx乱大交退制版
|
亚洲高清av
|
另类亚洲自拍
|
久久精品国产亚洲高清剧情介绍
|
国产精品第一区
|
一本大道久久a久久精品综合
|
久久综合色综合88
|
久久岛国电影
|
国产一区二区三区精品久久久
|
一区二区三区国产在线观看
|
亚洲电影免费观看高清完整版在线观看
|
欧美一级艳片视频免费观看
|
国产精品免费观看视频
|
亚洲男人av电影
|
洋洋av久久久久久久一区
|
欧美日本高清视频
|
99天天综合性
|
亚洲美女黄色
|
欧美视频手机在线
|
亚洲伊人观看
|
亚洲一区中文
|
国产日韩精品入口
|
久久九九国产精品
|
久久成人这里只有精品
|
韩国三级电影一区二区
|
久久中文字幕一区
|
美日韩免费视频
|
亚洲观看高清完整版在线观看
|
久热精品视频在线免费观看
|
久久免费国产精品
|
亚洲精品在线三区
|
一本大道久久a久久综合婷婷
|
欧美视频二区36p
|
亚洲欧美一区二区三区在线
|
亚洲欧美国产精品专区久久
|
欧美午夜精品久久久久久浪潮
|
性欧美8khd高清极品
|
午夜在线a亚洲v天堂网2018
|
久久免费观看视频
|
亚洲欧洲在线视频
|
一区二区三区波多野结衣在线观看
|
欧美日本国产一区
|
欧美亚洲日本一区
|
久久在线免费视频
|
亚洲视频欧美视频
|
欧美在线日韩
|
亚洲精品视频在线
|
亚洲男同1069视频
|
亚洲激情电影在线
|
亚洲婷婷在线
|
亚洲二区免费
|
在线视频精品一
|
极品少妇一区二区
|
亚洲精品社区
|
一区二区三区中文在线观看
|
亚洲区国产区
|
国产一区在线播放
|
亚洲精品国久久99热
|
国产日韩av高清
|
亚洲区一区二区三区
|
国内揄拍国内精品久久
|
99精品热视频
|
亚洲精品1区2区
|
欧美一区免费
|
亚洲欧美文学
|
欧美日韩免费观看一区三区
|
久久婷婷亚洲
|
国产区精品在线观看
|
亚洲精品免费在线
|
影音先锋亚洲电影
|
午夜精品在线看
|
亚洲午夜一级
|
欧美精品一区在线
|
欧美激情精品久久久久久黑人
|
国产欧美视频在线观看
|
亚洲美女尤物影院
|
亚洲国产99精品国自产
|
久久国产精品黑丝
|
欧美亚洲免费
|
国产精品美女www爽爽爽
|
亚洲日本理论电影
|
亚洲欧洲一区二区三区久久
|
久久久999精品免费
|
久久精品国产91精品亚洲
|
欧美色区777第一页
|
亚洲日本无吗高清不卡
|
亚洲第一精品夜夜躁人人躁
|
欧美一级淫片aaaaaaa视频
|
欧美一区二区三区在线看
|
欧美特黄一区
|
夜夜夜久久久
|
亚洲综合色在线
|
国产精品久久久久aaaa九色
|
一区二区免费在线视频
|
亚洲一区二区三区乱码aⅴ
|
欧美日韩一区二区三区在线
|
亚洲欧洲美洲综合色网
|
日韩午夜剧场
|
欧美日韩一区综合
|
亚洲视频一区二区
|
欧美一区午夜视频在线观看
|
国产精品自拍在线
|
久久精品国产精品亚洲综合
|
免播放器亚洲一区
|
91久久久久久
|
欧美日韩免费
|
久久青草福利网站
|
一区二区在线视频观看
|
久久久久久久综合色一本
|
久久人体大胆视频
|
亚洲国产精品传媒在线观看
|
欧美在线播放高清精品
|
国产精品资源
|
久久久久久9
|
欧美高清视频一区
|
一本不卡影院
|
国产日韩精品一区二区
|
久久精品国产第一区二区三区
|
久久资源在线
|
av成人免费观看
|
国产日韩精品久久
|
欧美成人精品在线
|
亚洲男人第一网站
|
欧美韩日一区二区
|
中文久久乱码一区二区
|
国产亚洲欧美日韩日本
|
能在线观看的日韩av
|
在线亚洲+欧美+日本专区
|
久久久久久久尹人综合网亚洲
|
亚洲国产精品视频
|
国产精品美女视频网站
|
久久午夜精品一区二区
|
一本色道久久综合狠狠躁篇的优点
|
国产欧美视频一区二区三区
|
久久最新视频
|
亚洲一区二区三区色
|
欧美激情一区二区三区成人
|
亚洲专区一区
|
亚洲精品国产精品国自产观看浪潮
|
欧美午夜一区二区福利视频
|
久久久人成影片一区二区三区观看
|
亚洲精选久久
|
欧美成熟视频
|
久久国产乱子精品免费女
|
日韩一级片网址
|
永久免费毛片在线播放不卡
|
国产精品国产成人国产三级
|
美女视频网站黄色亚洲
|
午夜在线一区
|
亚洲在线一区二区
|
9久re热视频在线精品
|
亚洲韩日在线
|
欧美激情视频一区二区三区免费
|
久久av一区二区三区漫画
|